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

Unified Diff: webrtc/video/bitrate_estimator_tests.cc

Issue 1181653002: Base A/V synchronization on sync_labels. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: updated log message 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: webrtc/video/bitrate_estimator_tests.cc
diff --git a/webrtc/video/bitrate_estimator_tests.cc b/webrtc/video/bitrate_estimator_tests.cc
index 6e71ca24efe7d8b9269b96235af8df03ce6fcfb9..d7b0b374d35c12eb0733485d79c2a08b3cc00eb2 100644
--- a/webrtc/video/bitrate_estimator_tests.cc
+++ b/webrtc/video/bitrate_estimator_tests.cc
@@ -204,6 +204,9 @@ class BitrateEstimatorTest : public test::CallTest {
if (receive_audio) {
AudioReceiveStream::Config receive_config;
receive_config.rtp.remote_ssrc = test_->send_config_.rtp.ssrcs[0];
+ // Bogus non-default id, every receive stream should correspond to an
+ // underlying channel.
hta-webrtc 2015/07/06 19:04:00 This comment is not clear. Under what conditions i
pbos-webrtc 2015/07/09 10:21:49 Rephrased as: // Bogus non-default id to prevent
+ receive_config.voe_channel_id = 0;
receive_config.rtp.extensions.push_back(
RtpExtension(RtpExtension::kAbsSendTime, kASTExtensionId));
audio_receive_stream_ = test_->receiver_call_->CreateAudioReceiveStream(

Powered by Google App Engine
This is Rietveld 408576698