OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // AudioInputRendererHost serves audio related requests from audio capturer | 5 // AudioInputRendererHost serves audio related requests from audio capturer |
6 // which lives inside the render process and provide access to audio hardware. | 6 // which lives inside the render process and provide access to audio hardware. |
7 // | 7 // |
8 // Create stream sequence (AudioInputController = AIC): | 8 // Create stream sequence (AudioInputController = AIC): |
9 // | 9 // |
10 // AudioInputHostMsg_CreateStream -> OnCreateStream -> AIC::CreateLowLatency -> | 10 // AudioInputHostMsg_CreateStream -> OnCreateStream -> AIC::CreateLowLatency -> |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 // Start the audio input device with the session id. If the device | 133 // Start the audio input device with the session id. If the device |
134 // starts successfully, it will trigger OnDeviceStarted() callback. | 134 // starts successfully, it will trigger OnDeviceStarted() callback. |
135 void OnStartDevice(int stream_id, int session_id); | 135 void OnStartDevice(int stream_id, int session_id); |
136 | 136 |
137 // Audio related IPC message handlers. | 137 // Audio related IPC message handlers. |
138 // Creates an audio input stream with the specified format. If this call is | 138 // Creates an audio input stream with the specified format. If this call is |
139 // successful this object would keep an internal entry of the stream for the | 139 // successful this object would keep an internal entry of the stream for the |
140 // required properties. | 140 // required properties. |
141 void OnCreateStream(int stream_id, | 141 void OnCreateStream(int stream_id, |
142 const AudioParameters& params, | 142 const AudioParameters& params, |
143 const std::string& device_id); | 143 const std::string& device_id, |
| 144 bool automatic_gain_control); |
144 | 145 |
145 // Record the audio input stream referenced by |stream_id|. | 146 // Record the audio input stream referenced by |stream_id|. |
146 void OnRecordStream(int stream_id); | 147 void OnRecordStream(int stream_id); |
147 | 148 |
148 // Close the audio stream referenced by |stream_id|. | 149 // Close the audio stream referenced by |stream_id|. |
149 void OnCloseStream(int stream_id); | 150 void OnCloseStream(int stream_id); |
150 | 151 |
151 // Set the volume of the audio stream referenced by |stream_id|. | 152 // Set the volume of the audio stream referenced by |stream_id|. |
152 void OnSetVolume(int stream_id, double volume); | 153 void OnSetVolume(int stream_id, double volume); |
153 | 154 |
154 // Get the volume of the audio stream referenced by |stream_id|. | 155 // Get the volume of the audio stream referenced by |stream_id|. |
155 void OnGetVolume(int stream_id); | 156 void OnGetVolume(int stream_id); |
156 | 157 |
| 158 // Set the automatic gain control state for the audio stream referenced |
| 159 // by |stream_id|. |
| 160 void OnSetAutomaticGainControl(int stream_id, bool enabled); |
| 161 |
157 // Complete the process of creating an audio input stream. This will set up | 162 // Complete the process of creating an audio input stream. This will set up |
158 // the shared memory or shared socket in low latency mode. | 163 // the shared memory or shared socket in low latency mode. |
159 void DoCompleteCreation(media::AudioInputController* controller); | 164 void DoCompleteCreation(media::AudioInputController* controller); |
160 | 165 |
161 // Send a state change message to the renderer. | 166 // Send a state change message to the renderer. |
162 void DoSendRecordingMessage(media::AudioInputController* controller); | 167 void DoSendRecordingMessage(media::AudioInputController* controller); |
163 void DoSendPausedMessage(media::AudioInputController* controller); | 168 void DoSendPausedMessage(media::AudioInputController* controller); |
164 | 169 |
165 // Handle error coming from audio stream. | 170 // Handle error coming from audio stream. |
166 void DoHandleError(media::AudioInputController* controller, int error_code); | 171 void DoHandleError(media::AudioInputController* controller, int error_code); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 AudioEntryMap audio_entries_; | 214 AudioEntryMap audio_entries_; |
210 | 215 |
211 // A map of session IDs to audio session sources. | 216 // A map of session IDs to audio session sources. |
212 typedef std::map<int, int> SessionEntryMap; | 217 typedef std::map<int, int> SessionEntryMap; |
213 SessionEntryMap session_entries_; | 218 SessionEntryMap session_entries_; |
214 | 219 |
215 DISALLOW_COPY_AND_ASSIGN(AudioInputRendererHost); | 220 DISALLOW_COPY_AND_ASSIGN(AudioInputRendererHost); |
216 }; | 221 }; |
217 | 222 |
218 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_INPUT_RENDERER_HOST_H_ | 223 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_INPUT_RENDERER_HOST_H_ |
OLD | NEW |