Add ICU message format support
[chromium-blink-merge.git] / media / audio / pulse / pulse_util.cc
blobee37c03829b3e1715307d3935b731404520ab45a
1 // Copyright (c) 2012 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.
5 #include "media/audio/pulse/pulse_util.h"
7 #include "base/logging.h"
8 #include "base/time/time.h"
9 #include "media/audio/audio_manager_base.h"
10 #include "media/audio/audio_parameters.h"
12 namespace media {
14 namespace pulse {
16 namespace {
18 #if defined(GOOGLE_CHROME_BUILD)
19 static const char kBrowserDisplayName[] = "google-chrome";
20 #else
21 static const char kBrowserDisplayName[] = "chromium-browser";
22 #endif
24 pa_channel_position ChromiumToPAChannelPosition(Channels channel) {
25 switch (channel) {
26 // PulseAudio does not differentiate between left/right and
27 // stereo-left/stereo-right, both translate to front-left/front-right.
28 case LEFT:
29 return PA_CHANNEL_POSITION_FRONT_LEFT;
30 case RIGHT:
31 return PA_CHANNEL_POSITION_FRONT_RIGHT;
32 case CENTER:
33 return PA_CHANNEL_POSITION_FRONT_CENTER;
34 case LFE:
35 return PA_CHANNEL_POSITION_LFE;
36 case BACK_LEFT:
37 return PA_CHANNEL_POSITION_REAR_LEFT;
38 case BACK_RIGHT:
39 return PA_CHANNEL_POSITION_REAR_RIGHT;
40 case LEFT_OF_CENTER:
41 return PA_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER;
42 case RIGHT_OF_CENTER:
43 return PA_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER;
44 case BACK_CENTER:
45 return PA_CHANNEL_POSITION_REAR_CENTER;
46 case SIDE_LEFT:
47 return PA_CHANNEL_POSITION_SIDE_LEFT;
48 case SIDE_RIGHT:
49 return PA_CHANNEL_POSITION_SIDE_RIGHT;
50 default:
51 NOTREACHED() << "Invalid channel: " << channel;
52 return PA_CHANNEL_POSITION_INVALID;
56 class ScopedPropertyList {
57 public:
58 ScopedPropertyList() : property_list_(pa_proplist_new()) {}
59 ~ScopedPropertyList() { pa_proplist_free(property_list_); }
61 pa_proplist* get() const { return property_list_; }
63 private:
64 pa_proplist* property_list_;
65 DISALLOW_COPY_AND_ASSIGN(ScopedPropertyList);
68 } // namespace
70 // static, pa_stream_success_cb_t
71 void StreamSuccessCallback(pa_stream* s, int error, void* mainloop) {
72 pa_threaded_mainloop* pa_mainloop =
73 static_cast<pa_threaded_mainloop*>(mainloop);
74 pa_threaded_mainloop_signal(pa_mainloop, 0);
77 // |pa_context| and |pa_stream| state changed cb.
78 void ContextStateCallback(pa_context* context, void* mainloop) {
79 pa_threaded_mainloop* pa_mainloop =
80 static_cast<pa_threaded_mainloop*>(mainloop);
81 pa_threaded_mainloop_signal(pa_mainloop, 0);
84 pa_sample_format_t BitsToPASampleFormat(int bits_per_sample) {
85 switch (bits_per_sample) {
86 case 8:
87 return PA_SAMPLE_U8;
88 case 16:
89 return PA_SAMPLE_S16LE;
90 case 24:
91 return PA_SAMPLE_S24LE;
92 case 32:
93 return PA_SAMPLE_S32LE;
94 default:
95 NOTREACHED() << "Invalid bits per sample: " << bits_per_sample;
96 return PA_SAMPLE_INVALID;
100 pa_channel_map ChannelLayoutToPAChannelMap(ChannelLayout channel_layout) {
101 pa_channel_map channel_map;
102 if (channel_layout == CHANNEL_LAYOUT_MONO) {
103 // CHANNEL_LAYOUT_MONO only specifies audio on the C channel, but we
104 // want PulseAudio to play single-channel audio on more than just that.
105 pa_channel_map_init_mono(&channel_map);
106 } else {
107 pa_channel_map_init(&channel_map);
109 channel_map.channels = ChannelLayoutToChannelCount(channel_layout);
110 for (Channels ch = LEFT; ch <= CHANNELS_MAX;
111 ch = static_cast<Channels>(ch + 1)) {
112 int channel_index = ChannelOrder(channel_layout, ch);
113 if (channel_index < 0)
114 continue;
116 channel_map.map[channel_index] = ChromiumToPAChannelPosition(ch);
120 return channel_map;
123 void WaitForOperationCompletion(pa_threaded_mainloop* pa_mainloop,
124 pa_operation* operation) {
125 if (!operation) {
126 DLOG(WARNING) << "Operation is NULL";
127 return;
130 while (pa_operation_get_state(operation) == PA_OPERATION_RUNNING)
131 pa_threaded_mainloop_wait(pa_mainloop);
133 pa_operation_unref(operation);
136 int GetHardwareLatencyInBytes(pa_stream* stream,
137 int sample_rate,
138 int bytes_per_frame) {
139 DCHECK(stream);
140 int negative = 0;
141 pa_usec_t latency_micros = 0;
142 if (pa_stream_get_latency(stream, &latency_micros, &negative) != 0)
143 return 0;
145 if (negative)
146 return 0;
148 return latency_micros * sample_rate * bytes_per_frame /
149 base::Time::kMicrosecondsPerSecond;
152 // Helper macro for CreateInput/OutputStream() to avoid code spam and
153 // string bloat.
154 #define RETURN_ON_FAILURE(expression, message) do { \
155 if (!(expression)) { \
156 DLOG(ERROR) << message; \
157 return false; \
159 } while(0)
161 bool CreateInputStream(pa_threaded_mainloop* mainloop,
162 pa_context* context,
163 pa_stream** stream,
164 const AudioParameters& params,
165 const std::string& device_id,
166 pa_stream_notify_cb_t stream_callback,
167 void* user_data) {
168 DCHECK(mainloop);
169 DCHECK(context);
171 // Set sample specifications.
172 pa_sample_spec sample_specifications;
173 sample_specifications.format = BitsToPASampleFormat(
174 params.bits_per_sample());
175 sample_specifications.rate = params.sample_rate();
176 sample_specifications.channels = params.channels();
178 // Get channel mapping and open recording stream.
179 pa_channel_map source_channel_map = ChannelLayoutToPAChannelMap(
180 params.channel_layout());
181 pa_channel_map* map = (source_channel_map.channels != 0) ?
182 &source_channel_map : NULL;
184 // Create a new recording stream and
185 // tells PulseAudio what the stream icon should be.
186 ScopedPropertyList property_list;
187 pa_proplist_sets(property_list.get(), PA_PROP_APPLICATION_ICON_NAME,
188 kBrowserDisplayName);
189 *stream = pa_stream_new_with_proplist(context, "RecordStream",
190 &sample_specifications, map,
191 property_list.get());
192 RETURN_ON_FAILURE(*stream, "failed to create PA recording stream");
194 pa_stream_set_state_callback(*stream, stream_callback, user_data);
196 // Set server-side capture buffer metrics. Detailed documentation on what
197 // values should be chosen can be found at
198 // freedesktop.org/software/pulseaudio/doxygen/structpa__buffer__attr.html.
199 pa_buffer_attr buffer_attributes;
200 const unsigned int buffer_size = params.GetBytesPerBuffer();
201 buffer_attributes.maxlength = static_cast<uint32_t>(-1);
202 buffer_attributes.tlength = buffer_size;
203 buffer_attributes.minreq = buffer_size;
204 buffer_attributes.prebuf = static_cast<uint32_t>(-1);
205 buffer_attributes.fragsize = buffer_size;
206 int flags = PA_STREAM_AUTO_TIMING_UPDATE |
207 PA_STREAM_INTERPOLATE_TIMING |
208 PA_STREAM_ADJUST_LATENCY |
209 PA_STREAM_START_CORKED;
210 RETURN_ON_FAILURE(
211 pa_stream_connect_record(
212 *stream,
213 device_id == AudioManagerBase::kDefaultDeviceId ?
214 NULL : device_id.c_str(),
215 &buffer_attributes,
216 static_cast<pa_stream_flags_t>(flags)) == 0,
217 "pa_stream_connect_record FAILED ");
219 // Wait for the stream to be ready.
220 while (true) {
221 pa_stream_state_t stream_state = pa_stream_get_state(*stream);
222 RETURN_ON_FAILURE(
223 PA_STREAM_IS_GOOD(stream_state), "Invalid PulseAudio stream state");
224 if (stream_state == PA_STREAM_READY)
225 break;
226 pa_threaded_mainloop_wait(mainloop);
229 return true;
232 bool CreateOutputStream(pa_threaded_mainloop** mainloop,
233 pa_context** context,
234 pa_stream** stream,
235 const AudioParameters& params,
236 const std::string& device_id,
237 pa_stream_notify_cb_t stream_callback,
238 pa_stream_request_cb_t write_callback,
239 void* user_data) {
240 DCHECK(!*mainloop);
241 DCHECK(!*context);
243 *mainloop = pa_threaded_mainloop_new();
244 RETURN_ON_FAILURE(*mainloop, "Failed to create PulseAudio main loop.");
246 pa_mainloop_api* pa_mainloop_api = pa_threaded_mainloop_get_api(*mainloop);
247 *context = pa_context_new(pa_mainloop_api, "Chromium");
248 RETURN_ON_FAILURE(*context, "Failed to create PulseAudio context.");
250 // A state callback must be set before calling pa_threaded_mainloop_lock() or
251 // pa_threaded_mainloop_wait() calls may lead to dead lock.
252 pa_context_set_state_callback(*context, &ContextStateCallback, *mainloop);
254 // Lock the main loop while setting up the context. Failure to do so may lead
255 // to crashes as the PulseAudio thread tries to run before things are ready.
256 AutoPulseLock auto_lock(*mainloop);
258 RETURN_ON_FAILURE(pa_threaded_mainloop_start(*mainloop) == 0,
259 "Failed to start PulseAudio main loop.");
260 RETURN_ON_FAILURE(
261 pa_context_connect(*context, NULL, PA_CONTEXT_NOAUTOSPAWN, NULL) == 0,
262 "Failed to connect PulseAudio context.");
264 // Wait until |pa_context_| is ready. pa_threaded_mainloop_wait() must be
265 // called after pa_context_get_state() in case the context is already ready,
266 // otherwise pa_threaded_mainloop_wait() will hang indefinitely.
267 while (true) {
268 pa_context_state_t context_state = pa_context_get_state(*context);
269 RETURN_ON_FAILURE(
270 PA_CONTEXT_IS_GOOD(context_state), "Invalid PulseAudio context state.");
271 if (context_state == PA_CONTEXT_READY)
272 break;
273 pa_threaded_mainloop_wait(*mainloop);
276 // Set sample specifications.
277 pa_sample_spec sample_specifications;
278 sample_specifications.format = BitsToPASampleFormat(
279 params.bits_per_sample());
280 sample_specifications.rate = params.sample_rate();
281 sample_specifications.channels = params.channels();
283 // Get channel mapping.
284 pa_channel_map* map = NULL;
285 pa_channel_map source_channel_map = ChannelLayoutToPAChannelMap(
286 params.channel_layout());
287 if (source_channel_map.channels != 0) {
288 // The source data uses a supported channel map so we will use it rather
289 // than the default channel map (NULL).
290 map = &source_channel_map;
293 // Open playback stream and
294 // tell PulseAudio what the stream icon should be.
295 ScopedPropertyList property_list;
296 pa_proplist_sets(property_list.get(), PA_PROP_APPLICATION_ICON_NAME,
297 kBrowserDisplayName);
298 *stream = pa_stream_new_with_proplist(
299 *context, "Playback", &sample_specifications, map, property_list.get());
300 RETURN_ON_FAILURE(*stream, "failed to create PA playback stream");
302 pa_stream_set_state_callback(*stream, stream_callback, user_data);
304 // Even though we start the stream corked above, PulseAudio will issue one
305 // stream request after setup. write_callback() must fulfill the write.
306 pa_stream_set_write_callback(*stream, write_callback, user_data);
308 // Pulse is very finicky with the small buffer sizes used by Chrome. The
309 // settings below are mostly found through trial and error. Essentially we
310 // want Pulse to auto size its internal buffers, but call us back nearly every
311 // |minreq| bytes. |tlength| should be a multiple of |minreq|; too low and
312 // Pulse will issue callbacks way too fast, too high and we don't get
313 // callbacks frequently enough.
315 // Setting |minreq| to the exact buffer size leads to more callbacks than
316 // necessary, so we've clipped it to half the buffer size. Regardless of the
317 // requested amount, we'll always fill |params.GetBytesPerBuffer()| though.
318 pa_buffer_attr pa_buffer_attributes;
319 pa_buffer_attributes.maxlength = static_cast<uint32_t>(-1);
320 pa_buffer_attributes.minreq = params.GetBytesPerBuffer() / 2;
321 pa_buffer_attributes.prebuf = static_cast<uint32_t>(-1);
322 pa_buffer_attributes.tlength = params.GetBytesPerBuffer() * 3;
323 pa_buffer_attributes.fragsize = static_cast<uint32_t>(-1);
325 // Connect playback stream. Like pa_buffer_attr, the pa_stream_flags have a
326 // huge impact on the performance of the stream and were chosen through trial
327 // and error.
328 RETURN_ON_FAILURE(
329 pa_stream_connect_playback(
330 *stream,
331 device_id == AudioManagerBase::kDefaultDeviceId ?
332 NULL : device_id.c_str(),
333 &pa_buffer_attributes,
334 static_cast<pa_stream_flags_t>(
335 PA_STREAM_INTERPOLATE_TIMING | PA_STREAM_ADJUST_LATENCY |
336 PA_STREAM_AUTO_TIMING_UPDATE | PA_STREAM_NOT_MONOTONIC |
337 PA_STREAM_START_CORKED),
338 NULL,
339 NULL) == 0,
340 "pa_stream_connect_playback FAILED ");
342 // Wait for the stream to be ready.
343 while (true) {
344 pa_stream_state_t stream_state = pa_stream_get_state(*stream);
345 RETURN_ON_FAILURE(
346 PA_STREAM_IS_GOOD(stream_state), "Invalid PulseAudio stream state");
347 if (stream_state == PA_STREAM_READY)
348 break;
349 pa_threaded_mainloop_wait(*mainloop);
352 return true;
355 #undef RETURN_ON_FAILURE
357 } // namespace pulse
359 } // namespace media