OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 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 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_BUFFER_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_BUFFER_H_ |
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_BUFFER_H_ | 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_BUFFER_H_ |
13 | 13 |
14 #include "webrtc/base/scoped_ptr.h" | 14 #include "webrtc/base/scoped_ptr.h" |
15 #include "webrtc/common_audio/channel_buffer.h" | 15 #include "webrtc/common_audio/channel_buffer.h" |
16 #include "webrtc/modules/audio_processing/include/audio_processing.h" | 16 #include "webrtc/modules/audio_processing/include/audio_processing.h" |
17 #include "webrtc/modules/audio_processing/splitting_filter.h" | 17 #include "webrtc/modules/audio_processing/splitting_filter.h" |
18 #include "webrtc/modules/interface/module_common_types.h" | 18 #include "webrtc/modules/include/module_common_types.h" |
19 #include "webrtc/system_wrappers/include/scoped_vector.h" | 19 #include "webrtc/system_wrappers/include/scoped_vector.h" |
20 #include "webrtc/typedefs.h" | 20 #include "webrtc/typedefs.h" |
21 | 21 |
22 namespace webrtc { | 22 namespace webrtc { |
23 | 23 |
24 class PushSincResampler; | 24 class PushSincResampler; |
25 class IFChannelBuffer; | 25 class IFChannelBuffer; |
26 | 26 |
27 enum Band { | 27 enum Band { |
28 kBand0To8kHz = 0, | 28 kBand0To8kHz = 0, |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 rtc::scoped_ptr<IFChannelBuffer> input_buffer_; | 154 rtc::scoped_ptr<IFChannelBuffer> input_buffer_; |
155 rtc::scoped_ptr<IFChannelBuffer> output_buffer_; | 155 rtc::scoped_ptr<IFChannelBuffer> output_buffer_; |
156 rtc::scoped_ptr<ChannelBuffer<float> > process_buffer_; | 156 rtc::scoped_ptr<ChannelBuffer<float> > process_buffer_; |
157 ScopedVector<PushSincResampler> input_resamplers_; | 157 ScopedVector<PushSincResampler> input_resamplers_; |
158 ScopedVector<PushSincResampler> output_resamplers_; | 158 ScopedVector<PushSincResampler> output_resamplers_; |
159 }; | 159 }; |
160 | 160 |
161 } // namespace webrtc | 161 } // namespace webrtc |
162 | 162 |
163 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_BUFFER_H_ | 163 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_BUFFER_H_ |
OLD | NEW |