From 0ba496bf33feea212277927f212b4b02556c8f8b Mon Sep 17 00:00:00 2001 From: "tnakamura@webrtc.org" Date: Tue, 16 Jul 2013 19:25:04 +0000 Subject: Revert r4301 R=mikhal@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1809004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@4357 4adac7df-926f-26a2-2b94-8c16560cd09d --- voice_engine/voe_video_sync_impl.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'voice_engine/voe_video_sync_impl.cc') diff --git a/voice_engine/voe_video_sync_impl.cc b/voice_engine/voe_video_sync_impl.cc index a0654f75..91c07503 100644 --- a/voice_engine/voe_video_sync_impl.cc +++ b/voice_engine/voe_video_sync_impl.cc @@ -216,8 +216,7 @@ int VoEVideoSyncImpl::GetPlayoutBufferSize(int& bufferMs) return 0; } -int VoEVideoSyncImpl::GetRtpRtcp(int channel, RtpRtcp** rtpRtcpModule, - RtpReceiver** rtp_receiver) +int VoEVideoSyncImpl::GetRtpRtcp(int channel, RtpRtcp* &rtpRtcpModule) { WEBRTC_TRACE(kTraceApiCall, kTraceVoice, VoEId(_shared->instance_id(), -1), "GetRtpRtcp(channel=%i)", channel); @@ -235,7 +234,7 @@ int VoEVideoSyncImpl::GetRtpRtcp(int channel, RtpRtcp** rtpRtcpModule, "GetPlayoutTimestamp() failed to locate channel"); return -1; } - return channelPtr->GetRtpRtcp(rtpRtcpModule, rtp_receiver); + return channelPtr->GetRtpRtcp(rtpRtcpModule); } int VoEVideoSyncImpl::GetLeastRequiredDelayMs(int channel) const { -- cgit v1.2.3