| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_OPTIONS_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_OPTIONS_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_OPTIONS_H_ | 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_OPTIONS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "third_party/libjingle/source/talk/app/webrtc/mediastreaminterface.h" |
| 11 |
| 10 namespace blink { | 12 namespace blink { |
| 11 class WebMediaConstraints; | 13 class WebMediaConstraints; |
| 12 } | 14 } |
| 13 | 15 |
| 14 namespace webrtc { | 16 namespace webrtc { |
| 15 | 17 |
| 16 class AudioFrame; | 18 class AudioFrame; |
| 17 class AudioProcessing; | 19 class AudioProcessing; |
| 18 class MediaConstraintsInterface; | 20 class MediaConstraintsInterface; |
| 19 class TypingDetection; | 21 class TypingDetection; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 void EnableExperimentalEchoCancellation(AudioProcessing* audio_processing); | 67 void EnableExperimentalEchoCancellation(AudioProcessing* audio_processing); |
| 66 | 68 |
| 67 // Starts the echo cancellation dump in |audio_processing|. | 69 // Starts the echo cancellation dump in |audio_processing|. |
| 68 void StartAecDump(AudioProcessing* audio_processing); | 70 void StartAecDump(AudioProcessing* audio_processing); |
| 69 | 71 |
| 70 // Stops the echo cancellation dump in |audio_processing|. | 72 // Stops the echo cancellation dump in |audio_processing|. |
| 71 void StopAecDump(AudioProcessing* audio_processing); | 73 void StopAecDump(AudioProcessing* audio_processing); |
| 72 | 74 |
| 73 void EnableAutomaticGainControl(AudioProcessing* audio_processing); | 75 void EnableAutomaticGainControl(AudioProcessing* audio_processing); |
| 74 | 76 |
| 77 void GetAecStats(AudioProcessing* audio_processing, |
| 78 webrtc::AudioProcessorInterface::AudioProcessorStats* stats); |
| 79 |
| 75 } // namespace content | 80 } // namespace content |
| 76 | 81 |
| 77 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_OPTIONS_H_ | 82 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_OPTIONS_H_ |
| OLD | NEW |