mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-19 19:13:03 +00:00
Fix an RTP queue bug that can cause extended packet delays when the last packet ages out of the queue
This commit is contained in:
parent
8bd6582d07
commit
d3a7bba666
@ -171,6 +171,13 @@ public class RtpReorderQueue {
|
||||
// Validate that the queue remains within our contraints
|
||||
RtpQueueEntry lowestEntry = validateQueueConstraints();
|
||||
|
||||
// If the queue is now empty after validating queue constraints,
|
||||
// this packet can be returned immediately
|
||||
if (lowestEntry == null && queue.isEmpty()) {
|
||||
nextRtpSequenceNumber = (short) (packet.getRtpSequenceNumber() + 1);
|
||||
return RtpQueueStatus.HANDLE_IMMEDIATELY;
|
||||
}
|
||||
|
||||
// Queue has data inside, so we need to see where this packet fits
|
||||
if (packet.getRtpSequenceNumber() == nextRtpSequenceNumber) {
|
||||
// It fits in a hole where we need a packet, now we have some ready
|
||||
|
Loading…
x
Reference in New Issue
Block a user