disable the expected TS code for RTP frames;

pull/114/head
Bryan Biedenkapp 4 weeks ago
parent 6aade5a416
commit 2654a19544

@ -2249,6 +2249,7 @@ void* HostBridge::threadUDPAudioProcess(void* arg)
lastFrameTime = rtpTimestamp;
}
else {
/*
// RTP timestamps increment by samples per frame
uint32_t expectedTimestamp = (uint32_t)lastFrameTime + (RTP_GENERIC_CLOCK_RATE / 50);
if (rtpTimestamp < expectedTimestamp) {
@ -2263,9 +2264,12 @@ void* HostBridge::threadUDPAudioProcess(void* arg)
req = nullptr;
shouldProcess = false;
} else {
*/
// frame is ready to process - update RTP timestamp marker
lastFrameTime = rtpTimestamp;
/*
}
*/
}
}
} else if (bridge->m_udpFrameTiming) {

Loading…
Cancel
Save

Powered by TurnKey Linux.