Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: webrtc/media/engine/fakewebrtcvoiceengine.h

Issue 2254973003: Added functionality for specifying the initial signal level to use for the gain estimation in the l… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/audio_processing_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/audio_processing_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698