From 7d150e7e89fcc849e14f41f72830ffaa25636836 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 15 Jun 2015 09:51:59 -0700 Subject: [PATCH] Fix a bug in RTP queue found when porting to moonlight-common-c --- .../src/com/limelight/nvstream/av/RtpReorderQueue.java | 1 + 1 file changed, 1 insertion(+) diff --git a/moonlight-common/src/com/limelight/nvstream/av/RtpReorderQueue.java b/moonlight-common/src/com/limelight/nvstream/av/RtpReorderQueue.java index d180eadb..e98494bc 100644 --- a/moonlight-common/src/com/limelight/nvstream/av/RtpReorderQueue.java +++ b/moonlight-common/src/com/limelight/nvstream/av/RtpReorderQueue.java @@ -64,6 +64,7 @@ public class RtpReorderQueue { if (oldestQueuedTime == Long.MAX_VALUE) { oldestQueuedTime = entry.queueTime; + oldestQueuedEntry = entry; } if (head) {