commit | f1e08d0b5848d32fd31c5b6e4e570115c32b7ce5 | [log] [tgz] |
---|---|---|
author | gustavogb <gustavogb@gmail.com> | Wed Aug 09 05:43:08 2017 -0700 |
committer | Commit Bot <commit-bot@chromium.org> | Wed Aug 09 12:43:08 2017 +0000 |
tree | 7ff7f0017ee94537df9c47b8d0f055c6a04bd601 | |
parent | 5ca60cc91cb21d4eded8b7ee401ee0b6cf280a2c [diff] [blame] |
Fix the video buffer size should take rtt into consideration BUG=webrtc:8010 Review-Url: https://codereview.webrtc.org/2980413002 Cr-Commit-Position: refs/heads/master@{#19285}
diff --git a/webrtc/modules/video_coding/frame_buffer2.h b/webrtc/modules/video_coding/frame_buffer2.h index 13dd341..8de0680 100644 --- a/webrtc/modules/video_coding/frame_buffer2.h +++ b/webrtc/modules/video_coding/frame_buffer2.h
@@ -74,6 +74,9 @@ // return immediately. void Stop(); + // Updates the RTT for jitter buffer estimation. + void UpdateRtt(int64_t rtt_ms); + private: struct FrameKey { FrameKey() : picture_id(0), spatial_layer(0) {}