]> git.sesse.net Git - vlc/blob - modules/audio_output/alsa.c
ALSA: only append AES parameters to iec958 and hdmi plugs
[vlc] / modules / audio_output / alsa.c
1 /*****************************************************************************
2  * alsa.c : alsa plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2010 VLC authors and VideoLAN
5  * Copyright (C) 2009-2011 RĂ©mi Denis-Courmont
6  *
7  * Authors: Henri Fallon <henri@videolan.org> - Original Author
8  *          Jeffrey Baker <jwbaker@acm.org> - Port to ALSA 1.0 API
9  *          John Paul Lorenti <jpl31@columbia.edu> - Device selection
10  *          Arnaud de Bossoreille de Ribou <bozo@via.ecp.fr> - S/PDIF and aout3
11  *
12  * This program is free software; you can redistribute it and/or modify it
13  * under the terms of the GNU Lesser General Public License as published by
14  * the Free Software Foundation; either version 2.1 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public License
23  * along with this program; if not, write to the Free Software Foundation,
24  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <assert.h>
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <vlc_dialog.h>
36 #include <vlc_aout.h>
37 #include <vlc_cpu.h>
38
39 #include <alsa/asoundlib.h>
40 #include <alsa/version.h>
41
42 /** Private data for an ALSA PCM playback stream */
43 struct aout_sys_t
44 {
45     snd_pcm_t *pcm;
46     unsigned rate; /**< Sample rate */
47     vlc_fourcc_t format; /**< Sample format */
48     uint8_t chans_table[AOUT_CHAN_MAX]; /**< Channels order table */
49     uint8_t chans_to_reorder; /**< Number of channels to reorder */
50
51     bool soft_mute;
52     float soft_gain;
53     char *device;
54 };
55
56 #include "audio_output/volume.h"
57
58 #define A52_FRAME_NB 1536
59
60 static int Open (vlc_object_t *);
61 static void Close (vlc_object_t *);
62 static int EnumDevices (vlc_object_t *, char const *, char ***, char ***);
63
64 #define AUDIO_DEV_TEXT N_("Audio output device")
65 #define AUDIO_DEV_LONGTEXT N_("Audio output device (using ALSA syntax).")
66
67 #define AUDIO_CHAN_TEXT N_("Audio output channels")
68 #define AUDIO_CHAN_LONGTEXT N_("Channels available for audio output. " \
69     "If the input has more channels than the output, it will be down-mixed. " \
70     "This parameter is ignored when digital pass-through is active.")
71 static const int channels[] = {
72     AOUT_CHAN_CENTER, AOUT_CHANS_STEREO, AOUT_CHANS_4_0, AOUT_CHANS_4_1,
73     AOUT_CHANS_5_0, AOUT_CHANS_5_1, AOUT_CHANS_7_1,
74 };
75 static const char *const channels_text[] = {
76     N_("Mono"), N_("Stereo"), N_("Surround 4.0"), N_("Surround 4.1"),
77     N_("Surround 5.0"), N_("Surround 5.1"), N_("Surround 7.1"),
78 };
79
80 vlc_module_begin ()
81     set_shortname( "ALSA" )
82     set_description( N_("ALSA audio output") )
83     set_category( CAT_AUDIO )
84     set_subcategory( SUBCAT_AUDIO_AOUT )
85     add_string ("alsa-audio-device", "default",
86                 AUDIO_DEV_TEXT, AUDIO_DEV_LONGTEXT, false)
87         change_string_cb (EnumDevices)
88     add_integer ("alsa-audio-channels", AOUT_CHANS_FRONT,
89                  AUDIO_CHAN_TEXT, AUDIO_CHAN_LONGTEXT, false)
90         change_integer_list (channels, channels_text)
91     add_sw_gain ()
92     set_capability( "audio output", 150 )
93     set_callbacks( Open, Close )
94 vlc_module_end ()
95
96
97 /** Helper for ALSA -> VLC debugging output */
98 static void Dump (vlc_object_t *obj, const char *msg,
99                   int (*cb)(void *, snd_output_t *), void *p)
100 {
101     snd_output_t *output;
102     char *str;
103
104     if (unlikely(snd_output_buffer_open (&output)))
105         return;
106
107     int val = cb (p, output);
108     if (val)
109     {
110         msg_Warn (obj, "cannot get info: %s", snd_strerror (val));
111         return;
112     }
113
114     size_t len = snd_output_buffer_string (output, &str);
115     if (len > 0 && str[len - 1])
116         len--; /* strip trailing newline */
117     msg_Dbg (obj, "%s%.*s", msg, (int)len, str);
118     snd_output_close (output);
119 }
120 #define Dump(o, m, cb, p) \
121         Dump(VLC_OBJECT(o), m, (int (*)(void *, snd_output_t *))(cb), p)
122
123 static void DumpDevice (vlc_object_t *obj, snd_pcm_t *pcm)
124 {
125     snd_pcm_info_t *info;
126
127     Dump (obj, " ", snd_pcm_dump, pcm);
128     snd_pcm_info_alloca (&info);
129     if (snd_pcm_info (pcm, info) == 0)
130     {
131         msg_Dbg (obj, " device name   : %s", snd_pcm_info_get_name (info));
132         msg_Dbg (obj, " device ID     : %s", snd_pcm_info_get_id (info));
133         msg_Dbg (obj, " subdevice name: %s",
134                 snd_pcm_info_get_subdevice_name (info));
135     }
136 }
137
138 static void DumpDeviceStatus (vlc_object_t *obj, snd_pcm_t *pcm)
139 {
140     snd_pcm_status_t *status;
141
142     snd_pcm_status_alloca (&status);
143     snd_pcm_status (pcm, status);
144     Dump (obj, "current status:\n", snd_pcm_status_dump, status);
145 }
146 #define DumpDeviceStatus(o, p) DumpDeviceStatus(VLC_OBJECT(o), p)
147
148 #if (SND_LIB_VERSION >= 0x01001B)
149 static const uint16_t vlc_chans[] = {
150     [SND_CHMAP_MONO] = AOUT_CHAN_CENTER,
151     [SND_CHMAP_FL]   = AOUT_CHAN_LEFT,
152     [SND_CHMAP_FR]   = AOUT_CHAN_RIGHT,
153     [SND_CHMAP_RL]   = AOUT_CHAN_REARLEFT,
154     [SND_CHMAP_RR]   = AOUT_CHAN_REARRIGHT,
155     [SND_CHMAP_FC]   = AOUT_CHAN_CENTER,
156     [SND_CHMAP_LFE]  = AOUT_CHAN_LFE,
157     [SND_CHMAP_SL]   = AOUT_CHAN_MIDDLELEFT,
158     [SND_CHMAP_SR]   = AOUT_CHAN_MIDDLERIGHT,
159     [SND_CHMAP_RC]   = AOUT_CHAN_REARCENTER,
160 };
161
162 static int Map2Mask (vlc_object_t *obj, const snd_pcm_chmap_t *restrict map)
163 {
164     uint16_t mask = 0;
165
166     for (unsigned i = 0; i < map->channels; i++)
167     {
168         const unsigned pos = map->pos[i];
169         uint_fast16_t vlc_chan = 0;
170
171         if (pos < sizeof (vlc_chans) / sizeof (vlc_chans[0]))
172             vlc_chan = vlc_chans[pos];
173         if (vlc_chan == 0)
174         {
175             msg_Dbg (obj, " %s channel %u position %u", "unsupported", i, pos);
176             return -1;
177         }
178         if (mask & vlc_chan)
179         {
180             msg_Dbg (obj, " %s channel %u position %u", "duplicate", i, pos);
181             return -1;
182         }
183         mask |= vlc_chan;
184     }
185     return mask;
186 }
187
188 /**
189  * Compares a fixed ALSA channels map with the VLC channels order.
190  */
191 static unsigned SetupChannelsFixed(const snd_pcm_chmap_t *restrict map,
192                                uint16_t *restrict maskp, uint8_t *restrict tab)
193 {
194     uint32_t chans_out[AOUT_CHAN_MAX];
195     uint16_t mask = 0;
196
197     for (unsigned i = 0; i < map->channels; i++)
198     {
199         uint_fast16_t vlc_chan = vlc_chans[map->pos[i]];
200
201         chans_out[i] = vlc_chan;
202         mask |= vlc_chan;
203     }
204
205     *maskp = mask;
206     return aout_CheckChannelReorder(NULL, chans_out, mask, tab);
207 }
208
209 /**
210  * Negotiate channels mapping.
211  */
212 static unsigned SetupChannels (vlc_object_t *obj, snd_pcm_t *pcm,
213                                uint16_t *restrict mask, uint8_t *restrict tab)
214 {
215     snd_pcm_chmap_query_t **maps = snd_pcm_query_chmaps (pcm);
216     if (maps == NULL)
217     {   /* Fallback to default order if unknown */
218         msg_Dbg(obj, "channels map not provided");
219         return 0;
220     }
221
222     /* Find most appropriate available channels map */
223     unsigned best_offset, best_score = 0, to_reorder = 0;
224
225     for (snd_pcm_chmap_query_t *const *p = maps; *p != NULL; p++)
226     {
227         snd_pcm_chmap_query_t *map = *p;
228
229         switch (map->type)
230         {
231             case SND_CHMAP_TYPE_FIXED:
232             case SND_CHMAP_TYPE_PAIRED:
233             case SND_CHMAP_TYPE_VAR:
234                 break;
235             default:
236                 msg_Err (obj, "unknown channels map type %u", map->type);
237                 continue;
238         }
239
240         int chans = Map2Mask (obj, &map->map);
241         if (chans == -1)
242             continue;
243
244         unsigned score = (popcount (chans & *mask) << 8)
245                        | (255 - popcount (chans));
246         if (score > best_score)
247         {
248             best_offset = p - maps;
249             best_score = score;
250         }
251     }
252
253     if (best_score == 0)
254     {
255         msg_Err (obj, "cannot find supported channels map");
256         goto out;
257     }
258
259     const snd_pcm_chmap_t *map = &maps[best_offset]->map;
260     msg_Dbg (obj, "using channels map %u, type %u, %u channel(s)", best_offset,
261              maps[best_offset]->type, map->channels);
262
263     /* Setup channels map */
264     to_reorder = SetupChannelsFixed(map, mask, tab);
265
266     /* TODO: avoid reordering for PAIRED and VAR types */
267     //snd_pcm_set_chmap (pcm, ...)
268 out:
269     snd_pcm_free_chmaps (maps);
270     return to_reorder;
271 }
272 #else /* (SND_LIB_VERSION < 0x01001B) */
273 # define SetupChannels(obj, pcm, mask, tab) (0)
274 #endif
275
276 static int TimeGet (audio_output_t *aout, mtime_t *);
277 static void Play (audio_output_t *, block_t *);
278 static void Pause (audio_output_t *, bool, mtime_t);
279 static void PauseDummy (audio_output_t *, bool, mtime_t);
280 static void Flush (audio_output_t *, bool);
281
282 /** Initializes an ALSA playback stream */
283 static int Start (audio_output_t *aout, audio_sample_format_t *restrict fmt)
284 {
285     aout_sys_t *sys = aout->sys;
286     snd_pcm_format_t pcm_format; /* ALSA sample format */
287     bool spdif = false;
288
289     switch (fmt->i_format)
290     {
291         case VLC_CODEC_FL64:
292             pcm_format = SND_PCM_FORMAT_FLOAT64;
293             break;
294         case VLC_CODEC_FL32:
295             pcm_format = SND_PCM_FORMAT_FLOAT;
296             break;
297         case VLC_CODEC_S32N:
298             pcm_format = SND_PCM_FORMAT_S32;
299             break;
300         case VLC_CODEC_S16N:
301             pcm_format = SND_PCM_FORMAT_S16;
302             break;
303         case VLC_CODEC_U8:
304             pcm_format = SND_PCM_FORMAT_U8;
305             break;
306         default:
307             if (AOUT_FMT_SPDIF(fmt))
308                 spdif = var_InheritBool (aout, "spdif");
309             if (spdif)
310             {
311                 fmt->i_format = VLC_CODEC_SPDIFL;
312                 pcm_format = SND_PCM_FORMAT_S16;
313             }
314             else
315             if (HAVE_FPU)
316             {
317                 fmt->i_format = VLC_CODEC_FL32;
318                 pcm_format = SND_PCM_FORMAT_FLOAT;
319             }
320             else
321             {
322                 fmt->i_format = VLC_CODEC_S16N;
323                 pcm_format = SND_PCM_FORMAT_S16;
324             }
325     }
326
327     const char *device = sys->device;
328
329     /* Choose the IEC device for S/PDIF output */
330     char sep = '\0';
331     if (spdif)
332     {
333         const char *opt;
334
335         if (!strcmp (device, "default"))
336             device = "iec958"; /* TODO: hdmi */
337
338         if (!strncmp (device, "iec958", 6))
339             opt = device + 6;
340         if (!strncmp (device, "hdmi", 4))
341             opt = device + 4;
342
343         if (opt != NULL)
344             switch (*opt)
345             {
346                 case ':':  sep = ','; break;
347                 case '\0': sep = ':'; break;
348             }
349     }
350
351     char *devbuf = NULL;
352     if (sep != '\0')
353     {
354         unsigned aes3;
355
356         switch (fmt->i_rate)
357         {
358 #define FS(freq) \
359             case freq: aes3 = IEC958_AES3_CON_FS_ ## freq; break;
360             FS( 44100) /* def. */ FS( 48000) FS( 32000)
361             FS( 22050)            FS( 24000)
362             FS( 88200) FS(768000) FS( 96000)
363             FS(176400)            FS(192000)
364 #undef FS
365             default:
366                 aes3 = IEC958_AES3_CON_FS_NOTID;
367                 break;
368         }
369
370         if (asprintf (&devbuf, "%s%cAES0=0x%x,AES1=0x%x,AES2=0x%x,AES3=0x%x",
371                       device, sep,
372                       IEC958_AES0_CON_EMPHASIS_NONE | IEC958_AES0_NONAUDIO,
373                       IEC958_AES1_CON_ORIGINAL | IEC958_AES1_CON_PCM_CODER,
374                       0, aes3) == -1)
375             return VLC_ENOMEM;
376         device = devbuf;
377     }
378
379     /* Open the device */
380     snd_pcm_t *pcm;
381     /* VLC always has a resampler. No need for ALSA's. */
382     const int mode = SND_PCM_NO_AUTO_RESAMPLE;
383
384     int val = snd_pcm_open (&pcm, device, SND_PCM_STREAM_PLAYBACK, mode);
385     free (devbuf);
386     if (val != 0)
387     {
388         msg_Err (aout, "cannot open ALSA device \"%s\": %s", sys->device,
389                  snd_strerror (val));
390         dialog_Fatal (aout, _("Audio output failed"),
391                       _("The audio device \"%s\" could not be used:\n%s."),
392                       sys->device, snd_strerror (val));
393         return VLC_EGENERIC;
394     }
395     sys->pcm = pcm;
396
397     /* Print some potentially useful debug */
398     msg_Dbg (aout, "using ALSA device: %s", sys->device);
399     DumpDevice (VLC_OBJECT(aout), pcm);
400
401     /* Get Initial hardware parameters */
402     snd_pcm_hw_params_t *hw;
403     unsigned param;
404
405     snd_pcm_hw_params_alloca (&hw);
406     snd_pcm_hw_params_any (pcm, hw);
407     Dump (aout, "initial hardware setup:\n", snd_pcm_hw_params_dump, hw);
408
409     val = snd_pcm_hw_params_set_rate_resample(pcm, hw, 0);
410     if (val)
411     {
412         msg_Err (aout, "cannot disable resampling: %s", snd_strerror (val));
413         goto error;
414     }
415
416     val = snd_pcm_hw_params_set_access (pcm, hw,
417                                         SND_PCM_ACCESS_RW_INTERLEAVED);
418     if (val)
419     {
420         msg_Err (aout, "cannot set access mode: %s", snd_strerror (val));
421         goto error;
422     }
423
424     /* Set sample format */
425     if (snd_pcm_hw_params_test_format (pcm, hw, pcm_format) == 0)
426         ;
427     else
428     if (snd_pcm_hw_params_test_format (pcm, hw, SND_PCM_FORMAT_FLOAT) == 0)
429     {
430         fmt->i_format = VLC_CODEC_FL32;
431         pcm_format = SND_PCM_FORMAT_FLOAT;
432     }
433     else
434     if (snd_pcm_hw_params_test_format (pcm, hw, SND_PCM_FORMAT_S32) == 0)
435     {
436         fmt->i_format = VLC_CODEC_S32N;
437         pcm_format = SND_PCM_FORMAT_S32;
438     }
439     else
440     if (snd_pcm_hw_params_test_format (pcm, hw, SND_PCM_FORMAT_S16) == 0)
441     {
442         fmt->i_format = VLC_CODEC_S16N;
443         pcm_format = SND_PCM_FORMAT_S16;
444     }
445     else
446     {
447         msg_Err (aout, "no supported sample format");
448         goto error;
449     }
450
451     val = snd_pcm_hw_params_set_format (pcm, hw, pcm_format);
452     if (val)
453     {
454         msg_Err (aout, "cannot set sample format: %s", snd_strerror (val));
455         goto error;
456     }
457
458     /* Set channels count */
459     unsigned channels;
460     if (!spdif)
461     {
462         uint16_t map = var_InheritInteger (aout, "alsa-audio-channels");
463
464         sys->chans_to_reorder = SetupChannels (VLC_OBJECT(aout), pcm, &map,
465                                                sys->chans_table);
466         fmt->i_physical_channels = map;
467         fmt->i_original_channels = map;
468         channels = popcount (map);
469     }
470     else
471     {
472         sys->chans_to_reorder = 0;
473         channels = 2;
474     }
475
476     /* By default, ALSA plug will pad missing channels with zeroes, which is
477      * usually fine. However, it will also discard extraneous channels, which
478      * is not acceptable. Thus the user must configure the physically
479      * available channels, and VLC will downmix if needed. */
480     val = snd_pcm_hw_params_set_channels (pcm, hw, channels);
481     if (val)
482     {
483         msg_Err (aout, "cannot set %u channels: %s", channels,
484                  snd_strerror (val));
485         goto error;
486     }
487
488     /* Set sample rate */
489     val = snd_pcm_hw_params_set_rate_near (pcm, hw, &fmt->i_rate, NULL);
490     if (val)
491     {
492         msg_Err (aout, "cannot set sample rate: %s", snd_strerror (val));
493         goto error;
494     }
495     sys->rate = fmt->i_rate;
496
497 #if 1 /* work-around for period-long latency outputs (e.g. PulseAudio): */
498     param = AOUT_MIN_PREPARE_TIME;
499     val = snd_pcm_hw_params_set_period_time_near (pcm, hw, &param, NULL);
500     if (val)
501     {
502         msg_Err (aout, "cannot set period: %s", snd_strerror (val));
503         goto error;
504     }
505 #endif
506     /* Set buffer size */
507     param = AOUT_MAX_ADVANCE_TIME;
508     val = snd_pcm_hw_params_set_buffer_time_near (pcm, hw, &param, NULL);
509     if (val)
510     {
511         msg_Err (aout, "cannot set buffer duration: %s", snd_strerror (val));
512         goto error;
513     }
514 #if 0
515     val = snd_pcm_hw_params_get_buffer_time (hw, &param, NULL);
516     if (val)
517     {
518         msg_Warn (aout, "cannot get buffer time: %s", snd_strerror(val));
519         param = AOUT_MIN_PREPARE_TIME;
520     }
521     else
522         param /= 2;
523     val = snd_pcm_hw_params_set_period_time_near (pcm, hw, &param, NULL);
524     if (val)
525     {
526         msg_Err (aout, "cannot set period: %s", snd_strerror (val));
527         goto error;
528     }
529 #endif
530
531     /* Commit hardware parameters */
532     val = snd_pcm_hw_params (pcm, hw);
533     if (val < 0)
534     {
535         msg_Err (aout, "cannot commit hardware parameters: %s",
536                  snd_strerror (val));
537         goto error;
538     }
539     Dump (aout, "final HW setup:\n", snd_pcm_hw_params_dump, hw);
540
541     /* Get Initial software parameters */
542     snd_pcm_sw_params_t *sw;
543
544     snd_pcm_sw_params_alloca (&sw);
545     snd_pcm_sw_params_current (pcm, sw);
546     Dump (aout, "initial software parameters:\n", snd_pcm_sw_params_dump, sw);
547
548     /* START REVISIT */
549     //snd_pcm_sw_params_set_avail_min( pcm, sw, i_period_size );
550     // FIXME: useful?
551     val = snd_pcm_sw_params_set_start_threshold (pcm, sw, 1);
552     if( val < 0 )
553     {
554         msg_Err( aout, "unable to set start threshold (%s)",
555                  snd_strerror( val ) );
556         goto error;
557     }
558     /* END REVISIT */
559
560     /* Commit software parameters. */
561     val = snd_pcm_sw_params (pcm, sw);
562     if (val)
563     {
564         msg_Err (aout, "cannot commit software parameters: %s",
565                  snd_strerror (val));
566         goto error;
567     }
568     Dump (aout, "final software parameters:\n", snd_pcm_sw_params_dump, sw);
569
570     val = snd_pcm_prepare (pcm);
571     if (val)
572     {
573         msg_Err (aout, "cannot prepare device: %s", snd_strerror (val));
574         goto error;
575     }
576
577     /* Setup audio_output_t */
578     if (spdif)
579     {
580         fmt->i_bytes_per_frame = AOUT_SPDIF_SIZE;
581         fmt->i_frame_length = A52_FRAME_NB;
582     }
583     sys->format = fmt->i_format;
584
585     aout->time_get = TimeGet;
586     aout->play = Play;
587     if (snd_pcm_hw_params_can_pause (hw))
588         aout->pause = Pause;
589     else
590     {
591         aout->pause = PauseDummy;
592         msg_Warn (aout, "device cannot be paused");
593     }
594     aout->flush = Flush;
595     aout_SoftVolumeStart (aout);
596     return 0;
597
598 error:
599     snd_pcm_close (pcm);
600     return VLC_EGENERIC;
601 }
602
603 static int TimeGet (audio_output_t *aout, mtime_t *restrict delay)
604 {
605     aout_sys_t *sys = aout->sys;
606     snd_pcm_sframes_t frames;
607
608     int val = snd_pcm_delay (sys->pcm, &frames);
609     if (val)
610     {
611         msg_Err (aout, "cannot estimate delay: %s", snd_strerror (val));
612         return -1;
613     }
614     *delay = frames * CLOCK_FREQ / sys->rate;
615     return 0;
616 }
617
618 /**
619  * Queues one audio buffer to the hardware.
620  */
621 static void Play (audio_output_t *aout, block_t *block)
622 {
623     aout_sys_t *sys = aout->sys;
624
625     if (sys->chans_to_reorder != 0)
626         aout_ChannelReorder(block->p_buffer, block->i_buffer,
627                            sys->chans_to_reorder, sys->chans_table, sys->format);
628
629     snd_pcm_t *pcm = sys->pcm;
630
631     /* TODO: better overflow handling */
632     /* TODO: no period wake ups */
633
634     while (block->i_nb_samples > 0)
635     {
636         snd_pcm_sframes_t frames;
637
638         frames = snd_pcm_writei (pcm, block->p_buffer, block->i_nb_samples);
639         if (frames >= 0)
640         {
641             size_t bytes = snd_pcm_frames_to_bytes (pcm, frames);
642             block->i_nb_samples -= frames;
643             block->p_buffer += bytes;
644             block->i_buffer -= bytes;
645             // pts, length
646         }
647         else  
648         {
649             int val = snd_pcm_recover (pcm, frames, 1);
650             if (val)
651             {
652                 msg_Err (aout, "cannot recover playback stream: %s",
653                          snd_strerror (val));
654                 DumpDeviceStatus (aout, pcm);
655                 break;
656             }
657             msg_Warn (aout, "cannot write samples: %s", snd_strerror (frames));
658         }
659     }
660     block_Release (block);
661 }
662
663 /**
664  * Pauses/resumes the audio playback.
665  */
666 static void Pause (audio_output_t *aout, bool pause, mtime_t date)
667 {
668     snd_pcm_t *pcm = aout->sys->pcm;
669
670     int val = snd_pcm_pause (pcm, pause);
671     if (unlikely(val))
672         PauseDummy (aout, pause, date);
673 }
674
675 static void PauseDummy (audio_output_t *aout, bool pause, mtime_t date)
676 {
677     snd_pcm_t *pcm = aout->sys->pcm;
678
679     /* Stupid device cannot pause. Discard samples. */
680     if (pause)
681         snd_pcm_drop (pcm);
682     else
683         snd_pcm_prepare (pcm);
684     (void) date;
685 }
686
687 /**
688  * Flushes/drains the audio playback buffer.
689  */
690 static void Flush (audio_output_t *aout, bool wait)
691 {
692     snd_pcm_t *pcm = aout->sys->pcm;
693
694     if (wait)
695         snd_pcm_drain (pcm);
696     else
697         snd_pcm_drop (pcm);
698     snd_pcm_prepare (pcm);
699 }
700
701
702 /**
703  * Releases the audio output.
704  */
705 static void Stop (audio_output_t *aout)
706 {
707     aout_sys_t *sys = aout->sys;
708     snd_pcm_t *pcm = sys->pcm;
709
710     snd_pcm_drop (pcm);
711     snd_pcm_close (pcm);
712 }
713
714 /**
715  * Enumerates ALSA output devices.
716  */
717 static int EnumDevices(vlc_object_t *obj, char const *varname,
718                        char ***restrict idp, char ***restrict namep)
719 {
720     void **hints;
721
722     msg_Dbg (obj, "Available ALSA PCM devices:");
723     if (snd_device_name_hint(-1, "pcm", &hints) < 0)
724         return -1;
725
726     char **ids = NULL, **names = NULL;
727     unsigned n = 0;
728
729     for (size_t i = 0; hints[i] != NULL; i++)
730     {
731         void *hint = hints[i];
732
733         char *name = snd_device_name_get_hint(hint, "NAME");
734         if (unlikely(name == NULL))
735             continue;
736
737         char *desc = snd_device_name_get_hint(hint, "DESC");
738         if (desc != NULL)
739             for (char *lf = strchr(desc, '\n'); lf; lf = strchr(lf, '\n'))
740                  *lf = ' ';
741         msg_Dbg (obj, "%s (%s)", (desc != NULL) ? desc : name, name);
742
743         ids = xrealloc (ids, (n + 1) * sizeof (*ids));
744         names = xrealloc (names, (n + 1) * sizeof (*names));
745         ids[n] = name;
746         names[n] = desc;
747         n++;
748     }
749
750     snd_device_name_free_hint(hints);
751     *idp = ids;
752     *namep = names;
753     (void) varname;
754     return n;
755 }
756
757 static int DeviceSelect (audio_output_t *aout, const char *id)
758 {
759     aout_sys_t *sys = aout->sys;
760
761     char *device = strdup (id ? id : "default");
762     if (unlikely(device == NULL))
763         return -1;
764
765     free (sys->device);
766     sys->device = device;
767     aout_DeviceReport (aout, device);
768     aout_RestartRequest (aout, AOUT_RESTART_OUTPUT);
769     return 0;
770 }
771
772 static int Open(vlc_object_t *obj)
773 {
774     audio_output_t *aout = (audio_output_t *)obj;
775     aout_sys_t *sys = malloc (sizeof (*sys));
776
777     if (unlikely(sys == NULL))
778         return VLC_ENOMEM;
779     sys->device = var_InheritString (aout, "alsa-audio-device");
780     if (unlikely(sys->device == NULL))
781         goto error;
782
783     aout->sys = sys;
784     aout->start = Start;
785     aout->stop = Stop;
786     aout_SoftVolumeInit (aout);
787     aout->device_select = DeviceSelect;
788     aout_DeviceReport (aout, sys->device);
789
790     /* ALSA does not support hot-plug events so list devices at startup */
791     char **ids, **names;
792     int count = EnumDevices (VLC_OBJECT(aout), NULL, &ids, &names);
793     if (count >= 0)
794     {
795         for (int i = 0; i < count; i++)
796         {
797             aout_HotplugReport (aout, ids[i], names[i]);
798             free (names[i]);
799             free (ids[i]);
800         }
801         free (names);
802         free (ids);
803     }
804
805     return VLC_SUCCESS;
806 error:
807     free (sys);
808     return VLC_ENOMEM;
809 }
810
811 static void Close(vlc_object_t *obj)
812 {
813     audio_output_t *aout = (audio_output_t *)obj;
814     aout_sys_t *sys = aout->sys;
815
816     free (sys->device);
817     free (sys);
818 }