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
This commit is contained in:
parent
1598b80f52
commit
cdefc91ffc
@ -3484,7 +3484,7 @@ Channel::GetRemoteCSRCs(unsigned int arrCSRC[15])
|
|||||||
}
|
}
|
||||||
uint32_t arrOfCSRC[kRtpCsrcSize];
|
uint32_t arrOfCSRC[kRtpCsrcSize];
|
||||||
int32_t CSRCs(0);
|
int32_t CSRCs(0);
|
||||||
CSRCs = _rtpRtcpModule->CSRCs(arrOfCSRC);
|
CSRCs = rtp_receiver_->CSRCs(arrOfCSRC);
|
||||||
if (CSRCs > 0)
|
if (CSRCs > 0)
|
||||||
{
|
{
|
||||||
memcpy(arrCSRC, arrOfCSRC, CSRCs * sizeof(uint32_t));
|
memcpy(arrCSRC, arrOfCSRC, CSRCs * sizeof(uint32_t));
|
||||||
|
Loading…
Reference in New Issue
Block a user