OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 gain_control_(new MockGainControl), | 172 gain_control_(new MockGainControl), |
173 high_pass_filter_(new MockHighPassFilter), | 173 high_pass_filter_(new MockHighPassFilter), |
174 level_estimator_(new MockLevelEstimator), | 174 level_estimator_(new MockLevelEstimator), |
175 noise_suppression_(new MockNoiseSuppression), | 175 noise_suppression_(new MockNoiseSuppression), |
176 voice_detection_(new MockVoiceDetection) { | 176 voice_detection_(new MockVoiceDetection) { |
177 } | 177 } |
178 | 178 |
179 virtual ~MockAudioProcessing() { | 179 virtual ~MockAudioProcessing() { |
180 } | 180 } |
181 | 181 |
| 182 MOCK_METHOD1(ApplySettings, int(const ApmSettings& settings)); |
182 MOCK_METHOD0(Initialize, | 183 MOCK_METHOD0(Initialize, |
183 int()); | 184 int()); |
184 MOCK_METHOD6(Initialize, | 185 MOCK_METHOD6(Initialize, |
185 int(int sample_rate_hz, | 186 int(int sample_rate_hz, |
186 int output_sample_rate_hz, | 187 int output_sample_rate_hz, |
187 int reverse_sample_rate_hz, | 188 int reverse_sample_rate_hz, |
188 ChannelLayout input_layout, | 189 ChannelLayout input_layout, |
189 ChannelLayout output_layout, | 190 ChannelLayout output_layout, |
190 ChannelLayout reverse_layout)); | 191 ChannelLayout reverse_layout)); |
191 MOCK_METHOD1(Initialize, | 192 MOCK_METHOD1(Initialize, |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 std::unique_ptr<MockGainControl> gain_control_; | 289 std::unique_ptr<MockGainControl> gain_control_; |
289 std::unique_ptr<MockHighPassFilter> high_pass_filter_; | 290 std::unique_ptr<MockHighPassFilter> high_pass_filter_; |
290 std::unique_ptr<MockLevelEstimator> level_estimator_; | 291 std::unique_ptr<MockLevelEstimator> level_estimator_; |
291 std::unique_ptr<MockNoiseSuppression> noise_suppression_; | 292 std::unique_ptr<MockNoiseSuppression> noise_suppression_; |
292 std::unique_ptr<MockVoiceDetection> voice_detection_; | 293 std::unique_ptr<MockVoiceDetection> voice_detection_; |
293 }; | 294 }; |
294 | 295 |
295 } // namespace webrtc | 296 } // namespace webrtc |
296 | 297 |
297 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_MOCK_AUDIO_PROCESSING_H_ | 298 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_MOCK_AUDIO_PROCESSING_H_ |
OLD | NEW |