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

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

Issue 2964773002: Revert "Update includes for webrtc/{base => rtc_base} rename (1/3)" (Closed)
Patch Set: Created 3 years, 5 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 #include "webrtc/rtc_base/constructormagic.h"
15 #if defined(WEBRTC_NS_FLOAT) 15 #if defined(WEBRTC_NS_FLOAT)
16 #include "webrtc/modules/audio_processing/ns/noise_suppression.h" 16 #include "webrtc/modules/audio_processing/ns/noise_suppression.h"
17 #define NS_CREATE WebRtcNs_Create 17 #define NS_CREATE WebRtcNs_Create
18 #define NS_FREE WebRtcNs_Free 18 #define NS_FREE WebRtcNs_Free
19 #define NS_INIT WebRtcNs_Init 19 #define NS_INIT WebRtcNs_Init
20 #define NS_SET_POLICY WebRtcNs_set_policy 20 #define NS_SET_POLICY WebRtcNs_set_policy
21 typedef NsHandle NsState; 21 typedef NsHandle NsState;
22 #elif defined(WEBRTC_NS_FIXED) 22 #elif defined(WEBRTC_NS_FIXED)
23 #include "webrtc/modules/audio_processing/ns/noise_suppression_x.h" 23 #include "webrtc/modules/audio_processing/ns/noise_suppression_x.h"
24 #define NS_CREATE WebRtcNsx_Create 24 #define NS_CREATE WebRtcNsx_Create
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 204
205 size_t NoiseSuppressionImpl::num_noise_bins() { 205 size_t NoiseSuppressionImpl::num_noise_bins() {
206 #if defined(WEBRTC_NS_FLOAT) 206 #if defined(WEBRTC_NS_FLOAT)
207 return WebRtcNs_num_freq(); 207 return WebRtcNs_num_freq();
208 #elif defined(WEBRTC_NS_FIXED) 208 #elif defined(WEBRTC_NS_FIXED)
209 return WebRtcNsx_num_freq(); 209 return WebRtcNsx_num_freq();
210 #endif 210 #endif
211 } 211 }
212 212
213 } // namespace webrtc 213 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698