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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 ChannelLayout input_layout, | 64 ChannelLayout input_layout, |
65 ChannelLayout output_layout, | 65 ChannelLayout output_layout, |
66 ChannelLayout reverse_layout) override; | 66 ChannelLayout reverse_layout) override; |
67 int Initialize(const ProcessingConfig& processing_config) override; | 67 int Initialize(const ProcessingConfig& processing_config) override; |
68 void SetExtraOptions(const Config& config) override; | 68 void SetExtraOptions(const Config& config) override; |
69 int set_sample_rate_hz(int rate) override; | 69 int set_sample_rate_hz(int rate) override; |
70 int input_sample_rate_hz() const override; | 70 int input_sample_rate_hz() const override; |
71 int sample_rate_hz() const override; | 71 int sample_rate_hz() const override; |
72 int proc_sample_rate_hz() const override; | 72 int proc_sample_rate_hz() const override; |
73 int proc_split_sample_rate_hz() const override; | 73 int proc_split_sample_rate_hz() const override; |
74 int num_input_channels() const override; | 74 size_t num_input_channels() const override; |
75 int num_output_channels() const override; | 75 size_t num_output_channels() const override; |
76 int num_reverse_channels() const override; | 76 size_t num_reverse_channels() const override; |
77 void set_output_will_be_muted(bool muted) override; | 77 void set_output_will_be_muted(bool muted) override; |
78 bool output_will_be_muted() const override; | 78 bool output_will_be_muted() const override; |
79 int ProcessStream(AudioFrame* frame) override; | 79 int ProcessStream(AudioFrame* frame) override; |
80 int ProcessStream(const float* const* src, | 80 int ProcessStream(const float* const* src, |
81 size_t samples_per_channel, | 81 size_t samples_per_channel, |
82 int input_sample_rate_hz, | 82 int input_sample_rate_hz, |
83 ChannelLayout input_layout, | 83 ChannelLayout input_layout, |
84 int output_sample_rate_hz, | 84 int output_sample_rate_hz, |
85 ChannelLayout output_layout, | 85 ChannelLayout output_layout, |
86 float* const* dest) override; | 86 float* const* dest) override; |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 bool transient_suppressor_enabled_; | 189 bool transient_suppressor_enabled_; |
190 rtc::scoped_ptr<TransientSuppressor> transient_suppressor_; | 190 rtc::scoped_ptr<TransientSuppressor> transient_suppressor_; |
191 const bool beamformer_enabled_; | 191 const bool beamformer_enabled_; |
192 rtc::scoped_ptr<Beamformer<float>> beamformer_; | 192 rtc::scoped_ptr<Beamformer<float>> beamformer_; |
193 const std::vector<Point> array_geometry_; | 193 const std::vector<Point> array_geometry_; |
194 }; | 194 }; |
195 | 195 |
196 } // namespace webrtc | 196 } // namespace webrtc |
197 | 197 |
198 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_PROCESSING_IMPL_H_ | 198 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_PROCESSING_IMPL_H_ |
OLD | NEW |