| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 // Returns non-zero if delay agnostic (i.e., signal based delay estimation) is | 110 // Returns non-zero if delay agnostic (i.e., signal based delay estimation) is |
| 111 // enabled and zero if disabled. | 111 // enabled and zero if disabled. |
| 112 int WebRtcAec_delay_agnostic_enabled(AecCore* self); | 112 int WebRtcAec_delay_agnostic_enabled(AecCore* self); |
| 113 | 113 |
| 114 // Non-zero enables, zero disables. | 114 // Non-zero enables, zero disables. |
| 115 void WebRtcAec_enable_next_generation_aec(AecCore* self, int enable); | 115 void WebRtcAec_enable_next_generation_aec(AecCore* self, int enable); |
| 116 | 116 |
| 117 // Returns 1 if the next generation aec is enabled and zero if disabled. | 117 // Returns 1 if the next generation aec is enabled and zero if disabled. |
| 118 int WebRtcAec_next_generation_aec_enabled(AecCore* self); | 118 int WebRtcAec_next_generation_aec_enabled(AecCore* self); |
| 119 | 119 |
| 120 // Turns on/off the refined adaptive filter feature. |
| 121 void WebRtcAec_enable_refined_adaptive_filter(AecCore* self, int enable); |
| 122 |
| 123 // Returns whether the refined adaptive filter is enabled. |
| 124 int WebRtcAec_refined_adaptive_filter(const AecCore* self); |
| 125 |
| 120 // Enables or disables extended filter mode. Non-zero enables, zero disables. | 126 // Enables or disables extended filter mode. Non-zero enables, zero disables. |
| 121 void WebRtcAec_enable_extended_filter(AecCore* self, int enable); | 127 void WebRtcAec_enable_extended_filter(AecCore* self, int enable); |
| 122 | 128 |
| 123 // Returns non-zero if extended filter mode is enabled and zero if disabled. | 129 // Returns non-zero if extended filter mode is enabled and zero if disabled. |
| 124 int WebRtcAec_extended_filter_enabled(AecCore* self); | 130 int WebRtcAec_extended_filter_enabled(AecCore* self); |
| 125 | 131 |
| 126 // Returns the current |system_delay|, i.e., the buffered difference between | 132 // Returns the current |system_delay|, i.e., the buffered difference between |
| 127 // far-end and near-end. | 133 // far-end and near-end. |
| 128 int WebRtcAec_system_delay(AecCore* self); | 134 int WebRtcAec_system_delay(AecCore* self); |
| 129 | 135 |
| 130 // Sets the |system_delay| to |value|. Note that if the value is changed | 136 // Sets the |system_delay| to |value|. Note that if the value is changed |
| 131 // improperly, there can be a performance regression. So it should be used with | 137 // improperly, there can be a performance regression. So it should be used with |
| 132 // care. | 138 // care. |
| 133 void WebRtcAec_SetSystemDelay(AecCore* self, int delay); | 139 void WebRtcAec_SetSystemDelay(AecCore* self, int delay); |
| 134 | 140 |
| 135 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_H_ | 141 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_H_ |
| OLD | NEW |