mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-18 18:42:46 +00:00
Fix OOS bug with packet 32768
This commit is contained in:
parent
e067669044
commit
1454ade3d2
@ -197,7 +197,7 @@ public class AvDepacketizer {
|
||||
// Toss out the current NAL if we receive a packet that is
|
||||
// out of sequence
|
||||
if (lastSequenceNumber != 0 &&
|
||||
lastSequenceNumber + 1 != seq)
|
||||
(short)(lastSequenceNumber + 1) != seq)
|
||||
{
|
||||
System.out.println("Received OOS data (expected "+(lastSequenceNumber + 1)+", got "+seq+")");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user