]> git.sesse.net Git - vlc/blob - modules/audio_output/alsa.c
ALSA: adapt to hotplug event
[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 "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 static unsigned SetupChannelsUnknown (vlc_object_t *obj,
149                                       uint16_t *restrict mask)
150 {
151     uint16_t map = var_InheritInteger (obj, "alsa-audio-channels");
152     uint16_t chans = *mask & map;
153
154     if (unlikely(chans == 0)) /* WTH? */
155         chans = AOUT_CHANS_STEREO;
156
157     if (popcount (chans) < popcount (*mask))
158         msg_Dbg (obj, "downmixing from %u to %u channels",
159                  popcount (*mask), popcount (chans));
160     else
161         msg_Dbg (obj, "keeping %u channels", popcount (chans));
162     *mask = chans;
163     return 0;
164 }
165
166 #if (SND_LIB_VERSION >= 0x01001B)
167 static const uint16_t vlc_chans[] = {
168     [SND_CHMAP_MONO] = AOUT_CHAN_CENTER,
169     [SND_CHMAP_FL]   = AOUT_CHAN_LEFT,
170     [SND_CHMAP_FR]   = AOUT_CHAN_RIGHT,
171     [SND_CHMAP_RL]   = AOUT_CHAN_REARLEFT,
172     [SND_CHMAP_RR]   = AOUT_CHAN_REARRIGHT,
173     [SND_CHMAP_FC]   = AOUT_CHAN_CENTER,
174     [SND_CHMAP_LFE]  = AOUT_CHAN_LFE,
175     [SND_CHMAP_SL]   = AOUT_CHAN_MIDDLELEFT,
176     [SND_CHMAP_SR]   = AOUT_CHAN_MIDDLERIGHT,
177     [SND_CHMAP_RC]   = AOUT_CHAN_REARCENTER,
178 };
179
180 static int Map2Mask (vlc_object_t *obj, const snd_pcm_chmap_t *restrict map)
181 {
182     uint16_t mask = 0;
183
184     for (unsigned i = 0; i < map->channels; i++)
185     {
186         const unsigned pos = map->pos[i];
187         uint_fast16_t vlc_chan = 0;
188
189         if (pos < sizeof (vlc_chans) / sizeof (vlc_chans[0]))
190             vlc_chan = vlc_chans[pos];
191         if (vlc_chan == 0)
192         {
193             msg_Dbg (obj, " %s channel %u position %u", "unsupported", i, pos);
194             return -1;
195         }
196         if (mask & vlc_chan)
197         {
198             msg_Dbg (obj, " %s channel %u position %u", "duplicate", i, pos);
199             return -1;
200         }
201         mask |= vlc_chan;
202     }
203     return mask;
204 }
205
206 /**
207  * Compares a fixed ALSA channels map with the VLC channels order.
208  */
209 static unsigned SetupChannelsFixed(const snd_pcm_chmap_t *restrict map,
210                                 uint16_t *restrict mask, uint8_t *restrict tab)
211 {
212     uint32_t chans_out[AOUT_CHAN_MAX];
213
214     for (unsigned i = 0; i < map->channels; i++)
215     {
216         uint_fast16_t vlc_chan = vlc_chans[map->pos[i]];
217
218         chans_out[i] = vlc_chan;
219         *mask |= vlc_chan;
220     }
221
222     return aout_CheckChannelReorder(NULL, chans_out, *mask, tab);
223 }
224
225 /**
226  * Negotiate channels mapping.
227  */
228 static unsigned SetupChannels (vlc_object_t *obj, snd_pcm_t *pcm,
229                                 uint16_t *restrict mask, uint8_t *restrict tab)
230 {
231     snd_pcm_chmap_query_t **maps = snd_pcm_query_chmaps (pcm);
232     if (tab == NULL)
233     {   /* Fallback to manual configuration */
234         msg_Dbg(obj, "channels map not provided");
235         return SetupChannelsUnknown (obj, mask);
236     }
237
238     /* Find most appropriate available channels map */
239     unsigned best_offset;
240     unsigned best_score = 0;
241
242     for (snd_pcm_chmap_query_t *const *p = maps; *p != NULL; p++)
243     {
244         snd_pcm_chmap_query_t *map = *p;
245
246         switch (map->type)
247         {
248             case SND_CHMAP_TYPE_FIXED:
249             case SND_CHMAP_TYPE_PAIRED:
250             case SND_CHMAP_TYPE_VAR:
251                 break;
252             default:
253                 msg_Err (obj, "unknown channels map type %u", map->type);
254                 continue;
255         }
256
257         int chans = Map2Mask (obj, &map->map);
258         if (chans == -1)
259             continue;
260
261         unsigned score = popcount (chans & *mask);
262         if (score > best_score)
263         {
264             best_offset = p - maps;
265             best_score = score;
266         }
267     }
268
269     if (best_score == 0)
270     {
271         msg_Err (obj, "cannot find supported channels map");
272         snd_pcm_free_chmaps (maps);
273         return SetupChannelsUnknown (obj, mask);
274     }
275
276     const snd_pcm_chmap_t *map = &maps[best_offset]->map;
277     msg_Dbg (obj, "using channels map %u, type %u, %u channel(s)", best_offset,
278              maps[best_offset]->type, best_score);
279
280     /* Setup channels map */
281     unsigned to_reorder = SetupChannelsFixed(map, mask, tab);
282
283     /* TODO: avoid reordering for PAIRED and VAR types */
284     //snd_pcm_set_chmap (pcm, ...)
285
286     snd_pcm_free_chmaps (maps);
287     return to_reorder;
288 }
289 #else /* (SND_LIB_VERSION < 0x01001B) */
290 # define SetupChannels(obj, pcm, mask, tab) \
291          SetupChannelsUnknown(obj, mask)
292 #endif
293
294 static int TimeGet (audio_output_t *aout, mtime_t *);
295 static void Play (audio_output_t *, block_t *);
296 static void Pause (audio_output_t *, bool, mtime_t);
297 static void PauseDummy (audio_output_t *, bool, mtime_t);
298 static void Flush (audio_output_t *, bool);
299
300 /** Initializes an ALSA playback stream */
301 static int Start (audio_output_t *aout, audio_sample_format_t *restrict fmt)
302 {
303     aout_sys_t *sys = aout->sys;
304     snd_pcm_format_t pcm_format; /* ALSA sample format */
305     bool spdif = false;
306
307     switch (fmt->i_format)
308     {
309         case VLC_CODEC_FL64:
310             pcm_format = SND_PCM_FORMAT_FLOAT64;
311             break;
312         case VLC_CODEC_FL32:
313             pcm_format = SND_PCM_FORMAT_FLOAT;
314             break;
315         case VLC_CODEC_S32N:
316             pcm_format = SND_PCM_FORMAT_S32;
317             break;
318         case VLC_CODEC_S16N:
319             pcm_format = SND_PCM_FORMAT_S16;
320             break;
321         case VLC_CODEC_U8:
322             pcm_format = SND_PCM_FORMAT_U8;
323             break;
324         default:
325             if (AOUT_FMT_SPDIF(fmt))
326                 spdif = var_InheritBool (aout, "spdif");
327             if (spdif)
328             {
329                 fmt->i_format = VLC_CODEC_SPDIFL;
330                 pcm_format = SND_PCM_FORMAT_S16;
331             }
332             else
333             if (HAVE_FPU)
334             {
335                 fmt->i_format = VLC_CODEC_FL32;
336                 pcm_format = SND_PCM_FORMAT_FLOAT;
337             }
338             else
339             {
340                 fmt->i_format = VLC_CODEC_S16N;
341                 pcm_format = SND_PCM_FORMAT_S16;
342             }
343     }
344
345     const char *device = sys->device;
346     char *devbuf = NULL;
347     /* Choose the IEC device for S/PDIF output */
348     if (spdif && !strcmp (device, "default"))
349     {
350         unsigned aes3;
351
352         switch (fmt->i_rate)
353         {
354 #define FS(freq) \
355             case freq: aes3 = IEC958_AES3_CON_FS_ ## freq; break;
356             FS( 44100) /* def. */ FS( 48000) FS( 32000)
357             FS( 22050)            FS( 24000)
358             FS( 88200) FS(768000) FS( 96000)
359             FS(176400)            FS(192000)
360 #undef FS
361             default:
362                 aes3 = IEC958_AES3_CON_FS_NOTID;
363                 break;
364         }
365
366         if (asprintf (&devbuf,
367                       "iec958:AES0=0x%x,AES1=0x%x,AES2=0x%x,AES3=0x%x",
368                       IEC958_AES0_CON_EMPHASIS_NONE | IEC958_AES0_NONAUDIO,
369                       IEC958_AES1_CON_ORIGINAL | IEC958_AES1_CON_PCM_CODER,
370                       0, aes3) == -1)
371             return VLC_ENOMEM;
372         device = devbuf;
373     }
374
375     /* Open the device */
376     snd_pcm_t *pcm;
377     /* VLC always has a resampler. No need for ALSA's. */
378     const int mode = SND_PCM_NO_AUTO_RESAMPLE;
379
380     int val = snd_pcm_open (&pcm, device, SND_PCM_STREAM_PLAYBACK, mode);
381     free (devbuf);
382     if (val != 0)
383     {
384         msg_Err (aout, "cannot open ALSA device \"%s\": %s", sys->device,
385                  snd_strerror (val));
386         dialog_Fatal (aout, _("Audio output failed"),
387                       _("The audio device \"%s\" could not be used:\n%s."),
388                       sys->device, snd_strerror (val));
389         return VLC_EGENERIC;
390     }
391     sys->pcm = pcm;
392
393     /* Print some potentially useful debug */
394     msg_Dbg (aout, "using ALSA device: %s", sys->device);
395     DumpDevice (VLC_OBJECT(aout), pcm);
396
397     /* Get Initial hardware parameters */
398     snd_pcm_hw_params_t *hw;
399     unsigned param;
400
401     snd_pcm_hw_params_alloca (&hw);
402     snd_pcm_hw_params_any (pcm, hw);
403     Dump (aout, "initial hardware setup:\n", snd_pcm_hw_params_dump, hw);
404
405     val = snd_pcm_hw_params_set_rate_resample(pcm, hw, 0);
406     if (val)
407     {
408         msg_Err (aout, "cannot disable resampling: %s", snd_strerror (val));
409         goto error;
410     }
411
412     val = snd_pcm_hw_params_set_access (pcm, hw,
413                                         SND_PCM_ACCESS_RW_INTERLEAVED);
414     if (val)
415     {
416         msg_Err (aout, "cannot set access mode: %s", snd_strerror (val));
417         goto error;
418     }
419
420     /* Set sample format */
421     if (snd_pcm_hw_params_test_format (pcm, hw, pcm_format) == 0)
422         ;
423     else
424     if (snd_pcm_hw_params_test_format (pcm, hw, SND_PCM_FORMAT_FLOAT) == 0)
425     {
426         fmt->i_format = VLC_CODEC_FL32;
427         pcm_format = SND_PCM_FORMAT_FLOAT;
428     }
429     else
430     if (snd_pcm_hw_params_test_format (pcm, hw, SND_PCM_FORMAT_S32) == 0)
431     {
432         fmt->i_format = VLC_CODEC_S32N;
433         pcm_format = SND_PCM_FORMAT_S32;
434     }
435     else
436     if (snd_pcm_hw_params_test_format (pcm, hw, SND_PCM_FORMAT_S16) == 0)
437     {
438         fmt->i_format = VLC_CODEC_S16N;
439         pcm_format = SND_PCM_FORMAT_S16;
440     }
441     else
442     {
443         msg_Err (aout, "no supported sample format");
444         goto error;
445     }
446
447     val = snd_pcm_hw_params_set_format (pcm, hw, pcm_format);
448     if (val)
449     {
450         msg_Err (aout, "cannot set sample format: %s", snd_strerror (val));
451         goto error;
452     }
453
454     /* Set channels count */
455     unsigned channels;
456     if (!spdif)
457     {
458         sys->chans_to_reorder = SetupChannels (VLC_OBJECT(aout), pcm,
459                                   &fmt->i_physical_channels, sys->chans_table);
460         channels = popcount (fmt->i_physical_channels);
461     }
462     else
463     {
464         sys->chans_to_reorder = 0;
465         channels = 2;
466     }
467     fmt->i_original_channels = fmt->i_physical_channels;
468
469     /* By default, ALSA plug will pad missing channels with zeroes, which is
470      * usually fine. However, it will also discard extraneous channels, which
471      * is not acceptable. Thus the user must configure the physically
472      * available channels, and VLC will downmix if needed. */
473     val = snd_pcm_hw_params_set_channels (pcm, hw, channels);
474     if (val)
475     {
476         msg_Err (aout, "cannot set %u channels: %s", channels,
477                  snd_strerror (val));
478         goto error;
479     }
480
481     /* Set sample rate */
482     val = snd_pcm_hw_params_set_rate_near (pcm, hw, &fmt->i_rate, NULL);
483     if (val)
484     {
485         msg_Err (aout, "cannot set sample rate: %s", snd_strerror (val));
486         goto error;
487     }
488     sys->rate = fmt->i_rate;
489
490     /* Set buffer size */
491     param = AOUT_MAX_ADVANCE_TIME;
492     val = snd_pcm_hw_params_set_buffer_time_near (pcm, hw, &param, NULL);
493     if (val)
494     {
495         msg_Err (aout, "cannot set buffer duration: %s", snd_strerror (val));
496         goto error;
497     }
498 #if 0
499     val = snd_pcm_hw_params_get_buffer_time (hw, &param, NULL);
500     if (val)
501     {
502         msg_Warn (aout, "cannot get buffer time: %s", snd_strerror(val));
503         param = AOUT_MIN_PREPARE_TIME;
504     }
505     else
506         param /= 2;
507 #else /* work-around for period-long latency outputs (e.g. PulseAudio): */
508     param = AOUT_MIN_PREPARE_TIME;
509 #endif
510     val = snd_pcm_hw_params_set_period_time_near (pcm, hw, &param, NULL);
511     if (val)
512     {
513         msg_Err (aout, "cannot set period: %s", snd_strerror (val));
514         goto error;
515     }
516
517     /* Commit hardware parameters */
518     val = snd_pcm_hw_params (pcm, hw);
519     if (val < 0)
520     {
521         msg_Err (aout, "cannot commit hardware parameters: %s",
522                  snd_strerror (val));
523         goto error;
524     }
525     Dump (aout, "final HW setup:\n", snd_pcm_hw_params_dump, hw);
526
527     /* Get Initial software parameters */
528     snd_pcm_sw_params_t *sw;
529
530     snd_pcm_sw_params_alloca (&sw);
531     snd_pcm_sw_params_current (pcm, sw);
532     Dump (aout, "initial software parameters:\n", snd_pcm_sw_params_dump, sw);
533
534     /* START REVISIT */
535     //snd_pcm_sw_params_set_avail_min( pcm, sw, i_period_size );
536     // FIXME: useful?
537     val = snd_pcm_sw_params_set_start_threshold (pcm, sw, 1);
538     if( val < 0 )
539     {
540         msg_Err( aout, "unable to set start threshold (%s)",
541                  snd_strerror( val ) );
542         goto error;
543     }
544     /* END REVISIT */
545
546     /* Commit software parameters. */
547     val = snd_pcm_sw_params (pcm, sw);
548     if (val)
549     {
550         msg_Err (aout, "cannot commit software parameters: %s",
551                  snd_strerror (val));
552         goto error;
553     }
554     Dump (aout, "final software parameters:\n", snd_pcm_sw_params_dump, sw);
555
556     val = snd_pcm_prepare (pcm);
557     if (val)
558     {
559         msg_Err (aout, "cannot prepare device: %s", snd_strerror (val));
560         goto error;
561     }
562
563     /* Setup audio_output_t */
564     if (spdif)
565     {
566         fmt->i_bytes_per_frame = AOUT_SPDIF_SIZE;
567         fmt->i_frame_length = A52_FRAME_NB;
568     }
569     sys->format = fmt->i_format;
570
571     aout->time_get = TimeGet;
572     aout->play = Play;
573     if (snd_pcm_hw_params_can_pause (hw))
574         aout->pause = Pause;
575     else
576     {
577         aout->pause = PauseDummy;
578         msg_Warn (aout, "device cannot be paused");
579     }
580     aout->flush = Flush;
581     aout_SoftVolumeStart (aout);
582     return 0;
583
584 error:
585     snd_pcm_close (pcm);
586     return VLC_EGENERIC;
587 }
588
589 static int TimeGet (audio_output_t *aout, mtime_t *restrict delay)
590 {
591     aout_sys_t *sys = aout->sys;
592     snd_pcm_sframes_t frames;
593
594     int val = snd_pcm_delay (sys->pcm, &frames);
595     if (val)
596     {
597         msg_Err (aout, "cannot estimate delay: %s", snd_strerror (val));
598         return -1;
599     }
600     *delay = frames * CLOCK_FREQ / sys->rate;
601     return 0;
602 }
603
604 /**
605  * Queues one audio buffer to the hardware.
606  */
607 static void Play (audio_output_t *aout, block_t *block)
608 {
609     aout_sys_t *sys = aout->sys;
610
611     if (sys->chans_to_reorder != 0)
612         aout_ChannelReorder(block->p_buffer, block->i_buffer,
613                            sys->chans_to_reorder, sys->chans_table, sys->format);
614
615     snd_pcm_t *pcm = sys->pcm;
616
617     /* TODO: better overflow handling */
618     /* TODO: no period wake ups */
619
620     while (block->i_nb_samples > 0)
621     {
622         snd_pcm_sframes_t frames;
623
624         frames = snd_pcm_writei (pcm, block->p_buffer, block->i_nb_samples);
625         if (frames >= 0)
626         {
627             size_t bytes = snd_pcm_frames_to_bytes (pcm, frames);
628             block->i_nb_samples -= frames;
629             block->p_buffer += bytes;
630             block->i_buffer -= bytes;
631             // pts, length
632         }
633         else  
634         {
635             int val = snd_pcm_recover (pcm, frames, 1);
636             if (val)
637             {
638                 msg_Err (aout, "cannot recover playback stream: %s",
639                          snd_strerror (val));
640                 DumpDeviceStatus (aout, pcm);
641                 break;
642             }
643             msg_Warn (aout, "cannot write samples: %s", snd_strerror (frames));
644         }
645     }
646     block_Release (block);
647 }
648
649 /**
650  * Pauses/resumes the audio playback.
651  */
652 static void Pause (audio_output_t *aout, bool pause, mtime_t date)
653 {
654     snd_pcm_t *pcm = aout->sys->pcm;
655
656     int val = snd_pcm_pause (pcm, pause);
657     if (unlikely(val))
658         PauseDummy (aout, pause, date);
659 }
660
661 static void PauseDummy (audio_output_t *aout, bool pause, mtime_t date)
662 {
663     snd_pcm_t *pcm = aout->sys->pcm;
664
665     /* Stupid device cannot pause. Discard samples. */
666     if (pause)
667         snd_pcm_drop (pcm);
668     else
669         snd_pcm_prepare (pcm);
670     (void) date;
671 }
672
673 /**
674  * Flushes/drains the audio playback buffer.
675  */
676 static void Flush (audio_output_t *aout, bool wait)
677 {
678     snd_pcm_t *pcm = aout->sys->pcm;
679
680     if (wait)
681         snd_pcm_drain (pcm);
682     else
683         snd_pcm_drop (pcm);
684     snd_pcm_prepare (pcm);
685 }
686
687
688 /**
689  * Releases the audio output.
690  */
691 static void Stop (audio_output_t *aout)
692 {
693     aout_sys_t *sys = aout->sys;
694     snd_pcm_t *pcm = sys->pcm;
695
696     snd_pcm_drop (pcm);
697     snd_pcm_close (pcm);
698 }
699
700 /**
701  * Enumerates ALSA output devices.
702  */
703 static int EnumDevices(vlc_object_t *obj, char const *varname,
704                        char ***restrict idp, char ***restrict namep)
705 {
706     void **hints;
707
708     msg_Dbg (obj, "Available ALSA PCM devices:");
709     if (snd_device_name_hint(-1, "pcm", &hints) < 0)
710         return -1;
711
712     char **ids = NULL, **names = NULL;
713     unsigned n = 0;
714
715     for (size_t i = 0; hints[i] != NULL; i++)
716     {
717         void *hint = hints[i];
718
719         char *name = snd_device_name_get_hint(hint, "NAME");
720         if (unlikely(name == NULL))
721             continue;
722
723         char *desc = snd_device_name_get_hint(hint, "DESC");
724         if (desc != NULL)
725             for (char *lf = strchr(desc, '\n'); lf; lf = strchr(lf, '\n'))
726                  *lf = ' ';
727         msg_Dbg (obj, "%s (%s)", (desc != NULL) ? desc : name, name);
728
729         ids = xrealloc (ids, (n + 1) * sizeof (*ids));
730         names = xrealloc (names, (n + 1) * sizeof (*names));
731         ids[n] = name;
732         names[n] = desc;
733         n++;
734     }
735
736     snd_device_name_free_hint(hints);
737     *idp = ids;
738     *namep = names;
739     (void) varname;
740     return n;
741 }
742
743 static int DeviceSelect (audio_output_t *aout, const char *id)
744 {
745     aout_sys_t *sys = aout->sys;
746
747     char *device = strdup (id ? id : "default");
748     if (unlikely(device == NULL))
749         return -1;
750
751     free (sys->device);
752     sys->device = device;
753     aout_DeviceReport (aout, device);
754     aout_RestartRequest (aout, AOUT_RESTART_OUTPUT);
755     return 0;
756 }
757
758 static int Open(vlc_object_t *obj)
759 {
760     audio_output_t *aout = (audio_output_t *)obj;
761     aout_sys_t *sys = malloc (sizeof (*sys));
762
763     if (unlikely(sys == NULL))
764         return VLC_ENOMEM;
765     sys->device = var_InheritString (aout, "alsa-audio-device");
766     if (unlikely(sys->device == NULL))
767         goto error;
768
769     aout->sys = sys;
770     aout->start = Start;
771     aout->stop = Stop;
772     aout_SoftVolumeInit (aout);
773     aout->device_select = DeviceSelect;
774     aout_DeviceReport (aout, sys->device);
775
776     /* ALSA does not support hot-plug events so list devices at startup */
777     char **ids, **names;
778     int count = EnumDevices (VLC_OBJECT(aout), NULL, &ids, &names);
779     if (count >= 0)
780     {
781         for (int i = 0; i < count; i++)
782         {
783             aout_HotplugReport (aout, ids[i], names[i]);
784             free (names[i]);
785             free (ids[i]);
786         }
787         free (names);
788         free (ids);
789     }
790
791     return VLC_SUCCESS;
792 error:
793     free (sys);
794     return VLC_ENOMEM;
795 }
796
797 static void Close(vlc_object_t *obj)
798 {
799     audio_output_t *aout = (audio_output_t *)obj;
800     aout_sys_t *sys = aout->sys;
801
802     free (sys->device);
803     free (sys);
804 }