diff --git a/webrtc/voice_engine/channel.cc b/webrtc/voice_engine/channel.cc index 4671b6fd12..d857776a6e 100644 --- a/webrtc/voice_engine/channel.cc +++ b/webrtc/voice_engine/channel.cc @@ -369,6 +369,9 @@ Channel::OnIncomingSSRCChanged(int32_t id, uint32_t ssrc) int32_t channel = VoEChannelId(id); assert(channel == _channelId); + // Update ssrc so that NTP for AV sync can be updated. + _rtpRtcpModule->SetRemoteSSRC(ssrc); + if (_rtpObserver) { CriticalSectionScoped cs(&_callbackCritSect);