Fix WebRTC ingest

This commit is contained in:
Marco van Dijk 2023-07-17 13:01:41 +02:00
parent fca96eaeb1
commit e8388b2a89

View file

@ -1155,7 +1155,7 @@ namespace Mist{
void OutWebRTC::handleWebRTCInputOutputFromThread(){ void OutWebRTC::handleWebRTCInputOutputFromThread(){
udp.allocateDestination(); udp.allocateDestination();
while (keepGoing()){ while (keepGoing()){
if (!handleWebRTCInputOutput()){Util::sleep(10);} if (!handleWebRTCInputOutput()){udp.sendPaced(10);}
} }
} }