]> git.sesse.net Git - vlc/blob - modules/audio_output/alsa.c
PulseAudio: implement mute/unmute while not playing
[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         channels = 2;
464     fmt->i_original_channels = fmt->i_physical_channels;
465
466     /* By default, ALSA plug will pad missing channels with zeroes, which is
467      * usually fine. However, it will also discard extraneous channels, which
468      * is not acceptable. Thus the user must configure the physically
469      * available channels, and VLC will downmix if needed. */
470     val = snd_pcm_hw_params_set_channels (pcm, hw, channels);
471     if (val)
472     {
473         msg_Err (aout, "cannot set %u channels: %s", channels,
474                  snd_strerror (val));
475         goto error;
476     }
477
478     /* Set sample rate */
479     val = snd_pcm_hw_params_set_rate_near (pcm, hw, &fmt->i_rate, NULL);
480     if (val)
481     {
482         msg_Err (aout, "cannot set sample rate: %s", snd_strerror (val));
483         goto error;
484     }
485     sys->rate = fmt->i_rate;
486
487     /* Set buffer size */
488     param = AOUT_MAX_ADVANCE_TIME;
489     val = snd_pcm_hw_params_set_buffer_time_near (pcm, hw, &param, NULL);
490     if (val)
491     {
492         msg_Err (aout, "cannot set buffer duration: %s", snd_strerror (val));
493         goto error;
494     }
495 #if 0
496     val = snd_pcm_hw_params_get_buffer_time (hw, &param, NULL);
497     if (val)
498     {
499         msg_Warn (aout, "cannot get buffer time: %s", snd_strerror(val));
500         param = AOUT_MIN_PREPARE_TIME;
501     }
502     else
503         param /= 2;
504 #else /* work-around for period-long latency outputs (e.g. PulseAudio): */
505     param = AOUT_MIN_PREPARE_TIME;
506 #endif
507     val = snd_pcm_hw_params_set_period_time_near (pcm, hw, &param, NULL);
508     if (val)
509     {
510         msg_Err (aout, "cannot set period: %s", snd_strerror (val));
511         goto error;
512     }
513
514     /* Commit hardware parameters */
515     val = snd_pcm_hw_params (pcm, hw);
516     if (val < 0)
517     {
518         msg_Err (aout, "cannot commit hardware parameters: %s",
519                  snd_strerror (val));
520         goto error;
521     }
522     Dump (aout, "final HW setup:\n", snd_pcm_hw_params_dump, hw);
523
524     /* Get Initial software parameters */
525     snd_pcm_sw_params_t *sw;
526
527     snd_pcm_sw_params_alloca (&sw);
528     snd_pcm_sw_params_current (pcm, sw);
529     Dump (aout, "initial software parameters:\n", snd_pcm_sw_params_dump, sw);
530
531     /* START REVISIT */
532     //snd_pcm_sw_params_set_avail_min( pcm, sw, i_period_size );
533     // FIXME: useful?
534     val = snd_pcm_sw_params_set_start_threshold (pcm, sw, 1);
535     if( val < 0 )
536     {
537         msg_Err( aout, "unable to set start threshold (%s)",
538                  snd_strerror( val ) );
539         goto error;
540     }
541     /* END REVISIT */
542
543     /* Commit software parameters. */
544     val = snd_pcm_sw_params (pcm, sw);
545     if (val)
546     {
547         msg_Err (aout, "cannot commit software parameters: %s",
548                  snd_strerror (val));
549         goto error;
550     }
551     Dump (aout, "final software parameters:\n", snd_pcm_sw_params_dump, sw);
552
553     val = snd_pcm_prepare (pcm);
554     if (val)
555     {
556         msg_Err (aout, "cannot prepare device: %s", snd_strerror (val));
557         goto error;
558     }
559
560     /* Setup audio_output_t */
561     if (spdif)
562     {
563         fmt->i_bytes_per_frame = AOUT_SPDIF_SIZE;
564         fmt->i_frame_length = A52_FRAME_NB;
565     }
566     sys->format = fmt->i_format;
567
568     aout->time_get = TimeGet;
569     aout->play = Play;
570     if (snd_pcm_hw_params_can_pause (hw))
571         aout->pause = Pause;
572     else
573     {
574         aout->pause = PauseDummy;
575         msg_Warn (aout, "device cannot be paused");
576     }
577     aout->flush = Flush;
578     aout_SoftVolumeStart (aout);
579     return 0;
580
581 error:
582     snd_pcm_close (pcm);
583     return VLC_EGENERIC;
584 }
585
586 static int TimeGet (audio_output_t *aout, mtime_t *restrict delay)
587 {
588     aout_sys_t *sys = aout->sys;
589     snd_pcm_sframes_t frames;
590
591     int val = snd_pcm_delay (sys->pcm, &frames);
592     if (val)
593     {
594         msg_Err (aout, "cannot estimate delay: %s", snd_strerror (val));
595         return -1;
596     }
597     *delay = frames * CLOCK_FREQ / sys->rate;
598     return 0;
599 }
600
601 /**
602  * Queues one audio buffer to the hardware.
603  */
604 static void Play (audio_output_t *aout, block_t *block)
605 {
606     aout_sys_t *sys = aout->sys;
607
608     if (sys->chans_to_reorder != 0)
609         aout_ChannelReorder(block->p_buffer, block->i_buffer,
610                            sys->chans_to_reorder, sys->chans_table, sys->format);
611
612     snd_pcm_t *pcm = sys->pcm;
613
614     /* TODO: better overflow handling */
615     /* TODO: no period wake ups */
616
617     while (block->i_nb_samples > 0)
618     {
619         snd_pcm_sframes_t frames;
620
621         frames = snd_pcm_writei (pcm, block->p_buffer, block->i_nb_samples);
622         if (frames >= 0)
623         {
624             size_t bytes = snd_pcm_frames_to_bytes (pcm, frames);
625             block->i_nb_samples -= frames;
626             block->p_buffer += bytes;
627             block->i_buffer -= bytes;
628             // pts, length
629         }
630         else  
631         {
632             int val = snd_pcm_recover (pcm, frames, 1);
633             if (val)
634             {
635                 msg_Err (aout, "cannot recover playback stream: %s",
636                          snd_strerror (val));
637                 DumpDeviceStatus (aout, pcm);
638                 break;
639             }
640             msg_Warn (aout, "cannot write samples: %s", snd_strerror (frames));
641         }
642     }
643     block_Release (block);
644 }
645
646 /**
647  * Pauses/resumes the audio playback.
648  */
649 static void Pause (audio_output_t *aout, bool pause, mtime_t date)
650 {
651     snd_pcm_t *pcm = aout->sys->pcm;
652
653     int val = snd_pcm_pause (pcm, pause);
654     if (unlikely(val))
655         PauseDummy (aout, pause, date);
656 }
657
658 static void PauseDummy (audio_output_t *aout, bool pause, mtime_t date)
659 {
660     snd_pcm_t *pcm = aout->sys->pcm;
661
662     /* Stupid device cannot pause. Discard samples. */
663     if (pause)
664         snd_pcm_drop (pcm);
665     else
666         snd_pcm_prepare (pcm);
667     (void) date;
668 }
669
670 /**
671  * Flushes/drains the audio playback buffer.
672  */
673 static void Flush (audio_output_t *aout, bool wait)
674 {
675     snd_pcm_t *pcm = aout->sys->pcm;
676
677     if (wait)
678         snd_pcm_drain (pcm);
679     else
680         snd_pcm_drop (pcm);
681     snd_pcm_prepare (pcm);
682 }
683
684
685 /**
686  * Releases the audio output.
687  */
688 static void Stop (audio_output_t *aout)
689 {
690     aout_sys_t *sys = aout->sys;
691     snd_pcm_t *pcm = sys->pcm;
692
693     snd_pcm_drop (pcm);
694     snd_pcm_close (pcm);
695 }
696
697 /**
698  * Enumerates ALSA output devices.
699  */
700 static int EnumDevices(vlc_object_t *obj, char const *varname,
701                        char ***restrict idp, char ***restrict namep)
702 {
703     void **hints;
704
705     msg_Dbg (obj, "Available ALSA PCM devices:");
706     if (snd_device_name_hint(-1, "pcm", &hints) < 0)
707         return -1;
708
709     char **ids = NULL, **names = NULL;
710     unsigned n = 0;
711
712     for (size_t i = 0; hints[i] != NULL; i++)
713     {
714         void *hint = hints[i];
715
716         char *name = snd_device_name_get_hint(hint, "NAME");
717         if (unlikely(name == NULL))
718             continue;
719
720         char *desc = snd_device_name_get_hint(hint, "DESC");
721         if (desc != NULL)
722             for (char *lf = strchr(desc, '\n'); lf; lf = strchr(lf, '\n'))
723                  *lf = ' ';
724         msg_Dbg (obj, "%s (%s)", (desc != NULL) ? desc : name, name);
725
726         ids = xrealloc (ids, (n + 1) * sizeof (*ids));
727         names = xrealloc (names, (n + 1) * sizeof (*names));
728         ids[n] = name;
729         names[n] = desc;
730         n++;
731     }
732
733     snd_device_name_free_hint(hints);
734     *idp = ids;
735     *namep = names;
736     (void) varname;
737     return n;
738 }
739
740 static int DevicesEnum (audio_output_t *aout, char ***idp, char ***namep)
741 {
742     return EnumDevices (VLC_OBJECT(aout), NULL, idp, namep);
743 }
744
745 static int DeviceSelect (audio_output_t *aout, const char *id)
746 {
747     aout_sys_t *sys = aout->sys;
748
749     char *device = strdup (id ? id : "default");
750     if (unlikely(device == NULL))
751         return -1;
752
753     free (sys->device);
754     sys->device = device;
755     aout_DeviceReport (aout, device);
756     aout_RestartRequest (aout, AOUT_RESTART_OUTPUT);
757     return 0;
758 }
759
760 static int Open(vlc_object_t *obj)
761 {
762     audio_output_t *aout = (audio_output_t *)obj;
763     aout_sys_t *sys = malloc (sizeof (*sys));
764
765     if (unlikely(sys == NULL))
766         return VLC_ENOMEM;
767     sys->device = var_InheritString (aout, "alsa-audio-device");
768     if (unlikely(sys->device == NULL))
769         goto error;
770
771     aout->sys = sys;
772     aout->start = Start;
773     aout->stop = Stop;
774     aout_SoftVolumeInit (aout);
775     aout->device_enum = DevicesEnum;
776     aout->device_select = DeviceSelect;
777     aout_DeviceReport (aout, sys->device);
778     return VLC_SUCCESS;
779 error:
780     free (sys);
781     return VLC_ENOMEM;
782 }
783
784 static void Close(vlc_object_t *obj)
785 {
786     audio_output_t *aout = (audio_output_t *)obj;
787     aout_sys_t *sys = aout->sys;
788
789     free (sys->device);
790     free (sys);
791 }