Index: webrtc/modules/audio_coding/test/APITest.cc |
diff --git a/webrtc/modules/audio_coding/test/APITest.cc b/webrtc/modules/audio_coding/test/APITest.cc |
index 25bacfd60bf1e108e348492a0c8cc5fff1a69459..833398acddfd71fc9784b41650542a6c0a2a8cad 100644 |
--- a/webrtc/modules/audio_coding/test/APITest.cc |
+++ b/webrtc/modules/audio_coding/test/APITest.cc |
@@ -323,7 +323,8 @@ bool APITest::APIThreadB(void* obj) { |
bool APITest::PullAudioRunA() { |
_pullEventA->Wait(100); |
AudioFrame audioFrame; |
- if (_acmA->PlayoutData10Ms(_outFreqHzA, &audioFrame) < 0) { |
+ bool muted; |
+ if (_acmA->PlayoutData10Ms(_outFreqHzA, &audioFrame, &muted) < 0) { |
bool thereIsDecoder; |
{ |
ReadLockScoped rl(_apiTestRWLock); |
@@ -343,7 +344,8 @@ bool APITest::PullAudioRunA() { |
bool APITest::PullAudioRunB() { |
_pullEventB->Wait(100); |
AudioFrame audioFrame; |
- if (_acmB->PlayoutData10Ms(_outFreqHzB, &audioFrame) < 0) { |
+ bool muted; |
+ if (_acmB->PlayoutData10Ms(_outFreqHzB, &audioFrame, &muted) < 0) { |
bool thereIsDecoder; |
{ |
ReadLockScoped rl(_apiTestRWLock); |