| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 int shift_offset; | 143 int shift_offset; |
| 144 float delay_quality_threshold; | 144 float delay_quality_threshold; |
| 145 int frame_count; | 145 int frame_count; |
| 146 | 146 |
| 147 // 0 = delay agnostic mode (signal based delay correction) disabled. | 147 // 0 = delay agnostic mode (signal based delay correction) disabled. |
| 148 // Otherwise enabled. | 148 // Otherwise enabled. |
| 149 int delay_agnostic_enabled; | 149 int delay_agnostic_enabled; |
| 150 // 1 = extended filter mode enabled, 0 = disabled. | 150 // 1 = extended filter mode enabled, 0 = disabled. |
| 151 int extended_filter_enabled; | 151 int extended_filter_enabled; |
| 152 // 1 = next generation aec mode enabled, 0 = disabled. | 152 // 1 = next generation aec mode enabled, 0 = disabled. |
| 153 int next_generation_aec_enabled; | 153 int aec3_enabled; |
| 154 | 154 |
| 155 // Runtime selection of number of filter partitions. | 155 // Runtime selection of number of filter partitions. |
| 156 int num_partitions; | 156 int num_partitions; |
| 157 | 157 |
| 158 // Flag that extreme filter divergence has been detected by the Echo | 158 // Flag that extreme filter divergence has been detected by the Echo |
| 159 // Suppressor. | 159 // Suppressor. |
| 160 int extreme_filter_divergence; | 160 int extreme_filter_divergence; |
| 161 | 161 |
| 162 #ifdef WEBRTC_AEC_DEBUG_DUMP | 162 #ifdef WEBRTC_AEC_DEBUG_DUMP |
| 163 // Sequence number of this AEC instance, so that different instances can | 163 // Sequence number of this AEC instance, so that different instances can |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 typedef void (*WebRtcAecStoreAsComplex)(const float* data, | 225 typedef void (*WebRtcAecStoreAsComplex)(const float* data, |
| 226 float data_complex[2][PART_LEN1]); | 226 float data_complex[2][PART_LEN1]); |
| 227 extern WebRtcAecStoreAsComplex WebRtcAec_StoreAsComplex; | 227 extern WebRtcAecStoreAsComplex WebRtcAec_StoreAsComplex; |
| 228 | 228 |
| 229 typedef void (*WebRtcAecWindowData)(float* x_windowed, const float* x); | 229 typedef void (*WebRtcAecWindowData)(float* x_windowed, const float* x); |
| 230 extern WebRtcAecWindowData WebRtcAec_WindowData; | 230 extern WebRtcAecWindowData WebRtcAec_WindowData; |
| 231 | 231 |
| 232 } // namespace webrtc | 232 } // namespace webrtc |
| 233 | 233 |
| 234 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_ | 234 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_ |
| OLD | NEW |