From cdefc91ffc377dfc4036b41cf60f431d14304941 Mon Sep 17 00:00:00 2001 From: "braveyao@webrtc.org" Date: Tue, 11 Mar 2014 16:19:56 +0000 Subject: [PATCH] Voice Engine GetRemoteCSRCs should return the CSRCs from rtp_receiver_ instead of _rtpRtcpModule now. BUG=3012 TEST=auto test R=stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/9679004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5679 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/voice_engine/channel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/voice_engine/channel.cc b/webrtc/voice_engine/channel.cc index 480ff4947..ff064d9d1 100644 --- a/webrtc/voice_engine/channel.cc +++ b/webrtc/voice_engine/channel.cc @@ -3484,7 +3484,7 @@ Channel::GetRemoteCSRCs(unsigned int arrCSRC[15]) } uint32_t arrOfCSRC[kRtpCsrcSize]; int32_t CSRCs(0); - CSRCs = _rtpRtcpModule->CSRCs(arrOfCSRC); + CSRCs = rtp_receiver_->CSRCs(arrOfCSRC); if (CSRCs > 0) { memcpy(arrCSRC, arrOfCSRC, CSRCs * sizeof(uint32_t));