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

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

Issue 1776363002: Use ProcessReverseStream in VoiceEngines OutputMixer (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@reverse2
Patch Set: Created 4 years, 9 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
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 webrtc::AudioProcessing::ChannelLayout input_layout, 50 webrtc::AudioProcessing::ChannelLayout input_layout,
51 webrtc::AudioProcessing::ChannelLayout output_layout, 51 webrtc::AudioProcessing::ChannelLayout output_layout,
52 webrtc::AudioProcessing::ChannelLayout reverse_layout)); 52 webrtc::AudioProcessing::ChannelLayout reverse_layout));
53 WEBRTC_STUB(Initialize, ( 53 WEBRTC_STUB(Initialize, (
54 const webrtc::ProcessingConfig& processing_config)); 54 const webrtc::ProcessingConfig& processing_config));
55 55
56 WEBRTC_VOID_FUNC(SetExtraOptions, (const webrtc::Config& config)) { 56 WEBRTC_VOID_FUNC(SetExtraOptions, (const webrtc::Config& config)) {
57 experimental_ns_enabled_ = config.Get<webrtc::ExperimentalNs>().enabled; 57 experimental_ns_enabled_ = config.Get<webrtc::ExperimentalNs>().enabled;
58 } 58 }
59 59
60 WEBRTC_STUB_CONST(input_sample_rate_hz, ());
61 WEBRTC_STUB_CONST(proc_sample_rate_hz, ()); 60 WEBRTC_STUB_CONST(proc_sample_rate_hz, ());
62 WEBRTC_STUB_CONST(proc_split_sample_rate_hz, ()); 61 WEBRTC_STUB_CONST(proc_split_sample_rate_hz, ());
63 size_t num_input_channels() const override { return 0; } 62 size_t num_input_channels() const override { return 0; }
64 size_t num_proc_channels() const override { return 0; } 63 size_t num_proc_channels() const override { return 0; }
65 size_t num_output_channels() const override { return 0; } 64 size_t num_output_channels() const override { return 0; }
66 size_t num_reverse_channels() const override { return 0; } 65 size_t num_reverse_channels() const override { return 0; }
67 WEBRTC_VOID_STUB(set_output_will_be_muted, (bool muted)); 66 WEBRTC_VOID_STUB(set_output_will_be_muted, (bool muted));
68 WEBRTC_STUB(ProcessStream, (webrtc::AudioFrame* frame)); 67 WEBRTC_STUB(ProcessStream, (webrtc::AudioFrame* frame));
69 WEBRTC_STUB(ProcessStream, ( 68 WEBRTC_STUB(ProcessStream, (
70 const float* const* src, 69 const float* const* src,
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
775 webrtc::VoiceEngineObserver* observer_; 774 webrtc::VoiceEngineObserver* observer_;
776 int playout_fail_channel_; 775 int playout_fail_channel_;
777 int recording_sample_rate_; 776 int recording_sample_rate_;
778 int playout_sample_rate_; 777 int playout_sample_rate_;
779 FakeAudioProcessing audio_processing_; 778 FakeAudioProcessing audio_processing_;
780 }; 779 };
781 780
782 } // namespace cricket 781 } // namespace cricket
783 782
784 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCVOICEENGINE_H_ 783 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCVOICEENGINE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698