| Index: webrtc/video_engine/vie_channel.cc
|
| diff --git a/webrtc/video_engine/vie_channel.cc b/webrtc/video_engine/vie_channel.cc
|
| index 681f72cc06bde2f4d5d2f487f76d2d96a0a30d4f..7374cd1e582fac6cc88dd35e8ea12f80de372484 100644
|
| --- a/webrtc/video_engine/vie_channel.cc
|
| +++ b/webrtc/video_engine/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;
|
| }
|
|
|