OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2010 Google Inc. | 3 * Copyright 2010 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 WEBRTC_STUB(set_stream_delay_ms, (int delay)); | 145 WEBRTC_STUB(set_stream_delay_ms, (int delay)); |
146 WEBRTC_STUB_CONST(stream_delay_ms, ()); | 146 WEBRTC_STUB_CONST(stream_delay_ms, ()); |
147 WEBRTC_BOOL_STUB_CONST(was_stream_delay_set, ()); | 147 WEBRTC_BOOL_STUB_CONST(was_stream_delay_set, ()); |
148 WEBRTC_VOID_STUB(set_stream_key_pressed, (bool key_pressed)); | 148 WEBRTC_VOID_STUB(set_stream_key_pressed, (bool key_pressed)); |
149 WEBRTC_BOOL_STUB_CONST(stream_key_pressed, ()); | 149 WEBRTC_BOOL_STUB_CONST(stream_key_pressed, ()); |
150 WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset)); | 150 WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset)); |
151 WEBRTC_STUB_CONST(delay_offset_ms, ()); | 151 WEBRTC_STUB_CONST(delay_offset_ms, ()); |
152 WEBRTC_STUB(StartDebugRecording, (const char filename[kMaxFilenameSize])); | 152 WEBRTC_STUB(StartDebugRecording, (const char filename[kMaxFilenameSize])); |
153 WEBRTC_STUB(StartDebugRecording, (FILE* handle)); | 153 WEBRTC_STUB(StartDebugRecording, (FILE* handle)); |
154 WEBRTC_STUB(StopDebugRecording, ()); | 154 WEBRTC_STUB(StopDebugRecording, ()); |
| 155 WEBRTC_VOID_STUB(UpdateHistogramsOnCallEnd, ()); |
155 webrtc::EchoCancellation* echo_cancellation() const override { return NULL; } | 156 webrtc::EchoCancellation* echo_cancellation() const override { return NULL; } |
156 webrtc::EchoControlMobile* echo_control_mobile() const override { | 157 webrtc::EchoControlMobile* echo_control_mobile() const override { |
157 return NULL; | 158 return NULL; |
158 } | 159 } |
159 webrtc::GainControl* gain_control() const override { return NULL; } | 160 webrtc::GainControl* gain_control() const override { return NULL; } |
160 webrtc::HighPassFilter* high_pass_filter() const override { return NULL; } | 161 webrtc::HighPassFilter* high_pass_filter() const override { return NULL; } |
161 webrtc::LevelEstimator* level_estimator() const override { return NULL; } | 162 webrtc::LevelEstimator* level_estimator() const override { return NULL; } |
162 webrtc::NoiseSuppression* noise_suppression() const override { return NULL; } | 163 webrtc::NoiseSuppression* noise_suppression() const override { return NULL; } |
163 webrtc::VoiceDetection* voice_detection() const override { return NULL; } | 164 webrtc::VoiceDetection* voice_detection() const override { return NULL; } |
164 | 165 |
(...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1269 DtmfInfo dtmf_info_; | 1270 DtmfInfo dtmf_info_; |
1270 webrtc::VoEMediaProcess* media_processor_; | 1271 webrtc::VoEMediaProcess* media_processor_; |
1271 FakeAudioProcessing audio_processing_; | 1272 FakeAudioProcessing audio_processing_; |
1272 }; | 1273 }; |
1273 | 1274 |
1274 #undef WEBRTC_CHECK_HEADER_EXTENSION_ID | 1275 #undef WEBRTC_CHECK_HEADER_EXTENSION_ID |
1275 | 1276 |
1276 } // namespace cricket | 1277 } // namespace cricket |
1277 | 1278 |
1278 #endif // TALK_SESSION_PHONE_FAKEWEBRTCVOICEENGINE_H_ | 1279 #endif // TALK_SESSION_PHONE_FAKEWEBRTCVOICEENGINE_H_ |
OLD | NEW |