| Index: webrtc/video/send_statistics_proxy.cc
|
| diff --git a/webrtc/video/send_statistics_proxy.cc b/webrtc/video/send_statistics_proxy.cc
|
| index abaa43800543ad29c7ef749848d0f1aa33954e4a..7f941b81b88ae3ad71e1fbd2d8a22120496a6517 100644
|
| --- a/webrtc/video/send_statistics_proxy.cc
|
| +++ b/webrtc/video/send_statistics_proxy.cc
|
| @@ -564,16 +564,16 @@ void SendStatisticsProxy::DataCountersUpdated(
|
| uma_container_->first_rtp_stats_time_ms_ = clock_->TimeInMilliseconds();
|
| }
|
|
|
| -void SendStatisticsProxy::Notify(const BitrateStatistics& total_stats,
|
| - const BitrateStatistics& retransmit_stats,
|
| +void SendStatisticsProxy::Notify(uint32_t total_bitrate_bps,
|
| + uint32_t retransmit_bitrate_bps,
|
| uint32_t ssrc) {
|
| rtc::CritScope lock(&crit_);
|
| VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc);
|
| if (!stats)
|
| return;
|
|
|
| - stats->total_bitrate_bps = total_stats.bitrate_bps;
|
| - stats->retransmit_bitrate_bps = retransmit_stats.bitrate_bps;
|
| + stats->total_bitrate_bps = total_bitrate_bps;
|
| + stats->retransmit_bitrate_bps = retransmit_bitrate_bps;
|
| }
|
|
|
| void SendStatisticsProxy::FrameCountUpdated(const FrameCounts& frame_counts,
|
|
|