Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Unified Diff: webrtc/modules/video_coding/rtp_frame_reference_finder.h

Issue 2480293002: New jitter buffer experiment. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/video_coding/rtp_frame_reference_finder.h
diff --git a/webrtc/modules/video_coding/rtp_frame_reference_finder.h b/webrtc/modules/video_coding/rtp_frame_reference_finder.h
index e9e7d60a33155764719d992ff44511f8ab2e47c8..b66924be25d49344f8b07b4cbb23e28b9eeb314b 100644
--- a/webrtc/modules/video_coding/rtp_frame_reference_finder.h
+++ b/webrtc/modules/video_coding/rtp_frame_reference_finder.h
@@ -57,12 +57,12 @@ class RtpFrameReferenceFinder {
void ClearTo(uint16_t seq_num);
private:
- static const uint16_t kPicIdLength = 1 << 7;
+ static const uint16_t kPicIdLength = 1 << 15;
static const uint8_t kMaxTemporalLayers = 5;
- static const int kMaxLayerInfo = 10;
- static const int kMaxStashedFrames = 10;
- static const int kMaxNotYetReceivedFrames = 20;
- static const int kMaxGofSaved = 15;
+ static const int kMaxLayerInfo = 50;
philipel 2016/11/08 09:27:13 In general we threw away info to early causing los
stefan-webrtc 2016/11/08 10:41:34 Acknowledged.
+ static const int kMaxStashedFrames = 50;
+ static const int kMaxNotYetReceivedFrames = 100;
+ static const int kMaxGofSaved = 50;
static const int kMaxPaddingAge = 100;

Powered by Google App Engine
This is Rietveld 408576698