2 * Copyright (C) 2005-2009 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file alsa_write.c paraslash's alsa output plugin */
10 * Based in parts on aplay.c from the alsa-utils-1.0.8 package,
11 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>, which is
12 * based on the vplay program by Michael Beck.
16 #include <sys/types.h>
18 #include <alsa/asoundlib.h>
28 #include "buffer_tree.h"
30 #include "write_common.h"
31 #include "alsa_write.cmdline.h"
34 /** always use 16 bit little endian */
35 #define FORMAT SND_PCM_FORMAT_S16_LE
37 /** Data specific to the alsa writer. */
38 struct private_alsa_write_data
{
39 /** The alsa handle */
41 /** Determined and set by alsa_open(). */
42 int bytes_per_frame
; /* TODO: Kill this after btr switch */
43 /** The approximate maximum buffer duration in us. */
45 /* Number of frames that fit into the buffer. */
46 snd_pcm_uframes_t buffer_frames
;
48 * The samplerate given by command line option or the decoder
49 * of the writer node group.
53 * The number of channels, given by command line option or the
54 * decoder of the writer node group.
59 /* Install PCM software and hardware configuration. */
60 static int alsa_init(struct private_alsa_write_data
*pad
,
61 struct alsa_write_args_info
*conf
)
63 snd_pcm_hw_params_t
*hwparams
;
64 snd_pcm_sw_params_t
*swparams
;
65 snd_pcm_uframes_t start_threshold
, stop_threshold
;
66 snd_pcm_uframes_t period_size
;
69 PARA_INFO_LOG("opening %s\n", conf
->device_arg
);
70 err
= snd_pcm_open(&pad
->handle
, conf
->device_arg
,
71 SND_PCM_STREAM_PLAYBACK
, SND_PCM_NONBLOCK
);
75 snd_pcm_hw_params_alloca(&hwparams
);
76 snd_pcm_sw_params_alloca(&swparams
);
77 if (snd_pcm_hw_params_any(pad
->handle
, hwparams
) < 0)
78 return -E_BROKEN_CONF
;
79 if (snd_pcm_hw_params_set_access(pad
->handle
, hwparams
,
80 SND_PCM_ACCESS_RW_INTERLEAVED
) < 0)
81 return -E_ACCESS_TYPE
;
82 if (snd_pcm_hw_params_set_format(pad
->handle
, hwparams
, FORMAT
) < 0)
83 return -E_SAMPLE_FORMAT
;
84 if (snd_pcm_hw_params_set_channels(pad
->handle
, hwparams
,
86 return -E_CHANNEL_COUNT
;
87 if (snd_pcm_hw_params_set_rate_near(pad
->handle
, hwparams
,
88 &pad
->samplerate
, NULL
) < 0)
90 err
= snd_pcm_hw_params_get_buffer_time_max(hwparams
,
91 &pad
->buffer_time
, NULL
);
92 if (err
< 0 || !pad
->buffer_time
)
93 return -E_GET_BUFFER_TIME
;
94 PARA_INFO_LOG("buffer time: %d\n", pad
->buffer_time
);
95 if (snd_pcm_hw_params_set_buffer_time_near(pad
->handle
, hwparams
,
96 &pad
->buffer_time
, NULL
) < 0)
97 return -E_SET_BUFFER_TIME
;
98 if (snd_pcm_hw_params(pad
->handle
, hwparams
) < 0)
100 snd_pcm_hw_params_get_period_size(hwparams
, &period_size
, NULL
);
101 snd_pcm_hw_params_get_buffer_size(hwparams
, &pad
->buffer_frames
);
102 PARA_INFO_LOG("buffer size: %lu, period_size: %lu\n", pad
->buffer_frames
,
104 if (period_size
== pad
->buffer_frames
)
105 return -E_BAD_PERIOD
;
106 snd_pcm_sw_params_current(pad
->handle
, swparams
);
107 snd_pcm_sw_params_set_avail_min(pad
->handle
, swparams
, period_size
);
108 if (pad
->buffer_frames
< 1)
111 start_threshold
= PARA_MIN(pad
->buffer_frames
,
112 (snd_pcm_uframes_t
)pad
->samplerate
);
113 if (snd_pcm_sw_params_set_start_threshold(pad
->handle
, swparams
,
114 start_threshold
) < 0)
115 return -E_START_THRESHOLD
;
116 stop_threshold
= pad
->buffer_frames
;
117 if (snd_pcm_sw_params_set_stop_threshold(pad
->handle
, swparams
,
119 return -E_STOP_THRESHOLD
;
120 if (snd_pcm_sw_params(pad
->handle
, swparams
) < 0)
121 PARA_WARNING_LOG("unable to install sw params\n");
122 pad
->bytes_per_frame
= snd_pcm_format_physical_width(FORMAT
)
124 if (pad
->bytes_per_frame
<= 0)
125 return -E_PHYSICAL_WIDTH
;
126 PARA_INFO_LOG("bytes per frame: %d\n", pad
->bytes_per_frame
);
127 if (snd_pcm_nonblock(pad
->handle
, 1))
128 PARA_ERROR_LOG("failed to set nonblock mode\n");
132 /* Open an instance of the alsa writer. */
133 static int alsa_open_nobtr(struct writer_node
*wn
)
135 struct alsa_write_args_info
*conf
= wn
->conf
;
136 struct writer_node_group
*wng
= wn
->wng
;
137 struct private_alsa_write_data
*pad
= para_calloc(sizeof(*pad
));
139 wn
->private_data
= pad
;
140 if (!conf
->samplerate_given
&& wng
->samplerate
)
141 pad
->samplerate
= *wng
->samplerate
;
143 pad
->samplerate
= conf
->samplerate_arg
;
144 if (!conf
->channels_given
&& wng
->channels
)
145 pad
->channels
= *wng
->channels
;
147 pad
->channels
= conf
->channels_arg
;
148 PARA_INFO_LOG("%d channel(s), %dHz\n", pad
->channels
, pad
->samplerate
);
152 static int alsa_open_btr(struct writer_node
*wn
)
154 struct private_alsa_write_data
*pad
= para_calloc(sizeof(*pad
));
156 wn
->private_data
= pad
;
159 static int alsa_open(struct writer_node
*wn
)
162 return alsa_open_btr(wn
);
163 return alsa_open_nobtr(wn
);
166 static int alsa_write_pre_select(struct sched
*s
, struct writer_node
*wn
)
168 struct private_alsa_write_data
*pad
= wn
->private_data
;
169 struct writer_node_group
*wng
= wn
->wng
;
171 snd_pcm_sframes_t avail
, underrun
;
176 int ret
= btr_node_status(wn
->btrn
, wn
->min_iqs
, BTR_NT_LEAF
);
184 if (*wng
->loaded
- wn
->written
< pad
->bytes_per_frame
)
188 * Data is available to be written to the alsa handle. Compute number
189 * of milliseconds until next buffer underrun would occur.
191 * snd_pcm_avail_update() updates the current available count of
192 * samples for writing. It is a light method to obtain current stream
193 * position, because it does not require the user <-> kernel context
194 * switch, but the value is less accurate, because ring buffer pointers
195 * are updated in kernel drivers only when an interrupt occurs.
197 avail
= snd_pcm_avail_update(pad
->handle
);
200 underrun
= (pad
->buffer_frames
- avail
) * pad
->buffer_time
201 / pad
->buffer_frames
/ 1000;
206 ms2tv(underrun
, &tv
);
207 if (tv_diff(&s
->timeout
, &tv
, NULL
) > 0)
209 //PARA_CRIT_LOG("timout: %lu\n", tv2ms(&s->timeout));
213 static void alsa_write_pre_select_btr(struct sched
*s
, struct task
*t
)
215 struct writer_node
*wn
= container_of(t
, struct writer_node
, task
);
216 alsa_write_pre_select(s
, wn
);
219 static void xrun(snd_pcm_t
*handle
)
221 snd_pcm_status_t
*status
;
223 struct timeval tv
, diff
;
225 snd_pcm_status_alloca(&status
);
226 ret
= snd_pcm_status(handle
, status
);
229 if (snd_pcm_status_get_state(status
) != SND_PCM_STATE_XRUN
)
231 snd_pcm_status_get_trigger_tstamp(status
, &tv
);
232 tv_diff(now
, &tv
, &diff
);
233 PARA_WARNING_LOG("underrun: %lums\n", tv2ms(&diff
));
236 static int alsa_write_post_select(__a_unused
struct sched
*s
,
237 struct writer_node
*wn
)
239 struct private_alsa_write_data
*pad
= wn
->private_data
;
240 struct writer_node_group
*wng
= wn
->wng
;
241 size_t bytes
= *wng
->loaded
- wn
->written
;
242 unsigned char *data
= (unsigned char*)*wng
->bufp
+ wn
->written
;
243 snd_pcm_sframes_t ret
, frames
, avail
;
245 if (*wng
->input_error
< 0 && (!pad
->handle
|| bytes
< pad
->bytes_per_frame
)) {
246 wn
->written
= *wng
->loaded
;
247 return *wng
->input_error
;
249 if (!bytes
) /* no data available */
252 int err
= alsa_init(pad
, wn
->conf
);
256 frames
= bytes
/ pad
->bytes_per_frame
;
257 if (!frames
) /* less than a single frame available */
259 avail
= snd_pcm_avail_update(pad
->handle
);
262 frames
= PARA_MIN(frames
, avail
);
263 ret
= snd_pcm_writei(pad
->handle
, data
, frames
);
265 wn
->written
+= ret
* pad
->bytes_per_frame
;
270 snd_pcm_prepare(pad
->handle
);
273 PARA_WARNING_LOG("%s\n", snd_strerror(-ret
));
276 return -E_ALSA_WRITE
;
279 static void alsa_close(struct writer_node
*wn
)
281 struct private_alsa_write_data
*pad
= wn
->private_data
;
282 PARA_INFO_LOG("closing writer node %p\n", wn
);
286 * It's OK to have a blocking operation here because we already
287 * made sure that the PCM output buffer is (nearly) empty.
289 snd_pcm_nonblock(pad
->handle
, 0);
290 snd_pcm_drain(pad
->handle
);
291 snd_pcm_close(pad
->handle
);
292 snd_config_update_free_global();
297 static void alsa_write_post_select_btr(__a_unused
struct sched
*s
,
300 struct writer_node
*wn
= container_of(t
, struct writer_node
, task
);
301 struct private_alsa_write_data
*pad
= wn
->private_data
;
302 struct btr_node
*btrn
= wn
->btrn
;
305 snd_pcm_sframes_t frames
, avail
;
310 ret
= btr_node_status(btrn
, wn
->min_iqs
, BTR_NT_LEAF
);
313 btr_merge(btrn
, wn
->min_iqs
);
314 bytes
= btr_next_buffer(btrn
, &data
);
315 if (ret
< 0 || bytes
< pad
->bytes_per_frame
) { /* eof */
316 assert(btr_no_parent(btrn
));
320 /* wait until pending frames are played */
321 avail
= snd_pcm_avail_update(pad
->handle
);
322 if (avail
+ 1000 > pad
->buffer_frames
)
324 PARA_DEBUG_LOG("waiting for device to drain\n");
328 struct alsa_write_args_info
*conf
= wn
->conf
;
329 if (bytes
== 0) /* no data available */
332 pad
->samplerate
= conf
->samplerate_arg
;
333 pad
->channels
= conf
->channels_arg
;
334 if (!conf
->samplerate_given
) { /* config option trumps btr_exec */
336 ret
= get_btr_samplerate(btrn
, &rate
);
339 pad
->samplerate
= rate
;
341 if (!conf
->channels_given
) {
343 ret
= get_btr_channels(btrn
, &ch
);
348 PARA_INFO_LOG("%d channel(s), %dHz\n", pad
->channels
, pad
->samplerate
);
350 ret
= alsa_init(pad
, wn
->conf
);
353 wn
->min_iqs
= pad
->bytes_per_frame
;
355 frames
= bytes
/ pad
->bytes_per_frame
;
356 avail
= snd_pcm_avail_update(pad
->handle
);
359 frames
= PARA_MIN(frames
, avail
);
360 //PARA_CRIT_LOG("writing %ld frames\n", frames);
361 frames
= snd_pcm_writei(pad
->handle
, data
, frames
);
363 btr_consume(btrn
, frames
* pad
->bytes_per_frame
);
366 if (frames
== -EPIPE
) {
368 snd_pcm_prepare(pad
->handle
);
371 PARA_WARNING_LOG("%s\n", snd_strerror(-frames
));
372 if (frames
== -EAGAIN
)
380 __malloc
static void *alsa_parse_config(const char *options
)
383 struct alsa_write_args_info
*conf
384 = para_calloc(sizeof(struct alsa_write_args_info
));
386 PARA_INFO_LOG("options: %s, %zd\n", options
, strcspn(options
, " \t"));
387 ret
= alsa_cmdline_parser_string(options
, conf
, "alsa_write");
390 PARA_INFO_LOG("help given: %d\n", conf
->help_given
);
397 static void alsa_free_config(void *conf
)
399 alsa_cmdline_parser_free(conf
);
403 * The init function of the alsa writer.
405 * \param w Pointer to the writer to initialize.
407 * \sa \ref struct writer.
409 void alsa_write_init(struct writer
*w
)
411 struct alsa_write_args_info dummy
;
413 alsa_cmdline_parser_init(&dummy
);
415 w
->close
= alsa_close
;
416 w
->pre_select
= alsa_write_pre_select
;
417 w
->pre_select_btr
= alsa_write_pre_select_btr
;
418 w
->post_select
= alsa_write_post_select
;
419 w
->post_select_btr
= alsa_write_post_select_btr
;
420 w
->parse_config
= alsa_parse_config
;
421 w
->shutdown
= NULL
; /* nothing to do */
422 w
->free_config
= alsa_free_config
;
423 w
->help
= (struct ggo_help
) {
424 .short_help
= alsa_write_args_info_help
,
425 .detailed_help
= alsa_write_args_info_detailed_help
427 alsa_cmdline_parser_free(&dummy
);