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 |
11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_MOCK_AUDIO_PROCESSING_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_MOCK_AUDIO_PROCESSING_H_ |
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_MOCK_AUDIO_PROCESSING_H_ | 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_MOCK_AUDIO_PROCESSING_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
15 | 15 |
| 16 #include "webrtc/modules/audio_processing/include/aec_dump.h" |
16 #include "webrtc/modules/audio_processing/include/audio_processing.h" | 17 #include "webrtc/modules/audio_processing/include/audio_processing.h" |
17 #include "webrtc/test/gmock.h" | 18 #include "webrtc/test/gmock.h" |
18 | 19 |
19 namespace webrtc { | 20 namespace webrtc { |
20 | 21 |
21 namespace test { | 22 namespace test { |
22 | 23 |
23 class MockEchoCancellation : public EchoCancellation { | 24 class MockEchoCancellation : public EchoCancellation { |
24 public: | 25 public: |
25 virtual ~MockEchoCancellation() {} | 26 virtual ~MockEchoCancellation() {} |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 MOCK_METHOD4(ProcessReverseStream, int(const float* const* src, | 168 MOCK_METHOD4(ProcessReverseStream, int(const float* const* src, |
168 const StreamConfig& input_config, | 169 const StreamConfig& input_config, |
169 const StreamConfig& output_config, | 170 const StreamConfig& output_config, |
170 float* const* dest)); | 171 float* const* dest)); |
171 MOCK_METHOD1(set_stream_delay_ms, int(int delay)); | 172 MOCK_METHOD1(set_stream_delay_ms, int(int delay)); |
172 MOCK_CONST_METHOD0(stream_delay_ms, int()); | 173 MOCK_CONST_METHOD0(stream_delay_ms, int()); |
173 MOCK_CONST_METHOD0(was_stream_delay_set, bool()); | 174 MOCK_CONST_METHOD0(was_stream_delay_set, bool()); |
174 MOCK_METHOD1(set_stream_key_pressed, void(bool key_pressed)); | 175 MOCK_METHOD1(set_stream_key_pressed, void(bool key_pressed)); |
175 MOCK_METHOD1(set_delay_offset_ms, void(int offset)); | 176 MOCK_METHOD1(set_delay_offset_ms, void(int offset)); |
176 MOCK_CONST_METHOD0(delay_offset_ms, int()); | 177 MOCK_CONST_METHOD0(delay_offset_ms, int()); |
| 178 |
| 179 virtual void StartDebugRecording(std::unique_ptr<AecDump> aec_dump) {} |
| 180 |
177 MOCK_METHOD2(StartDebugRecording, int(const char filename[kMaxFilenameSize], | 181 MOCK_METHOD2(StartDebugRecording, int(const char filename[kMaxFilenameSize], |
178 int64_t max_log_size_bytes)); | 182 int64_t max_log_size_bytes)); |
179 MOCK_METHOD2(StartDebugRecording, int(FILE* handle, | 183 MOCK_METHOD2(StartDebugRecording, int(FILE* handle, |
180 int64_t max_log_size_bytes)); | 184 int64_t max_log_size_bytes)); |
181 MOCK_METHOD1(StartDebugRecording, int (FILE* handle)); | 185 MOCK_METHOD1(StartDebugRecording, int (FILE* handle)); |
182 MOCK_METHOD1(StartDebugRecordingForPlatformFile, | 186 MOCK_METHOD1(StartDebugRecordingForPlatformFile, |
183 int(rtc::PlatformFile handle)); | 187 int(rtc::PlatformFile handle)); |
184 MOCK_METHOD0(StopDebugRecording, int()); | 188 MOCK_METHOD0(StopDebugRecording, int()); |
185 MOCK_METHOD0(UpdateHistogramsOnCallEnd, void()); | 189 MOCK_METHOD0(UpdateHistogramsOnCallEnd, void()); |
186 MOCK_CONST_METHOD0(GetStatistics, AudioProcessingStatistics()); | 190 MOCK_CONST_METHOD0(GetStatistics, AudioProcessingStatistics()); |
(...skipping 28 matching lines...) Expand all Loading... |
215 std::unique_ptr<MockHighPassFilter> high_pass_filter_; | 219 std::unique_ptr<MockHighPassFilter> high_pass_filter_; |
216 std::unique_ptr<MockLevelEstimator> level_estimator_; | 220 std::unique_ptr<MockLevelEstimator> level_estimator_; |
217 std::unique_ptr<MockNoiseSuppression> noise_suppression_; | 221 std::unique_ptr<MockNoiseSuppression> noise_suppression_; |
218 std::unique_ptr<MockVoiceDetection> voice_detection_; | 222 std::unique_ptr<MockVoiceDetection> voice_detection_; |
219 }; | 223 }; |
220 | 224 |
221 } // namespace test | 225 } // namespace test |
222 } // namespace webrtc | 226 } // namespace webrtc |
223 | 227 |
224 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_MOCK_AUDIO_PROCESSING_H_ | 228 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_MOCK_AUDIO_PROCESSING_H_ |
OLD | NEW |