| Index: webrtc/modules/audio_processing/aec/aec_resampler.h
|
| diff --git a/webrtc/modules/audio_processing/aec/aec_resampler.h b/webrtc/modules/audio_processing/aec/aec_resampler.h
|
| index a5002c155a4a5fff6f338223f01aef4dc2aa8593..f23e9cfad02407d20a06fd3fdd34ebc800569ebf 100644
|
| --- a/webrtc/modules/audio_processing/aec/aec_resampler.h
|
| +++ b/webrtc/modules/audio_processing/aec/aec_resampler.h
|
| @@ -13,12 +13,8 @@
|
|
|
| #include "webrtc/modules/audio_processing/aec/aec_core.h"
|
|
|
| -enum {
|
| - kResamplingDelay = 1
|
| -};
|
| -enum {
|
| - kResamplerBufferSize = FRAME_LEN * 4
|
| -};
|
| +enum { kResamplingDelay = 1 };
|
| +enum { kResamplerBufferSize = FRAME_LEN * 4 };
|
|
|
| // Unless otherwise specified, functions return 0 on success and -1 on error.
|
| void* WebRtcAec_CreateResampler(); // Returns NULL on error.
|
|
|