Update control protocol for GFE 2.0.1

This commit is contained in:
Cameron Gutman
2014-05-06 23:31:09 -04:00
parent aadbc3dd01
commit 92adbe0983
5 changed files with 39 additions and 115 deletions

View File

@@ -6,4 +6,6 @@ public interface ConnectionStatusListener {
public void connectionDetectedFrameLoss(int firstLostFrame, int lastLostFrame);
public void connectionSinkTooSlow(int firstLostFrame, int lastLostFrame);
public void connectionReceivedFrame(int frameIndex);
}

View File

@@ -83,6 +83,8 @@ public class VideoDepacketizer {
// Add this frame
decodedUnits.add(du);
}
controlListener.connectionReceivedFrame(frameNumber);
// Clear old state
clearAvcFrameState();