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

Unified Diff: webrtc/modules/audio_processing/include/audio_processing.h

Issue 2802603003: Make GetConfig() part of the AudioProcessing interface (Closed)
Patch Set: Make the method non-pure Created 3 years, 8 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/modules/audio_processing/include/audio_processing.h
diff --git a/webrtc/modules/audio_processing/include/audio_processing.h b/webrtc/modules/audio_processing/include/audio_processing.h
index ab924b75343e5d9c086e6a689ca7726b6e830c3d..99e4b690ff52680a8226ed872c825d207f9d2901 100644
--- a/webrtc/modules/audio_processing/include/audio_processing.h
+++ b/webrtc/modules/audio_processing/include/audio_processing.h
@@ -559,6 +559,11 @@ class AudioProcessing {
virtual NoiseSuppression* noise_suppression() const = 0;
virtual VoiceDetection* voice_detection() const = 0;
+ // Returns the last applied configuration.
+ // TODO(henrik.lundin) Make this method pure virtual when downstream
+ // dependencies have been fixed.
+ virtual AudioProcessing::Config GetConfig() const;
+
enum Error {
// Fatal errors.
kNoError = 0,
« no previous file with comments | « webrtc/modules/audio_processing/audio_processing_impl.h ('k') | webrtc/modules/audio_processing/include/audio_processing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698