| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 webrtc::AudioProcessing::ChannelLayout input_layout, | 137 webrtc::AudioProcessing::ChannelLayout input_layout, |
| 138 int output_sample_rate_hz, | 138 int output_sample_rate_hz, |
| 139 webrtc::AudioProcessing::ChannelLayout output_layout, | 139 webrtc::AudioProcessing::ChannelLayout output_layout, |
| 140 float* const* dest)); | 140 float* const* dest)); |
| 141 WEBRTC_STUB(ProcessStream, | 141 WEBRTC_STUB(ProcessStream, |
| 142 (const float* const* src, | 142 (const float* const* src, |
| 143 const webrtc::StreamConfig& input_config, | 143 const webrtc::StreamConfig& input_config, |
| 144 const webrtc::StreamConfig& output_config, | 144 const webrtc::StreamConfig& output_config, |
| 145 float* const* dest)); | 145 float* const* dest)); |
| 146 WEBRTC_STUB(AnalyzeReverseStream, (webrtc::AudioFrame* frame)); | 146 WEBRTC_STUB(AnalyzeReverseStream, (webrtc::AudioFrame* frame)); |
| 147 WEBRTC_STUB(ProcessReverseStream, (webrtc::AudioFrame * frame)); |
| 147 WEBRTC_STUB(AnalyzeReverseStream, ( | 148 WEBRTC_STUB(AnalyzeReverseStream, ( |
| 148 const float* const* data, | 149 const float* const* data, |
| 149 int samples_per_channel, | 150 int samples_per_channel, |
| 150 int sample_rate_hz, | 151 int sample_rate_hz, |
| 151 webrtc::AudioProcessing::ChannelLayout layout)); | 152 webrtc::AudioProcessing::ChannelLayout layout)); |
| 153 WEBRTC_STUB(ProcessReverseStream, |
| 154 (float* const* data, |
| 155 int samples_per_channel, |
| 156 int sample_rate_hz, |
| 157 webrtc::AudioProcessing::ChannelLayout layout)); |
| 152 WEBRTC_STUB(AnalyzeReverseStream, ( | 158 WEBRTC_STUB(AnalyzeReverseStream, ( |
| 153 const float* const* data, | 159 const float* const* data, |
| 154 const webrtc::StreamConfig& reverse_config)); | 160 const webrtc::StreamConfig& reverse_config)); |
| 161 WEBRTC_STUB(ProcessReverseStream, |
| 162 (float* const* data, const webrtc::StreamConfig& reverse_config)); |
| 155 WEBRTC_STUB(set_stream_delay_ms, (int delay)); | 163 WEBRTC_STUB(set_stream_delay_ms, (int delay)); |
| 156 WEBRTC_STUB_CONST(stream_delay_ms, ()); | 164 WEBRTC_STUB_CONST(stream_delay_ms, ()); |
| 157 WEBRTC_BOOL_STUB_CONST(was_stream_delay_set, ()); | 165 WEBRTC_BOOL_STUB_CONST(was_stream_delay_set, ()); |
| 158 WEBRTC_VOID_STUB(set_stream_key_pressed, (bool key_pressed)); | 166 WEBRTC_VOID_STUB(set_stream_key_pressed, (bool key_pressed)); |
| 159 WEBRTC_BOOL_STUB_CONST(stream_key_pressed, ()); | 167 WEBRTC_BOOL_STUB_CONST(stream_key_pressed, ()); |
| 160 WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset)); | 168 WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset)); |
| 161 WEBRTC_STUB_CONST(delay_offset_ms, ()); | 169 WEBRTC_STUB_CONST(delay_offset_ms, ()); |
| 162 WEBRTC_STUB(StartDebugRecording, (const char filename[kMaxFilenameSize])); | 170 WEBRTC_STUB(StartDebugRecording, (const char filename[kMaxFilenameSize])); |
| 163 WEBRTC_STUB(StartDebugRecording, (FILE* handle)); | 171 WEBRTC_STUB(StartDebugRecording, (FILE* handle)); |
| 164 WEBRTC_STUB(StopDebugRecording, ()); | 172 WEBRTC_STUB(StopDebugRecording, ()); |
| (...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1280 DtmfInfo dtmf_info_; | 1288 DtmfInfo dtmf_info_; |
| 1281 webrtc::VoEMediaProcess* media_processor_; | 1289 webrtc::VoEMediaProcess* media_processor_; |
| 1282 FakeAudioProcessing audio_processing_; | 1290 FakeAudioProcessing audio_processing_; |
| 1283 }; | 1291 }; |
| 1284 | 1292 |
| 1285 #undef WEBRTC_CHECK_HEADER_EXTENSION_ID | 1293 #undef WEBRTC_CHECK_HEADER_EXTENSION_ID |
| 1286 | 1294 |
| 1287 } // namespace cricket | 1295 } // namespace cricket |
| 1288 | 1296 |
| 1289 #endif // TALK_SESSION_PHONE_FAKEWEBRTCVOICEENGINE_H_ | 1297 #endif // TALK_SESSION_PHONE_FAKEWEBRTCVOICEENGINE_H_ |
| OLD | NEW |