Chromium Code Reviews| Index: webrtc/modules/video_coding/video_receiver.cc |
| diff --git a/webrtc/modules/video_coding/video_receiver.cc b/webrtc/modules/video_coding/video_receiver.cc |
| index 129a1b5c45048fced43cb7ab1492aaa6d28f66ac..0e89e078ca2f5366a8f89dbdf4d80e6d3b3604b2 100644 |
| --- a/webrtc/modules/video_coding/video_receiver.cc |
| +++ b/webrtc/modules/video_coding/video_receiver.cc |
| @@ -60,27 +60,7 @@ void VideoReceiver::Process() { |
| _receiveStatsTimer.Processed(); |
| rtc::CritScope cs(&process_crit_); |
| if (_receiveStatsCallback != nullptr) { |
| - uint32_t bitRate; |
| - uint32_t frameRate; |
| - _receiver.ReceiveStatistics(&bitRate, &frameRate); |
| - _receiveStatsCallback->OnReceiveRatesUpdated(bitRate, frameRate); |
| - } |
| - |
| - if (_decoderTimingCallback != nullptr) { |
| - int decode_ms; |
| - int max_decode_ms; |
| - int current_delay_ms; |
| - int target_delay_ms; |
| - int jitter_buffer_ms; |
| - int min_playout_delay_ms; |
| - int render_delay_ms; |
| - if (_timing->GetTimings(&decode_ms, &max_decode_ms, ¤t_delay_ms, |
| - &target_delay_ms, &jitter_buffer_ms, |
| - &min_playout_delay_ms, &render_delay_ms)) { |
| - _decoderTimingCallback->OnDecoderTiming( |
| - decode_ms, max_decode_ms, current_delay_ms, target_delay_ms, |
| - jitter_buffer_ms, min_playout_delay_ms, render_delay_ms); |
| - } |
| + _receiveStatsCallback->OnReceiveRatesUpdated(0, 0); |
|
stefan-webrtc
2017/01/13 09:10:58
Please add a todo to clean this up. Maybe the Qual
|
| } |
| } |
| @@ -292,7 +272,7 @@ int32_t VideoReceiver::Decode(uint16_t maxWaitTimeMs) { |
| return ret; |
| } |
| -// Used for the WebRTC-NewVideoJitterBuffer experiment. |
| +// Used for the new jitter buffer. |
| // TODO(philipel): Clean up among the Decode functions as we replace |
| // VCMEncodedFrame with FrameObject. |
| int32_t VideoReceiver::Decode(const webrtc::VCMEncodedFrame* frame) { |