demux: ty: fix all warnings
[vlc.git] / modules / audio_output / sndio.c
blob6b28772817cab64b84ffee9b173469f30ab2ab7f
1 /*****************************************************************************
2 * sndio.c : sndio plugin for VLC
3 *****************************************************************************
4 * Copyright (C) 2012 RĂ©mi Denis-Courmont
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 #ifdef HAVE_CONFIG_H
22 # include "config.h"
23 #endif
25 #include <math.h>
26 #include <assert.h>
28 #include <vlc_common.h>
29 #include <vlc_plugin.h>
30 #include <vlc_aout.h>
32 #include <sndio.h>
34 static int Open (vlc_object_t *);
35 static void Close (vlc_object_t *);
37 vlc_module_begin ()
38 set_shortname ("sndio")
39 set_description (N_("OpenBSD sndio audio output"))
40 set_category (CAT_AUDIO)
41 set_subcategory (SUBCAT_AUDIO_AOUT)
42 set_capability ("audio output", 120)
43 set_callbacks (Open, Close)
44 vlc_module_end ()
46 static int TimeGet (audio_output_t *, vlc_tick_t *);
47 static void Play(audio_output_t *, block_t *, vlc_tick_t);
48 static void Flush (audio_output_t *, bool);
49 static int VolumeSet (audio_output_t *, float);
50 static int MuteSet (audio_output_t *, bool);
51 static void VolumeChanged (void *, unsigned);
52 static void PositionChanged (void *, int);
54 typedef struct
56 struct sio_hdl *hdl;
57 int started;
58 int delay;
59 unsigned rate;
60 unsigned volume;
61 bool mute;
62 } aout_sys_t;
64 /** Initializes an sndio playback stream */
65 static int Start (audio_output_t *aout, audio_sample_format_t *restrict fmt)
67 aout_sys_t *sys = aout->sys;
69 if (aout_FormatNbChannels(fmt) == 0)
70 return VLC_EGENERIC;
72 sys->hdl = sio_open (NULL, SIO_PLAY, 0 /* blocking */);
73 if (sys->hdl == NULL)
75 msg_Err (aout, "cannot create audio playback stream");
76 return VLC_EGENERIC;
79 struct sio_par par;
80 sio_initpar (&par);
81 switch (fmt->i_format) {
82 case VLC_CODEC_U8:
83 par.bits = 8;
84 par.sig = 0;
85 break;
86 case VLC_CODEC_S16N:
87 par.bits = 16;
88 par.sig = 1;
89 par.le = SIO_LE_NATIVE;
90 break;
91 case VLC_CODEC_S32N:
92 case VLC_CODEC_FL32:
93 case VLC_CODEC_FL64:
94 par.bits = 32;
95 par.sig = 1;
96 par.le = SIO_LE_NATIVE;
97 break;
98 default:
99 /* use a common audio format */
100 par.bits = 16;
101 par.sig = 1;
102 par.le = SIO_LE_NATIVE;
104 par.pchan = aout_FormatNbChannels (fmt);
105 par.rate = fmt->i_rate;
106 par.round = par.rate / 50;
107 par.appbufsz = par.rate / 4;
109 if (!sio_setpar (sys->hdl, &par) || !sio_getpar (sys->hdl, &par))
111 msg_Err (aout, "cannot negotiate audio playback parameters");
112 goto error;
115 if (par.bps != par.bits >> 3 && !par.msb)
117 msg_Err (aout, "unsupported audio sample format (%u bits in %u bytes)",
118 par.bits, par.bps);
119 goto error;
121 if (par.sig != (par.bits != 8))
123 msg_Err (aout, "unsupported audio sample format (%ssigned)",
124 par.sig ? "" : "un");
125 goto error;
127 if (par.bps > 1 && par.le != SIO_LE_NATIVE)
129 msg_Err (aout, "unsupported audio sample format (%s endian)",
130 par.le ? "little" : "big");
131 goto error;
133 switch (par.bits)
135 case 8:
136 fmt->i_format = VLC_CODEC_U8;
137 break;
138 case 16:
139 fmt->i_format = VLC_CODEC_S16N;
140 break;
141 case 32:
142 fmt->i_format = VLC_CODEC_S32N;
143 break;
144 default:
145 msg_Err (aout, "unsupported audio sample format (%u bits)",
146 par.bits);
147 goto error;
150 fmt->i_rate = par.rate;
151 sys->rate = par.rate;
153 /* Channel map */
154 unsigned chans;
155 switch (par.pchan)
157 case 1:
158 chans = AOUT_CHAN_CENTER;
159 break;
160 case 2:
161 chans = AOUT_CHANS_STEREO;
162 break;
163 case 4:
164 chans = AOUT_CHANS_4_0;
165 break;
166 case 6:
167 chans = AOUT_CHANS_5_1;
168 break;
169 case 8:
170 chans = AOUT_CHANS_7_1;
171 break;
172 default:
173 msg_Err (aout, "unknown %u channels map", par.pchan);
174 goto error;
177 fmt->channel_type = AUDIO_CHANNEL_TYPE_BITMAP;
178 fmt->i_physical_channels = chans;
179 aout_FormatPrepare (fmt);
181 aout->time_get = TimeGet;
182 aout->play = Play;
183 aout->pause = aout_PauseDefault;
184 aout->flush = Flush;
185 if (sio_onvol(sys->hdl, VolumeChanged, aout))
187 aout->volume_set = VolumeSet;
188 aout->mute_set = MuteSet;
190 else
192 aout->volume_set = NULL;
193 aout->mute_set = NULL;
196 sys->started = 0;
197 sys->delay = 0;
198 sio_onmove (sys->hdl, PositionChanged, aout);
199 sio_start (sys->hdl);
200 return VLC_SUCCESS;
202 error:
203 sio_close (sys->hdl);
204 return VLC_EGENERIC;
207 static void Stop (audio_output_t *aout)
209 aout_sys_t *sys = aout->sys;
211 sio_close (sys->hdl);
214 static void PositionChanged (void *arg, int delta)
216 audio_output_t *aout = arg;
217 aout_sys_t *sys = aout->sys;
219 sys->delay -= delta;
220 sys->started = 1;
223 static int TimeGet (audio_output_t *aout, vlc_tick_t *restrict delay)
225 aout_sys_t *sys = aout->sys;
227 if (!sys->started)
228 return -1;
229 *delay = vlc_tick_from_samples(sys->delay, sys->rate);
230 return 0;
233 static void Play(audio_output_t *aout, block_t *block, vlc_tick_t date)
235 aout_sys_t *sys = aout->sys;
237 sio_write (sys->hdl, block->p_buffer, block->i_buffer);
238 sys->delay += block->i_nb_samples;
239 block_Release (block);
240 (void) date;
243 static void Flush (audio_output_t *aout, bool wait)
245 aout_sys_t *sys = aout->sys;
247 sio_stop (sys->hdl);
248 sys->started = 0;
249 sys->delay = 0;
250 sio_start (sys->hdl);
251 (void)wait;
254 static void VolumeChanged (void *arg, unsigned volume)
256 audio_output_t *aout = arg;
257 aout_sys_t *p_sys = aout->sys;
258 float fvol = (float)volume / (float)SIO_MAXVOL;
260 aout_VolumeReport (aout, fvol);
261 aout_MuteReport (aout, volume == 0);
262 if (volume) /* remember last non-zero volume to unmute later */
263 p_sys->volume = volume;
266 static int VolumeSet (audio_output_t *aout, float fvol)
268 aout_sys_t *sys = aout->sys;
269 unsigned volume;
271 if (fvol < 0)
272 fvol = 0;
273 if (fvol > 1)
274 fvol = 1;
275 volume = lroundf (fvol * SIO_MAXVOL);
276 if (!sys->mute && !sio_setvol (sys->hdl, volume))
277 return -1;
278 sys->volume = volume;
279 return 0;
282 static int MuteSet (audio_output_t *aout, bool mute)
284 aout_sys_t *sys = aout->sys;
286 if (!sio_setvol (sys->hdl, mute ? 0 : sys->volume))
287 return -1;
289 sys->mute = mute;
290 return 0;
293 static int Open (vlc_object_t *obj)
295 audio_output_t *aout = (audio_output_t *)obj;
296 aout_sys_t *sys = malloc (sizeof (*sys));
297 if (unlikely(sys == NULL))
298 return VLC_ENOMEM;
300 aout->sys = sys;
301 aout->start = Start;
302 aout->stop = Stop;
303 /* FIXME: set volume/mute here */
304 return VLC_SUCCESS;
307 static void Close (vlc_object_t *obj)
309 audio_output_t *aout = (audio_output_t *)obj;
310 aout_sys_t *sys = aout->sys;
312 free (sys);