Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(529)

Unified Diff: talk/media/webrtc/webrtcvideoengine2.cc

Issue 1181653002: Base A/V synchronization on sync_labels. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: add missing tests + fix bug Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: talk/media/webrtc/webrtcvideoengine2.cc
diff --git a/talk/media/webrtc/webrtcvideoengine2.cc b/talk/media/webrtc/webrtcvideoengine2.cc
index d68d6192dbe4d818400cca524b246fdf86e80329..2e9aa0b9ab8d10ab0a28c232bdf6d9630bdf2192 100644
--- a/talk/media/webrtc/webrtcvideoengine2.cc
+++ b/talk/media/webrtc/webrtcvideoengine2.cc
@@ -1148,15 +1148,8 @@ bool WebRtcVideoChannel2::AddRecvStream(const StreamParams& sp,
webrtc::VideoReceiveStream::Config config;
ConfigureReceiverRtp(&config, sp);
- // Set up A/V sync if there is a VoiceChannel.
- // TODO(pbos): The A/V is synched by the receiving channel. So we need to know
- // the SSRC of the remote audio channel in order to sync the correct webrtc
- // VoiceEngine channel. For now sync the first channel in non-conference to
- // match existing behavior in WebRtcVideoEngine.
- if (voice_channel_id_ != -1 && receive_streams_.empty() &&
- !options_.conference_mode.GetWithDefaultIfUnset(false)) {
- config.audio_channel_id = voice_channel_id_;
- }
+ // Set up A/V sync group based on sync label.
+ config.sync_group = sp.sync_label;
config.rtp.remb = false;
VideoCodecSettings send_codec;

Powered by Google App Engine
This is Rietveld 408576698