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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_PROCESSOR_OPTIONS_H_
6 #define CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_PROCESSOR_OPTIONS_H_
7
8 #include <string>
9
10 namespace webrtc {
11
12 class AudioFrame;
13 class AudioProcessing;
14 class MediaConstraintsInterface;
15
16 }
17
18 namespace content {
19
20 using webrtc::AudioProcessing;
21 using webrtc::MediaConstraintsInterface;
22
23 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.
24 const MediaConstraintsInterface* constraints,
25 const std::string& key);
26
27 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
28
29 void EnableNoiseSuppression(AudioProcessing* audio_processing);
30
31 void EnableHighPassFilter(AudioProcessing* audio_processing);
32
33 void EnableTypingDetection(AudioProcessing* audio_processing);
34
35 void EnableExperimentalEchoCancellation(AudioProcessing* audio_processing);
36
37 void StartAecDump(AudioProcessing* audio_processin);
38
39 void StopAecDump(AudioProcessing* audio_processin);
40
41 } // namespace content
42
43 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_PROCESSOR_OPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698