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...) 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)); |
96 WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset)); | 97 WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset)); |
97 WEBRTC_STUB_CONST(delay_offset_ms, ()); | 98 WEBRTC_STUB_CONST(delay_offset_ms, ()); |
98 WEBRTC_STUB(StartDebugRecording, | 99 WEBRTC_STUB(StartDebugRecording, |
99 (const char filename[kMaxFilenameSize], int64_t max_size_bytes)); | 100 (const char filename[kMaxFilenameSize], int64_t max_size_bytes)); |
100 WEBRTC_STUB(StartDebugRecording, (FILE * handle, int64_t max_size_bytes)); | 101 WEBRTC_STUB(StartDebugRecording, (FILE * handle, int64_t max_size_bytes)); |
101 WEBRTC_STUB(StopDebugRecording, ()); | 102 WEBRTC_STUB(StopDebugRecording, ()); |
102 WEBRTC_VOID_STUB(UpdateHistogramsOnCallEnd, ()); | 103 WEBRTC_VOID_STUB(UpdateHistogramsOnCallEnd, ()); |
103 webrtc::EchoCancellation* echo_cancellation() const override { return NULL; } | 104 webrtc::EchoCancellation* echo_cancellation() const override { return NULL; } |
104 webrtc::EchoControlMobile* echo_control_mobile() const override { | 105 webrtc::EchoControlMobile* echo_control_mobile() const override { |
105 return NULL; | 106 return NULL; |
(...skipping 453 matching lines...) Loading... |
559 webrtc::AecmModes aecm_mode_ = webrtc::kAecmSpeakerphone; | 560 webrtc::AecmModes aecm_mode_ = webrtc::kAecmSpeakerphone; |
560 webrtc::NsModes ns_mode_ = webrtc::kNsDefault; | 561 webrtc::NsModes ns_mode_ = webrtc::kNsDefault; |
561 webrtc::AgcModes agc_mode_ = webrtc::kAgcDefault; | 562 webrtc::AgcModes agc_mode_ = webrtc::kAgcDefault; |
562 webrtc::AgcConfig agc_config_; | 563 webrtc::AgcConfig agc_config_; |
563 FakeAudioProcessing audio_processing_; | 564 FakeAudioProcessing audio_processing_; |
564 }; | 565 }; |
565 | 566 |
566 } // namespace cricket | 567 } // namespace cricket |
567 | 568 |
568 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCVOICEENGINE_H_ | 569 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCVOICEENGINE_H_ |
OLD | NEW |