| 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 namespace blink { | 10 namespace blink { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 | 61 |
| 62 // Enables the experimental echo cancellation in |audio_processing|. | 62 // Enables the experimental echo cancellation in |audio_processing|. |
| 63 void EnableExperimentalEchoCancellation(AudioProcessing* audio_processing); | 63 void EnableExperimentalEchoCancellation(AudioProcessing* audio_processing); |
| 64 | 64 |
| 65 // Starts the echo cancellation dump in |audio_processing|. | 65 // Starts the echo cancellation dump in |audio_processing|. |
| 66 void StartAecDump(AudioProcessing* audio_processing); | 66 void StartAecDump(AudioProcessing* audio_processing); |
| 67 | 67 |
| 68 // Stops the echo cancellation dump in |audio_processing|. | 68 // Stops the echo cancellation dump in |audio_processing|. |
| 69 void StopAecDump(AudioProcessing* audio_processing); | 69 void StopAecDump(AudioProcessing* audio_processing); |
| 70 | 70 |
| 71 void EnableAutomaticGainControl(AudioProcessing* audio_processing); | |
| 72 | |
| 73 } // namespace content | 71 } // namespace content |
| 74 | 72 |
| 75 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_OPTIONS_H_ | 73 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_OPTIONS_H_ |
| OLD | NEW |