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

Unified Diff: webrtc/audio/audio_state.h

Issue 2961723004: Allow an external audio processing module to be used in WebRTC (Closed)
Patch Set: Allow an external audio processing module to be used in WebRTC Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/audio/audio_state.h
diff --git a/webrtc/audio/audio_state.h b/webrtc/audio/audio_state.h
index 29b5a9edbf2591267777f796d51439159318b0bb..f3f2828c7f20aa5c3ead36309f660326bf3f0089 100644
--- a/webrtc/audio/audio_state.h
+++ b/webrtc/audio/audio_state.h
@@ -28,8 +28,14 @@ class AudioState final : public webrtc::AudioState,
explicit AudioState(const AudioState::Config& config);
~AudioState() override;
- VoiceEngine* voice_engine();
+ // TODO(peah): Remove the conditional in the audio_transport_proxy_
+ // constructor call when upstream dependencies have properly been resolved.
the sun 2017/06/29 10:41:52 comment is not right, mentioning transport proxy c
peah-webrtc 2017/06/29 11:46:31 Done.
+ AudioProcessing* audio_processing() override {
+ return config_.audio_processing ? config_.audio_processing.get()
+ : voe_base_->audio_processing();
+ }
+ VoiceEngine* voice_engine();
rtc::scoped_refptr<AudioMixer> mixer();
bool typing_noise_detected() const;

Powered by Google App Engine
This is Rietveld 408576698