| Index: webrtc/modules/audio_processing/echo_cancellation_impl.cc
|
| diff --git a/webrtc/modules/audio_processing/echo_cancellation_impl.cc b/webrtc/modules/audio_processing/echo_cancellation_impl.cc
|
| index f18c1c3f8a46aaa1d77b93ec87f687e23909c51a..03d3f482843594a1811dc9495c474fecb489397a 100644
|
| --- a/webrtc/modules/audio_processing/echo_cancellation_impl.cc
|
| +++ b/webrtc/modules/audio_processing/echo_cancellation_impl.cc
|
| @@ -10,9 +10,9 @@
|
|
|
| #include "webrtc/modules/audio_processing/echo_cancellation_impl.h"
|
|
|
| -#include <assert.h>
|
| #include <string.h>
|
|
|
| +#include "webrtc/base/checks.h"
|
| #include "webrtc/modules/audio_processing/aec/aec_core.h"
|
| #include "webrtc/modules/audio_processing/aec/echo_cancellation.h"
|
| #include "webrtc/modules/audio_processing/audio_buffer.h"
|
| @@ -29,7 +29,7 @@ int16_t MapSetting(EchoCancellation::SuppressionLevel level) {
|
| case EchoCancellation::kHighSuppression:
|
| return kAecNlpAggressive;
|
| }
|
| - assert(false);
|
| + RTC_NOTREACHED();
|
| return -1;
|
| }
|
|
|
|
|