Index: webrtc/modules/audio_coding/test/TestAllCodecs.cc |
diff --git a/webrtc/modules/audio_coding/test/TestAllCodecs.cc b/webrtc/modules/audio_coding/test/TestAllCodecs.cc |
index bacfd3718800d660edd935a76878141fc0e0758a..80a0464d3857665ab1bb11c1aea2f2314fa0b328 100644 |
--- a/webrtc/modules/audio_coding/test/TestAllCodecs.cc |
+++ b/webrtc/modules/audio_coding/test/TestAllCodecs.cc |
@@ -452,7 +452,9 @@ void TestAllCodecs::Run(TestPack* channel) { |
} |
// Run received side of ACM. |
- CHECK_ERROR(acm_b_->PlayoutData10Ms(out_freq_hz, &audio_frame)); |
+ bool muted; |
+ CHECK_ERROR(acm_b_->PlayoutData10Ms(out_freq_hz, &audio_frame, &muted)); |
+ ASSERT_FALSE(muted); |
// Write output speech to file. |
outfile_b_.Write10MsData(audio_frame.data_, |