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

Side by Side 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: fix win compile error, bah 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2014 Google Inc. 3 * Copyright 2014 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after
1141 1141
1142 if (!ValidateReceiveSsrcAvailability(sp)) 1142 if (!ValidateReceiveSsrcAvailability(sp))
1143 return false; 1143 return false;
1144 1144
1145 for (uint32 used_ssrc : sp.ssrcs) 1145 for (uint32 used_ssrc : sp.ssrcs)
1146 receive_ssrcs_.insert(used_ssrc); 1146 receive_ssrcs_.insert(used_ssrc);
1147 1147
1148 webrtc::VideoReceiveStream::Config config; 1148 webrtc::VideoReceiveStream::Config config;
1149 ConfigureReceiverRtp(&config, sp); 1149 ConfigureReceiverRtp(&config, sp);
1150 1150
1151 // Set up A/V sync if there is a VoiceChannel. 1151 // Set up A/V sync group based on sync label.
1152 // TODO(pbos): The A/V is synched by the receiving channel. So we need to know 1152 config.sync_group = sp.sync_label;
1153 // the SSRC of the remote audio channel in order to sync the correct webrtc
1154 // VoiceEngine channel. For now sync the first channel in non-conference to
1155 // match existing behavior in WebRtcVideoEngine.
1156 if (voice_channel_id_ != -1 && receive_streams_.empty() &&
1157 !options_.conference_mode.GetWithDefaultIfUnset(false)) {
1158 config.audio_channel_id = voice_channel_id_;
1159 }
1160 1153
1161 config.rtp.remb = false; 1154 config.rtp.remb = false;
1162 VideoCodecSettings send_codec; 1155 VideoCodecSettings send_codec;
1163 if (send_codec_.Get(&send_codec)) { 1156 if (send_codec_.Get(&send_codec)) {
1164 config.rtp.remb = HasRemb(send_codec.codec); 1157 config.rtp.remb = HasRemb(send_codec.codec);
1165 } 1158 }
1166 1159
1167 receive_streams_[ssrc] = new WebRtcVideoReceiveStream( 1160 receive_streams_[ssrc] = new WebRtcVideoReceiveStream(
1168 call_.get(), sp, external_decoder_factory_, default_stream, config, 1161 call_.get(), sp, external_decoder_factory_, default_stream, config,
1169 recv_codecs_); 1162 recv_codecs_);
(...skipping 1410 matching lines...) Expand 10 before | Expand all | Expand 10 after
2580 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; 2573 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id];
2581 } 2574 }
2582 } 2575 }
2583 2576
2584 return video_codecs; 2577 return video_codecs;
2585 } 2578 }
2586 2579
2587 } // namespace cricket 2580 } // namespace cricket
2588 2581
2589 #endif // HAVE_WEBRTC_VIDEO 2582 #endif // HAVE_WEBRTC_VIDEO
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698