Index: webrtc/modules/audio_processing/aec/aec_core_internal.h |
diff --git a/webrtc/modules/audio_processing/aec/aec_core_internal.h b/webrtc/modules/audio_processing/aec/aec_core_internal.h |
index 3809c825672a2b8f5edccbbb69793f3f199fac9a..c05d224f1d5f8a148722fee092a5b16fc9baf99c 100644 |
--- a/webrtc/modules/audio_processing/aec/aec_core_internal.h |
+++ b/webrtc/modules/audio_processing/aec/aec_core_internal.h |
@@ -19,16 +19,12 @@ |
// Number of partitions for the extended filter mode. The first one is an enum |
// to be used in array declarations, as it represents the maximum filter length. |
-enum { |
- kExtendedNumPartitions = 32 |
-}; |
+enum { kExtendedNumPartitions = 32 }; |
static const int kNormalNumPartitions = 12; |
// Delay estimator constants, used for logging and delay compensation if |
// if reported delays are disabled. |
-enum { |
- kLookaheadBlocks = 15 |
-}; |
+enum { kLookaheadBlocks = 15 }; |
enum { |
// 500 ms for 16 kHz which is equivalent with the limit of reported delays. |
kHistorySizeBlocks = 125 |