| Index: webrtc/modules/audio_coding/neteq/tools/neteq_performance_test.cc
|
| diff --git a/webrtc/modules/audio_coding/neteq/tools/neteq_performance_test.cc b/webrtc/modules/audio_coding/neteq/tools/neteq_performance_test.cc
|
| index 59402a2029b3ab2e3ff49f27312a7ddf24382f3f..d0052c28a8d385420b61e532086dfdbc8385fe54 100644
|
| --- a/webrtc/modules/audio_coding/neteq/tools/neteq_performance_test.cc
|
| +++ b/webrtc/modules/audio_coding/neteq/tools/neteq_performance_test.cc
|
| @@ -10,6 +10,7 @@
|
|
|
| #include "webrtc/modules/audio_coding/neteq/tools/neteq_performance_test.h"
|
|
|
| +#include "webrtc/base/checks.h"
|
| #include "webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.h"
|
| #include "webrtc/modules/audio_coding/neteq/include/neteq.h"
|
| #include "webrtc/modules/audio_coding/neteq/tools/audio_loop.h"
|
| @@ -105,7 +106,9 @@ int64_t NetEqPerformanceTest::Run(int runtime_ms,
|
| }
|
|
|
| // Get output audio, but don't do anything with it.
|
| - int error = neteq->GetAudio(&out_frame);
|
| + bool muted;
|
| + int error = neteq->GetAudio(&out_frame, &muted);
|
| + RTC_CHECK(!muted);
|
| if (error != NetEq::kOK)
|
| return -1;
|
|
|
|
|