| 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 |
| 11 #include "webrtc/modules/audio_processing/noise_suppression_impl.h" | 11 #include "webrtc/modules/audio_processing/noise_suppression_impl.h" |
| 12 | 12 |
| 13 #include "webrtc/base/constructormagic.h" |
| 13 #include "webrtc/modules/audio_processing/audio_buffer.h" | 14 #include "webrtc/modules/audio_processing/audio_buffer.h" |
| 14 #if defined(WEBRTC_NS_FLOAT) | 15 #if defined(WEBRTC_NS_FLOAT) |
| 15 #include "webrtc/modules/audio_processing/ns/noise_suppression.h" | 16 #include "webrtc/modules/audio_processing/ns/noise_suppression.h" |
| 16 #define NS_CREATE WebRtcNs_Create | 17 #define NS_CREATE WebRtcNs_Create |
| 17 #define NS_FREE WebRtcNs_Free | 18 #define NS_FREE WebRtcNs_Free |
| 18 #define NS_INIT WebRtcNs_Init | 19 #define NS_INIT WebRtcNs_Init |
| 19 #define NS_SET_POLICY WebRtcNs_set_policy | 20 #define NS_SET_POLICY WebRtcNs_set_policy |
| 20 typedef NsHandle NsState; | 21 typedef NsHandle NsState; |
| 21 #elif defined(WEBRTC_NS_FIXED) | 22 #elif defined(WEBRTC_NS_FIXED) |
| 22 #include "webrtc/modules/audio_processing/ns/noise_suppression_x.h" | 23 #include "webrtc/modules/audio_processing/ns/noise_suppression_x.h" |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 | 204 |
| 204 size_t NoiseSuppressionImpl::num_noise_bins() { | 205 size_t NoiseSuppressionImpl::num_noise_bins() { |
| 205 #if defined(WEBRTC_NS_FLOAT) | 206 #if defined(WEBRTC_NS_FLOAT) |
| 206 return WebRtcNs_num_freq(); | 207 return WebRtcNs_num_freq(); |
| 207 #elif defined(WEBRTC_NS_FIXED) | 208 #elif defined(WEBRTC_NS_FIXED) |
| 208 return WebRtcNsx_num_freq(); | 209 return WebRtcNsx_num_freq(); |
| 209 #endif | 210 #endif |
| 210 } | 211 } |
| 211 | 212 |
| 212 } // namespace webrtc | 213 } // namespace webrtc |
| OLD | NEW |