| Index: webrtc/video/receive_statistics_proxy.cc
|
| diff --git a/webrtc/video/receive_statistics_proxy.cc b/webrtc/video/receive_statistics_proxy.cc
|
| index 97c1cf17b6f6f910fa013d392a70b1d8ae0b2099..ab78a30279adc7fbc2b21ae98dbc3680955a69a5 100644
|
| --- a/webrtc/video/receive_statistics_proxy.cc
|
| +++ b/webrtc/video/receive_statistics_proxy.cc
|
| @@ -27,8 +27,8 @@ ReceiveStatisticsProxy::ReceiveStatisticsProxy(
|
| // 1000ms window, scale 1000 for ms to s.
|
| decode_fps_estimator_(1000, 1000),
|
| renders_fps_estimator_(1000, 1000),
|
| - render_fps_tracker_(100u, 10u),
|
| - render_pixel_tracker_(100u, 10u) {
|
| + render_fps_tracker_(100, 10u),
|
| + render_pixel_tracker_(100, 10u) {
|
| stats_.ssrc = config.rtp.remote_ssrc;
|
| for (auto it : config.rtp.rtx)
|
| rtx_stats_[it.second.ssrc] = StreamDataCounters();
|
|
|