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

Unified Diff: content/renderer/media/webrtc_audio_processor_options.h

Issue 54383003: Added an "enable-audio-processor" flag and WebRtcAudioProcessor class (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed the comments. Created 7 years, 1 month 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: content/renderer/media/webrtc_audio_processor_options.h
diff --git a/content/renderer/media/webrtc_audio_processor_options.h b/content/renderer/media/webrtc_audio_processor_options.h
new file mode 100644
index 0000000000000000000000000000000000000000..3e5a2e4ae0af1cafde12f4ef9212bfcdd853bc3b
--- /dev/null
+++ b/content/renderer/media/webrtc_audio_processor_options.h
@@ -0,0 +1,43 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_PROCESSOR_OPTIONS_H_
+#define CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_PROCESSOR_OPTIONS_H_
+
+#include <string>
+
+namespace webrtc {
+
+class AudioFrame;
+class AudioProcessing;
+class MediaConstraintsInterface;
+
+}
+
+namespace content {
+
+using webrtc::AudioProcessing;
+using webrtc::MediaConstraintsInterface;
+
+bool GetPropertyFromConstraints(
Jói 2013/11/08 13:36:40 All of these methods need comments.
no longer working on chromium 2013/11/08 15:39:30 Done.
+ const MediaConstraintsInterface* constraints,
+ const std::string& key);
+
+void EnableEchoCancellation(AudioProcessing* audio_processing);
Jói 2013/11/08 13:36:40 I guess I don't understand the motivation here wel
no longer working on chromium 2013/11/08 15:39:30 AudioProcessing is the webrtc components which doe
+
+void EnableNoiseSuppression(AudioProcessing* audio_processing);
+
+void EnableHighPassFilter(AudioProcessing* audio_processing);
+
+void EnableTypingDetection(AudioProcessing* audio_processing);
+
+void EnableExperimentalEchoCancellation(AudioProcessing* audio_processing);
+
+void StartAecDump(AudioProcessing* audio_processin);
+
+void StopAecDump(AudioProcessing* audio_processin);
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_PROCESSOR_OPTIONS_H_

Powered by Google App Engine
This is Rietveld 408576698