mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2026-04-24 01:06:39 +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;
|
entry.sequenceNumber = seq;
|
||||||
|
|
||||||
if (oldestQueuedTime == Long.MAX_VALUE) {
|
if (oldestQueuedTime == Long.MAX_VALUE) {
|
||||||
oldestQueuedTime = System.currentTimeMillis();
|
oldestQueuedTime = entry.queueTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (head) {
|
if (head) {
|
||||||
|
|||||||
Reference in New Issue
Block a user