Index: webrtc/video/vie_channel.cc |
diff --git a/webrtc/video/vie_channel.cc b/webrtc/video/vie_channel.cc |
index 4097a8b8463487c0dcefbd4853b116d289dd0170..be3a2e3413287ab92a2cd004b2228cbdbb8c02b7 100644 |
--- a/webrtc/video/vie_channel.cc |
+++ b/webrtc/video/vie_channel.cc |
@@ -263,8 +263,8 @@ void ViEChannel::UpdateHistograms() { |
bool fec_enabled = false; |
uint8_t pltype_red; |
uint8_t pltype_fec; |
- rtp_rtcp_modules_[0]->GenericFECStatus(fec_enabled, pltype_red, |
- pltype_fec); |
+ rtp_rtcp_modules_[0]->GenericFECStatus(&fec_enabled, &pltype_red, |
+ &pltype_fec); |
if (fec_enabled) { |
RTC_HISTOGRAM_COUNTS_10000("WebRTC.Video.FecBitrateSentInKbps", |
static_cast<int>(rtp_rtx.fec.TotalBytes() * |
@@ -531,7 +531,7 @@ bool ViEChannel::IsSendingFecEnabled() { |
uint8_t pltype_fec = 0; |
for (RtpRtcp* rtp_rtcp : rtp_rtcp_modules_) { |
- rtp_rtcp->GenericFECStatus(fec_enabled, pltype_red, pltype_fec); |
+ rtp_rtcp->GenericFECStatus(&fec_enabled, &pltype_red, &pltype_fec); |
if (fec_enabled) |
return true; |
} |