diff --git a/video/receive_statistics_proxy.cc b/video/receive_statistics_proxy.cc index b5c03bf8b9..05dafbdab4 100644 --- a/video/receive_statistics_proxy.cc +++ b/video/receive_statistics_proxy.cc @@ -234,18 +234,7 @@ void ReceiveStatisticsProxy::UpdateHistograms( if (delay_ms) RTC_HISTOGRAM_COUNTS_10000("WebRTC.Video.OnewayDelayInMs", *delay_ms); - // Aggregate content_specific_stats_ by removing experiment or simulcast - // information; - std::map aggregated_stats; for (const auto& it : content_specific_stats_) { - // Calculate simulcast specific metrics (".S0" ... ".S2" suffixes). - VideoContentType content_type = it.first; - // Calculate aggregated metrics (no suffixes. Aggregated on everything). - content_type = it.first; - aggregated_stats[content_type].Add(it.second); - } - - for (const auto& it : aggregated_stats) { // For the metric Foo we report the following slices: // WebRTC.Video.Foo, // WebRTC.Video.Screenshare.Foo,