]> git.sesse.net Git - vlc/blob - modules/audio_output/alsa.c
cd0a59391efbb72ada3cac5dddb5ddd9ccedd056
[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     uint8_t chans_table[AOUT_CHAN_MAX]; /**< Channels order table */
48     uint8_t chans_to_reorder; /**< Number of channels to reorder */
49     uint8_t bits; /**< Bits per sample per channel */
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     else
567     {
568         aout_FormatPrepare (fmt);
569         sys->bits = fmt->i_bitspersample;
570     }
571
572     aout->time_get = TimeGet;
573     aout->play = Play;
574     if (snd_pcm_hw_params_can_pause (hw))
575         aout->pause = Pause;
576     else
577     {
578         aout->pause = PauseDummy;
579         msg_Warn (aout, "device cannot be paused");
580     }
581     aout->flush = Flush;
582     aout_SoftVolumeStart (aout);
583     return 0;
584
585 error:
586     snd_pcm_close (pcm);
587     return VLC_EGENERIC;
588 }
589
590 static int TimeGet (audio_output_t *aout, mtime_t *restrict delay)
591 {
592     aout_sys_t *sys = aout->sys;
593     snd_pcm_sframes_t frames;
594
595     int val = snd_pcm_delay (sys->pcm, &frames);
596     if (val)
597     {
598         msg_Err (aout, "cannot estimate delay: %s", snd_strerror (val));
599         return -1;
600     }
601     *delay = frames * CLOCK_FREQ / sys->rate;
602     return 0;
603 }
604
605 /**
606  * Queues one audio buffer to the hardware.
607  */
608 static void Play (audio_output_t *aout, block_t *block)
609 {
610     aout_sys_t *sys = aout->sys;
611
612     if (sys->chans_to_reorder != 0)
613         aout_ChannelReorder(block->p_buffer, block->i_buffer,
614                            sys->chans_to_reorder, sys->chans_table, sys->bits);
615
616     snd_pcm_t *pcm = sys->pcm;
617
618     /* TODO: better overflow handling */
619     /* TODO: no period wake ups */
620
621     while (block->i_nb_samples > 0)
622     {
623         snd_pcm_sframes_t frames;
624
625         frames = snd_pcm_writei (pcm, block->p_buffer, block->i_nb_samples);
626         if (frames >= 0)
627         {
628             size_t bytes = snd_pcm_frames_to_bytes (pcm, frames);
629             block->i_nb_samples -= frames;
630             block->p_buffer += bytes;
631             block->i_buffer -= bytes;
632             // pts, length
633         }
634         else  
635         {
636             int val = snd_pcm_recover (pcm, frames, 1);
637             if (val)
638             {
639                 msg_Err (aout, "cannot recover playback stream: %s",
640                          snd_strerror (val));
641                 DumpDeviceStatus (aout, pcm);
642                 break;
643             }
644             msg_Warn (aout, "cannot write samples: %s", snd_strerror (frames));
645         }
646     }
647     block_Release (block);
648 }
649
650 /**
651  * Pauses/resumes the audio playback.
652  */
653 static void Pause (audio_output_t *aout, bool pause, mtime_t date)
654 {
655     snd_pcm_t *pcm = aout->sys->pcm;
656
657     int val = snd_pcm_pause (pcm, pause);
658     if (unlikely(val))
659         PauseDummy (aout, pause, date);
660 }
661
662 static void PauseDummy (audio_output_t *aout, bool pause, mtime_t date)
663 {
664     snd_pcm_t *pcm = aout->sys->pcm;
665
666     /* Stupid device cannot pause. Discard samples. */
667     if (pause)
668         snd_pcm_drop (pcm);
669     else
670         snd_pcm_prepare (pcm);
671     (void) date;
672 }
673
674 /**
675  * Flushes/drains the audio playback buffer.
676  */
677 static void Flush (audio_output_t *aout, bool wait)
678 {
679     snd_pcm_t *pcm = aout->sys->pcm;
680
681     if (wait)
682         snd_pcm_drain (pcm);
683     else
684         snd_pcm_drop (pcm);
685     snd_pcm_prepare (pcm);
686 }
687
688
689 /**
690  * Releases the audio output.
691  */
692 static void Stop (audio_output_t *aout)
693 {
694     aout_sys_t *sys = aout->sys;
695     snd_pcm_t *pcm = sys->pcm;
696
697     snd_pcm_drop (pcm);
698     snd_pcm_close (pcm);
699 }
700
701 /**
702  * Enumerates ALSA output devices.
703  */
704 static int EnumDevices(vlc_object_t *obj, char const *varname,
705                        char ***restrict idp, char ***restrict namep)
706 {
707     void **hints;
708
709     msg_Dbg (obj, "Available ALSA PCM devices:");
710     if (snd_device_name_hint(-1, "pcm", &hints) < 0)
711         return -1;
712
713     char **ids = NULL, **names = NULL;
714     unsigned n = 0;
715
716     for (size_t i = 0; hints[i] != NULL; i++)
717     {
718         void *hint = hints[i];
719
720         char *name = snd_device_name_get_hint(hint, "NAME");
721         if (unlikely(name == NULL))
722             continue;
723
724         char *desc = snd_device_name_get_hint(hint, "DESC");
725         if (desc != NULL)
726             for (char *lf = strchr(desc, '\n'); lf; lf = strchr(lf, '\n'))
727                  *lf = ' ';
728         msg_Dbg (obj, "%s (%s)", (desc != NULL) ? desc : name, name);
729
730         ids = xrealloc (ids, (n + 1) * sizeof (*ids));
731         names = xrealloc (names, (n + 1) * sizeof (*names));
732         ids[n] = name;
733         names[n] = desc;
734         n++;
735     }
736
737     snd_device_name_free_hint(hints);
738     *idp = ids;
739     *namep = names;
740     (void) varname;
741     return n;
742 }
743
744 static int DevicesEnum (audio_output_t *aout, char ***idp, char ***namep)
745 {
746     return EnumDevices (VLC_OBJECT(aout), NULL, idp, namep);
747 }
748
749 static int DeviceSelect (audio_output_t *aout, const char *id)
750 {
751     aout_sys_t *sys = aout->sys;
752
753     char *device = strdup (id ? id : "default");
754     if (unlikely(device == NULL))
755         return -1;
756
757     free (sys->device);
758     sys->device = device;
759     aout_DeviceReport (aout, device);
760     aout_RestartRequest (aout, AOUT_RESTART_OUTPUT);
761     return 0;
762 }
763
764 static int Open(vlc_object_t *obj)
765 {
766     audio_output_t *aout = (audio_output_t *)obj;
767     aout_sys_t *sys = malloc (sizeof (*sys));
768
769     if (unlikely(sys == NULL))
770         return VLC_ENOMEM;
771     sys->device = var_InheritString (aout, "alsa-audio-device");
772     if (unlikely(sys->device == NULL))
773         goto error;
774
775     aout->sys = sys;
776     aout->start = Start;
777     aout->stop = Stop;
778     aout_SoftVolumeInit (aout);
779     aout->device_enum = DevicesEnum;
780     aout->device_select = DeviceSelect;
781     aout_DeviceReport (aout, sys->device);
782     return VLC_SUCCESS;
783 error:
784     free (sys);
785     return VLC_ENOMEM;
786 }
787
788 static void Close(vlc_object_t *obj)
789 {
790     audio_output_t *aout = (audio_output_t *)obj;
791     aout_sys_t *sys = aout->sys;
792
793     free (sys->device);
794     free (sys);
795 }