Index: webrtc/modules/audio_coding/test/TestRedFec.cc |
diff --git a/webrtc/modules/audio_coding/test/TestRedFec.cc b/webrtc/modules/audio_coding/test/TestRedFec.cc |
index a1bdc04e5314b06d985c31de4e2ecec81068a4e2..24cda1122b9e2e88d7eadd2af2e3445d70be2981 100644 |
--- a/webrtc/modules/audio_coding/test/TestRedFec.cc |
+++ b/webrtc/modules/audio_coding/test/TestRedFec.cc |
@@ -461,7 +461,9 @@ void TestRedFec::Run() { |
while (!_inFileA.EndOfFile()) { |
EXPECT_GT(_inFileA.Read10MsData(audioFrame), 0); |
EXPECT_GE(_acmA->Add10MsData(audioFrame), 0); |
- EXPECT_EQ(0, _acmB->PlayoutData10Ms(outFreqHzB, &audioFrame)); |
+ bool muted; |
+ EXPECT_EQ(0, _acmB->PlayoutData10Ms(outFreqHzB, &audioFrame, &muted)); |
+ ASSERT_FALSE(muted); |
_outFileB.Write10MsData(audioFrame.data_, audioFrame.samples_per_channel_); |
} |
_inFileA.Rewind(); |