Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Unified Diff: video/receive_statistics_proxy.cc

Issue 3019453002: Delete member VideoReceiveStream::Config::Rtp::ulpfec. (Closed)
Patch Set: Added DCHECK. Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « video/end_to_end_tests.cc ('k') | video/replay.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: video/receive_statistics_proxy.cc
diff --git a/video/receive_statistics_proxy.cc b/video/receive_statistics_proxy.cc
index b19ec2075d7314edbbc36cbc194bbf9f95b54165..b7977380ee82ff3433cb1d7f4ce24250fd7d80fb 100644
--- a/video/receive_statistics_proxy.cc
+++ b/video/receive_statistics_proxy.cc
@@ -366,7 +366,7 @@ void ReceiveStatisticsProxy::UpdateHistograms() {
static_cast<int>(rtx.transmitted.TotalBytes() *
8 / elapsed_sec / 1000));
}
- if (config_.rtp.ulpfec.ulpfec_payload_type != -1) {
+ if (config_.rtp.ulpfec_payload_type != -1) {
RTC_HISTOGRAM_COUNTS_10000(
"WebRTC.Video.FecBitrateReceivedInKbps",
static_cast<int>(rtp_rtx.fec.TotalBytes() * 8 / elapsed_sec / 1000));
« no previous file with comments | « video/end_to_end_tests.cc ('k') | video/replay.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698