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

Unified Diff: webrtc/voice_engine/include/voe_hardware.h

Issue 1344563002: Improving support for Android Audio Effects in WebRTC (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Improved comments Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/audio_device/include/fake_audio_device.h ('k') | webrtc/voice_engine/voe_hardware_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/include/voe_hardware.h
diff --git a/webrtc/voice_engine/include/voe_hardware.h b/webrtc/voice_engine/include/voe_hardware.h
index a75230cfdce7331096501bf7302d302fb2478538..fcf009dc75bcf8109acde9e4a48d79f4895eb642 100644
--- a/webrtc/voice_engine/include/voe_hardware.h
+++ b/webrtc/voice_engine/include/voe_hardware.h
@@ -91,8 +91,13 @@ class WEBRTC_DLLEXPORT VoEHardware {
virtual int SetPlayoutSampleRate(unsigned int samples_per_sec) = 0;
virtual int PlayoutSampleRate(unsigned int* samples_per_sec) const = 0;
+ // Queries and controls platform audio effects on Android devices.
virtual bool BuiltInAECIsAvailable() const = 0;
virtual int EnableBuiltInAEC(bool enable) = 0;
+ virtual bool BuiltInAGCIsAvailable() const = 0;
+ virtual int EnableBuiltInAGC(bool enable) = 0;
+ virtual bool BuiltInNSIsAvailable() const = 0;
+ virtual int EnableBuiltInNS(bool enable) = 0;
protected:
VoEHardware() {}
« no previous file with comments | « webrtc/modules/audio_device/include/fake_audio_device.h ('k') | webrtc/voice_engine/voe_hardware_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698