mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2026-04-04 15:06:08 +00:00
Use the entry's queue time rather than calling currentTimeMillis() again
This commit is contained in:
@@ -63,7 +63,7 @@ public class RtpReorderQueue {
|
||||
entry.sequenceNumber = seq;
|
||||
|
||||
if (oldestQueuedTime == Long.MAX_VALUE) {
|
||||
oldestQueuedTime = System.currentTimeMillis();
|
||||
oldestQueuedTime = entry.queueTime;
|
||||
}
|
||||
|
||||
if (head) {
|
||||
|
||||
Reference in New Issue
Block a user