| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 int delay_correction_count; | 138 int delay_correction_count; |
| 139 int shift_offset; | 139 int shift_offset; |
| 140 float delay_quality_threshold; | 140 float delay_quality_threshold; |
| 141 int frame_count; | 141 int frame_count; |
| 142 | 142 |
| 143 // 0 = delay agnostic mode (signal based delay correction) disabled. | 143 // 0 = delay agnostic mode (signal based delay correction) disabled. |
| 144 // Otherwise enabled. | 144 // Otherwise enabled. |
| 145 int delay_agnostic_enabled; | 145 int delay_agnostic_enabled; |
| 146 // 1 = extended filter mode enabled, 0 = disabled. | 146 // 1 = extended filter mode enabled, 0 = disabled. |
| 147 int extended_filter_enabled; | 147 int extended_filter_enabled; |
| 148 // 1 = next generation aec mode enabled, 0 = disabled. |
| 149 int next_generation_aec_enabled; |
| 150 |
| 148 // Runtime selection of number of filter partitions. | 151 // Runtime selection of number of filter partitions. |
| 149 int num_partitions; | 152 int num_partitions; |
| 150 | 153 |
| 151 // Flag that extreme filter divergence has been detected by the Echo | 154 // Flag that extreme filter divergence has been detected by the Echo |
| 152 // Suppressor. | 155 // Suppressor. |
| 153 int extreme_filter_divergence; | 156 int extreme_filter_divergence; |
| 154 | 157 |
| 155 #ifdef WEBRTC_AEC_DEBUG_DUMP | 158 #ifdef WEBRTC_AEC_DEBUG_DUMP |
| 156 // Sequence number of this AEC instance, so that different instances can | 159 // Sequence number of this AEC instance, so that different instances can |
| 157 // choose different dump file names. | 160 // choose different dump file names. |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 extern WebRtcAecPartitionDelay WebRtcAec_PartitionDelay; | 219 extern WebRtcAecPartitionDelay WebRtcAec_PartitionDelay; |
| 217 | 220 |
| 218 typedef void (*WebRtcAecStoreAsComplex)(const float* data, | 221 typedef void (*WebRtcAecStoreAsComplex)(const float* data, |
| 219 float data_complex[2][PART_LEN1]); | 222 float data_complex[2][PART_LEN1]); |
| 220 extern WebRtcAecStoreAsComplex WebRtcAec_StoreAsComplex; | 223 extern WebRtcAecStoreAsComplex WebRtcAec_StoreAsComplex; |
| 221 | 224 |
| 222 typedef void (*WebRtcAecWindowData)(float* x_windowed, const float* x); | 225 typedef void (*WebRtcAecWindowData)(float* x_windowed, const float* x); |
| 223 extern WebRtcAecWindowData WebRtcAec_WindowData; | 226 extern WebRtcAecWindowData WebRtcAec_WindowData; |
| 224 | 227 |
| 225 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_ | 228 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_ |
| OLD | NEW |