OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2010 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2010 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 webrtc::AudioProcessing::ChannelLayout layout)); | 86 webrtc::AudioProcessing::ChannelLayout layout)); |
87 WEBRTC_STUB(ProcessReverseStream, | 87 WEBRTC_STUB(ProcessReverseStream, |
88 (const float* const* src, | 88 (const float* const* src, |
89 const webrtc::StreamConfig& reverse_input_config, | 89 const webrtc::StreamConfig& reverse_input_config, |
90 const webrtc::StreamConfig& reverse_output_config, | 90 const webrtc::StreamConfig& reverse_output_config, |
91 float* const* dest)); | 91 float* const* dest)); |
92 WEBRTC_STUB(set_stream_delay_ms, (int delay)); | 92 WEBRTC_STUB(set_stream_delay_ms, (int delay)); |
93 WEBRTC_STUB_CONST(stream_delay_ms, ()); | 93 WEBRTC_STUB_CONST(stream_delay_ms, ()); |
94 WEBRTC_BOOL_STUB_CONST(was_stream_delay_set, ()); | 94 WEBRTC_BOOL_STUB_CONST(was_stream_delay_set, ()); |
95 WEBRTC_VOID_STUB(set_stream_key_pressed, (bool key_pressed)); | 95 WEBRTC_VOID_STUB(set_stream_key_pressed, (bool key_pressed)); |
96 WEBRTC_VOID_STUB(SetLevelControllerInitialLevel, (float level)); | |
97 WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset)); | 96 WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset)); |
98 WEBRTC_STUB_CONST(delay_offset_ms, ()); | 97 WEBRTC_STUB_CONST(delay_offset_ms, ()); |
99 WEBRTC_STUB(StartDebugRecording, | 98 WEBRTC_STUB(StartDebugRecording, |
100 (const char filename[kMaxFilenameSize], int64_t max_size_bytes)); | 99 (const char filename[kMaxFilenameSize], int64_t max_size_bytes)); |
101 WEBRTC_STUB(StartDebugRecording, (FILE * handle, int64_t max_size_bytes)); | 100 WEBRTC_STUB(StartDebugRecording, (FILE * handle, int64_t max_size_bytes)); |
102 WEBRTC_STUB(StopDebugRecording, ()); | 101 WEBRTC_STUB(StopDebugRecording, ()); |
103 WEBRTC_VOID_STUB(UpdateHistogramsOnCallEnd, ()); | 102 WEBRTC_VOID_STUB(UpdateHistogramsOnCallEnd, ()); |
104 webrtc::EchoCancellation* echo_cancellation() const override { return NULL; } | 103 webrtc::EchoCancellation* echo_cancellation() const override { return NULL; } |
105 webrtc::EchoControlMobile* echo_control_mobile() const override { | 104 webrtc::EchoControlMobile* echo_control_mobile() const override { |
106 return NULL; | 105 return NULL; |
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
560 webrtc::AecmModes aecm_mode_ = webrtc::kAecmSpeakerphone; | 559 webrtc::AecmModes aecm_mode_ = webrtc::kAecmSpeakerphone; |
561 webrtc::NsModes ns_mode_ = webrtc::kNsDefault; | 560 webrtc::NsModes ns_mode_ = webrtc::kNsDefault; |
562 webrtc::AgcModes agc_mode_ = webrtc::kAgcDefault; | 561 webrtc::AgcModes agc_mode_ = webrtc::kAgcDefault; |
563 webrtc::AgcConfig agc_config_; | 562 webrtc::AgcConfig agc_config_; |
564 FakeAudioProcessing audio_processing_; | 563 FakeAudioProcessing audio_processing_; |
565 }; | 564 }; |
566 | 565 |
567 } // namespace cricket | 566 } // namespace cricket |
568 | 567 |
569 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCVOICEENGINE_H_ | 568 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCVOICEENGINE_H_ |
OLD | NEW |