2 * Copyright (C) 2005-2006 Andre Noll <maan@systemlinux.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
19 /** \file alsa_writer.c paraslash's alsa output plugin */
22 * Based in parts on aplay.c from the alsa-utils-1.0.8 package,
23 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>, which is
24 * based on the vplay program by Michael Beck.
32 #include <alsa/asoundlib.h>
34 #include "write.cmdline.h"
37 extern struct gengetopt_args_info conf;
39 #define FORMAT SND_PCM_FORMAT_S16_LE
41 /** data specific to the alsa writer */
42 struct private_alsa_data {
44 size_t bytes_per_frame;
48 * open and prepare the PCM handle for writing
50 * Install PCM software and hardware configuration. Exit on errors.
52 static int alsa_open(struct writer_node *w)
54 snd_pcm_hw_params_t *hwparams;
55 snd_pcm_sw_params_t *swparams;
56 snd_pcm_uframes_t buffer_size, xfer_align, start_threshold,
58 unsigned buffer_time = 0;
62 snd_pcm_uframes_t period_size;
63 struct private_alsa_data *pad = para_malloc(sizeof(struct private_alsa_data));
64 w->private_data = pad;
66 snd_pcm_info_alloca(&info);
67 if (snd_output_stdio_attach(&log, stderr, 0) < 0)
69 err = snd_pcm_open(&pad->handle, conf.device_arg,
70 SND_PCM_STREAM_PLAYBACK, 0);
73 if ((err = snd_pcm_info(pad->handle, info)) < 0)
74 return -E_SND_PCM_INFO;
76 snd_pcm_hw_params_alloca(&hwparams);
77 snd_pcm_sw_params_alloca(&swparams);
78 if (snd_pcm_hw_params_any(pad->handle, hwparams) < 0)
79 return -E_BROKEN_CONF;
80 if (snd_pcm_hw_params_set_access(pad->handle, hwparams,
81 SND_PCM_ACCESS_RW_INTERLEAVED) < 0)
82 return -E_ACCESS_TYPE;
83 if (snd_pcm_hw_params_set_format(pad->handle, hwparams, FORMAT) < 0)
84 return -E_SAMPLE_FORMAT;
85 if (snd_pcm_hw_params_set_channels(pad->handle, hwparams,
86 conf.channels_arg) < 0)
87 return -E_CHANNEL_COUNT;
88 if (snd_pcm_hw_params_set_rate_near(pad->handle, hwparams,
89 (unsigned int*) &conf.sample_rate_arg, 0) < 0)
91 err = snd_pcm_hw_params_get_buffer_time_max(hwparams, &buffer_time, 0);
92 if (err < 0 || !buffer_time)
93 return -E_GET_BUFFER_TIME;
94 PARA_DEBUG_LOG("buffer time: %d\n", buffer_time);
95 if (snd_pcm_hw_params_set_buffer_time_near(pad->handle, hwparams,
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, 0);
101 snd_pcm_hw_params_get_buffer_size(hwparams, &buffer_size);
102 PARA_DEBUG_LOG("buffer size: %lu, period_size: %lu\n", buffer_size,
104 if (period_size == buffer_size)
105 return -E_BAD_PERIOD;
106 snd_pcm_sw_params_current(pad->handle, swparams);
107 err = snd_pcm_sw_params_get_xfer_align(swparams, &xfer_align);
108 if (err < 0 || !xfer_align)
110 snd_pcm_sw_params_set_avail_min(pad->handle, swparams, period_size);
111 /* round to closest transfer boundary */
112 start_threshold = (buffer_size / xfer_align) * xfer_align;
113 if (start_threshold < 1)
115 if (snd_pcm_sw_params_set_start_threshold(pad->handle, swparams,
116 start_threshold) < 0)
117 return -E_START_THRESHOLD;
118 stop_threshold = buffer_size;
119 if (snd_pcm_sw_params_set_stop_threshold(pad->handle, swparams,
121 return -E_STOP_THRESHOLD;
122 if (snd_pcm_sw_params_set_xfer_align(pad->handle, swparams,
125 if (snd_pcm_sw_params(pad->handle, swparams) < 0)
127 pad->bytes_per_frame = snd_pcm_format_physical_width(FORMAT)
128 * conf.channels_arg / 8;
129 return period_size * pad->bytes_per_frame;
133 * push out pcm frames
134 * \param data pointer do data to be written
135 * \param nbytes number of bytes (not frames)
137 * \return Number of bytes written, -E_ALSA_WRITE on errors.
139 static int alsa_write(char *data, size_t nbytes, struct writer_node *wn)
141 struct private_alsa_data *pad = wn->private_data;
142 size_t frames = nbytes / pad->bytes_per_frame;
143 unsigned char *d = (unsigned char*)data;
144 snd_pcm_sframes_t r, result = 0;
147 /* write interleaved frames */
148 r = snd_pcm_writei(pad->handle, d, frames);
150 PARA_ERROR_LOG("write error: %s\n", snd_strerror(r));
151 if (r == -EAGAIN || (r >= 0 && r < frames))
152 snd_pcm_wait(pad->handle, 1);
153 else if (r == -EPIPE)
154 snd_pcm_prepare(pad->handle);
156 return -E_ALSA_WRITE;
160 d += r * pad->bytes_per_frame;
163 return result * pad->bytes_per_frame;
166 static void alsa_close(struct writer_node *wn)
168 struct private_alsa_data *pad = wn->private_data;
169 snd_pcm_drain(pad->handle);
170 snd_pcm_close(pad->handle);
171 snd_config_update_free_global();
175 void alsa_writer_init(struct writer *w)
178 w->write = alsa_write;
179 w->close = alsa_close;
180 w->shutdown = NULL; /* nothing to do */