Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: webrtc/modules/audio_processing/noise_suppression_impl.cc

Issue 1917043005: #include "webrtc/base/constructormagic.h" where appropriate (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/gain_control_impl.cc ('k') | webrtc/modules/audio_processing/voice_detection_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698