Index: webrtc/modules/audio_coding/test/TestStereo.cc |
diff --git a/webrtc/modules/audio_coding/test/TestStereo.cc b/webrtc/modules/audio_coding/test/TestStereo.cc |
index 9bf560d3237fa3fd2b2c76d738247e53aa8ababc..ad99fb79dd2247a56b326d368f3bc4588d254188 100644 |
--- a/webrtc/modules/audio_coding/test/TestStereo.cc |
+++ b/webrtc/modules/audio_coding/test/TestStereo.cc |
@@ -792,7 +792,9 @@ void TestStereo::Run(TestPackStereo* channel, int in_channels, int out_channels, |
} |
// Run received side of ACM |
- EXPECT_EQ(0, acm_b_->PlayoutData10Ms(out_freq_hz_b, &audio_frame)); |
+ bool muted; |
+ EXPECT_EQ(0, acm_b_->PlayoutData10Ms(out_freq_hz_b, &audio_frame, &muted)); |
+ RTC_DCHECK(!muted); |
minyue-webrtc
2016/05/17 02:20:57
why not ASSERT?
hlundin-webrtc
2016/05/17 07:18:43
Good point. Done.
|
// Write output speech to file |
out_file_.Write10MsData( |