2 * ALSA 0.9.x-1.x audio output driver
4 * Copyright (C) 2004 Alex Beregszaszi
6 * modified for real ALSA 0.9.0 support by Zsolt Barat <joy@streamminister.de>
7 * additional AC-3 passthrough support by Andy Lo A Foe <andy@alsaplayer.org>
8 * 08/22/2002 iec958-init rewritten and merged with common init, zsolt
9 * 04/13/2004 merged with ao_alsa1.x, fixes provided by Jindrich Makovicka
10 * 04/25/2004 printfs converted to mp_msg, Zsolt.
12 * This file is part of MPlayer.
14 * MPlayer is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * MPlayer is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License along
25 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
26 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
39 #include "subopt-helper.h"
43 #define ALSA_PCM_NEW_HW_PARAMS_API
44 #define ALSA_PCM_NEW_SW_PARAMS_API
46 #include <alsa/asoundlib.h>
48 #include "audio_out.h"
49 #include "audio_out_internal.h"
50 #include "libaf/af_format.h"
52 static const ao_info_t info
=
54 "ALSA-0.9.x-1.x audio output",
56 "Alex Beregszaszi, Zsolt Barat <joy@streamminister.de>",
62 static snd_pcm_t
*alsa_handler
;
63 static snd_pcm_format_t alsa_format
;
64 static snd_pcm_hw_params_t
*alsa_hwparams
;
65 static snd_pcm_sw_params_t
*alsa_swparams
;
67 #define BUFFER_TIME 500000 // 0.5 s
70 static size_t bytes_per_sample
;
72 static int alsa_can_pause
;
73 static snd_pcm_sframes_t prepause_frames
;
75 #define ALSA_DEVICE_SIZE 256
77 static void alsa_error_handler(const char *file
, int line
, const char *function
,
78 int err
, const char *format
, ...)
84 vsnprintf(tmp
, sizeof tmp
, format
, va
);
86 tmp
[sizeof tmp
- 1] = '\0';
89 mp_msg(MSGT_AO
, MSGL_ERR
, "[AO_ALSA] alsa-lib: %s:%i:(%s) %s: %s\n",
90 file
, line
, function
, tmp
, snd_strerror(err
));
92 mp_msg(MSGT_AO
, MSGL_ERR
, "[AO_ALSA] alsa-lib: %s:%i:(%s) %s\n",
93 file
, line
, function
, tmp
);
96 /* to set/get/query special features/parameters */
97 static int control(int cmd
, void *arg
)
100 case AOCONTROL_GET_MUTE
:
101 case AOCONTROL_SET_MUTE
:
102 case AOCONTROL_GET_VOLUME
:
103 case AOCONTROL_SET_VOLUME
:
107 snd_mixer_elem_t
*elem
;
108 snd_mixer_selem_id_t
*sid
;
110 char *mix_name
= "Master";
111 char *card
= "default";
115 long get_vol
, set_vol
;
118 if(AF_FORMAT_IS_AC3(ao_data
.format
))
122 char *test_mix_index
;
124 mix_name
= strdup(mixer_channel
);
125 if ((test_mix_index
= strchr(mix_name
, ','))){
128 mix_index
= strtol(test_mix_index
, &test_mix_index
, 0);
130 if (*test_mix_index
){
131 mp_tmsg(MSGT_AO
,MSGL_ERR
,
132 "[AO_ALSA] Invalid mixer index. Defaulting to 0.\n");
137 if(mixer_device
) card
= mixer_device
;
140 snd_mixer_selem_id_alloca(&sid
);
142 //sets simple-mixer index and name
143 snd_mixer_selem_id_set_index(sid
, mix_index
);
144 snd_mixer_selem_id_set_name(sid
, mix_name
);
151 if ((err
= snd_mixer_open(&handle
, 0)) < 0) {
152 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Mixer open error: %s\n", snd_strerror(err
));
153 return CONTROL_ERROR
;
156 if ((err
= snd_mixer_attach(handle
, card
)) < 0) {
157 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Mixer attach %s error: %s\n",
158 card
, snd_strerror(err
));
159 snd_mixer_close(handle
);
160 return CONTROL_ERROR
;
163 if ((err
= snd_mixer_selem_register(handle
, NULL
, NULL
)) < 0) {
164 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Mixer register error: %s\n", snd_strerror(err
));
165 snd_mixer_close(handle
);
166 return CONTROL_ERROR
;
168 err
= snd_mixer_load(handle
);
170 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Mixer load error: %s\n", snd_strerror(err
));
171 snd_mixer_close(handle
);
172 return CONTROL_ERROR
;
175 elem
= snd_mixer_find_selem(handle
, sid
);
177 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to find simple control '%s',%i.\n",
178 snd_mixer_selem_id_get_name(sid
), snd_mixer_selem_id_get_index(sid
));
179 snd_mixer_close(handle
);
180 return CONTROL_ERROR
;
183 snd_mixer_selem_get_playback_volume_range(elem
,&pmin
,&pmax
);
184 f_multi
= (100 / (float)(pmax
- pmin
));
187 case AOCONTROL_SET_VOLUME
: {
188 ao_control_vol_t
*vol
= arg
;
189 set_vol
= vol
->left
/ f_multi
+ pmin
+ 0.5;
192 if ((err
= snd_mixer_selem_set_playback_volume(elem
, SND_MIXER_SCHN_FRONT_LEFT
, set_vol
)) < 0) {
193 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Error setting left channel, %s\n",
197 mp_msg(MSGT_AO
,MSGL_DBG2
,"left=%li, ", set_vol
);
199 set_vol
= vol
->right
/ f_multi
+ pmin
+ 0.5;
201 if ((err
= snd_mixer_selem_set_playback_volume(elem
, SND_MIXER_SCHN_FRONT_RIGHT
, set_vol
)) < 0) {
202 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Error setting right channel, %s\n",
206 mp_msg(MSGT_AO
,MSGL_DBG2
,"right=%li, pmin=%li, pmax=%li, mult=%f\n",
207 set_vol
, pmin
, pmax
, f_multi
);
210 case AOCONTROL_GET_VOLUME
: {
211 ao_control_vol_t
*vol
= arg
;
212 snd_mixer_selem_get_playback_volume(elem
, SND_MIXER_SCHN_FRONT_LEFT
, &get_vol
);
213 vol
->left
= (get_vol
- pmin
) * f_multi
;
214 snd_mixer_selem_get_playback_volume(elem
, SND_MIXER_SCHN_FRONT_RIGHT
, &get_vol
);
215 vol
->right
= (get_vol
- pmin
) * f_multi
;
216 mp_msg(MSGT_AO
,MSGL_DBG2
,"left=%f, right=%f\n",vol
->left
,vol
->right
);
219 case AOCONTROL_SET_MUTE
: {
221 if (!snd_mixer_selem_has_playback_switch(elem
))
223 if (!snd_mixer_selem_has_playback_switch_joined(elem
)) {
224 snd_mixer_selem_set_playback_switch(
225 elem
, SND_MIXER_SCHN_FRONT_RIGHT
, !*mute
);
227 snd_mixer_selem_set_playback_switch(elem
, SND_MIXER_SCHN_FRONT_LEFT
,
231 case AOCONTROL_GET_MUTE
: {
233 if (!snd_mixer_selem_has_playback_switch(elem
))
236 snd_mixer_selem_get_playback_switch(elem
, SND_MIXER_SCHN_FRONT_LEFT
,
239 if (!snd_mixer_selem_has_playback_switch_joined(elem
)) {
240 snd_mixer_selem_get_playback_switch(
241 elem
, SND_MIXER_SCHN_FRONT_RIGHT
, &tmp
);
247 snd_mixer_close(handle
);
250 snd_mixer_close(handle
);
251 return CONTROL_ERROR
;
255 return CONTROL_UNKNOWN
;
258 static void parse_device (char *dest
, const char *src
, int len
)
261 memmove(dest
, src
, len
);
263 while ((tmp
= strrchr(dest
, '.')))
265 while ((tmp
= strrchr(dest
, '=')))
269 static void print_help (void)
271 mp_tmsg (MSGT_AO
, MSGL_FATAL
,
272 "\n[AO_ALSA] -ao alsa commandline help:\n"\
273 "[AO_ALSA] Example: mplayer -ao alsa:device=hw=0.3\n"\
274 "[AO_ALSA] Sets first card fourth hardware device.\n\n"\
275 "[AO_ALSA] Options:\n"\
276 "[AO_ALSA] noblock\n"\
277 "[AO_ALSA] Opens device in non-blocking mode.\n"\
278 "[AO_ALSA] device=<device-name>\n"\
279 "[AO_ALSA] Sets device (change , to . and : to =)\n");
282 static int str_maxlen(void *strp
) {
283 strarg_t
*str
= strp
;
284 return str
->len
<= ALSA_DEVICE_SIZE
;
287 static int try_open_device(const char *device
, int open_mode
, int try_ac3
)
290 char *ac3_device
, *args
;
293 /* to set the non-audio bit, use AES0=6 */
294 len
= strlen(device
);
295 ac3_device
= malloc(len
+ 7 + 1);
298 strcpy(ac3_device
, device
);
299 args
= strchr(ac3_device
, ':');
301 /* no existing parameters: add it behind device name */
302 strcat(ac3_device
, ":AES0=6");
306 while (isspace(*args
));
308 /* ":" but no parameters */
309 strcat(ac3_device
, "AES0=6");
310 } else if (*args
!= '{') {
311 /* a simple list of parameters: add it at the end of the list */
312 strcat(ac3_device
, ",AES0=6");
314 /* parameters in config syntax: add it inside the { } block */
317 while (len
> 0 && isspace(ac3_device
[len
]));
318 if (ac3_device
[len
] == '}')
319 strcpy(ac3_device
+ len
, " AES0=6}");
322 err
= snd_pcm_open(&alsa_handler
, ac3_device
, SND_PCM_STREAM_PLAYBACK
,
328 return snd_pcm_open(&alsa_handler
, device
, SND_PCM_STREAM_PLAYBACK
,
333 open & setup audio device
334 return: 1=success 0=fail
336 static int init(int rate_hz
, int channels
, int format
, int flags
)
341 snd_pcm_uframes_t chunk_size
;
342 snd_pcm_uframes_t bufsize
;
343 snd_pcm_uframes_t boundary
;
344 const opt_t subopts
[] = {
345 {"block", OPT_ARG_BOOL
, &block
, NULL
},
346 {"device", OPT_ARG_STR
, &device
, str_maxlen
},
350 char alsa_device
[ALSA_DEVICE_SIZE
+ 1];
351 // make sure alsa_device is null-terminated even when using strncpy etc.
352 memset(alsa_device
, 0, ALSA_DEVICE_SIZE
+ 1);
354 mp_msg(MSGT_AO
,MSGL_V
,"alsa-init: requested format: %d Hz, %d channels, %x\n", rate_hz
,
357 mp_msg(MSGT_AO
,MSGL_V
,"alsa-init: using ALSA %s\n", snd_asoundlib_version());
361 snd_lib_error_set_handler(alsa_error_handler
);
363 ao_data
.samplerate
= rate_hz
;
364 ao_data
.format
= format
;
365 ao_data
.channels
= channels
;
370 alsa_format
= SND_PCM_FORMAT_S8
;
373 alsa_format
= SND_PCM_FORMAT_U8
;
375 case AF_FORMAT_U16_LE
:
376 alsa_format
= SND_PCM_FORMAT_U16_LE
;
378 case AF_FORMAT_U16_BE
:
379 alsa_format
= SND_PCM_FORMAT_U16_BE
;
381 case AF_FORMAT_AC3_LE
:
382 case AF_FORMAT_S16_LE
:
383 alsa_format
= SND_PCM_FORMAT_S16_LE
;
385 case AF_FORMAT_AC3_BE
:
386 case AF_FORMAT_S16_BE
:
387 alsa_format
= SND_PCM_FORMAT_S16_BE
;
389 case AF_FORMAT_U32_LE
:
390 alsa_format
= SND_PCM_FORMAT_U32_LE
;
392 case AF_FORMAT_U32_BE
:
393 alsa_format
= SND_PCM_FORMAT_U32_BE
;
395 case AF_FORMAT_S32_LE
:
396 alsa_format
= SND_PCM_FORMAT_S32_LE
;
398 case AF_FORMAT_S32_BE
:
399 alsa_format
= SND_PCM_FORMAT_S32_BE
;
401 case AF_FORMAT_U24_LE
:
402 alsa_format
= SND_PCM_FORMAT_U24_3LE
;
404 case AF_FORMAT_U24_BE
:
405 alsa_format
= SND_PCM_FORMAT_U24_3BE
;
407 case AF_FORMAT_S24_LE
:
408 alsa_format
= SND_PCM_FORMAT_S24_3LE
;
410 case AF_FORMAT_S24_BE
:
411 alsa_format
= SND_PCM_FORMAT_S24_3BE
;
413 case AF_FORMAT_FLOAT_LE
:
414 alsa_format
= SND_PCM_FORMAT_FLOAT_LE
;
416 case AF_FORMAT_FLOAT_BE
:
417 alsa_format
= SND_PCM_FORMAT_FLOAT_BE
;
419 case AF_FORMAT_MU_LAW
:
420 alsa_format
= SND_PCM_FORMAT_MU_LAW
;
422 case AF_FORMAT_A_LAW
:
423 alsa_format
= SND_PCM_FORMAT_A_LAW
;
427 alsa_format
= SND_PCM_FORMAT_MPEG
; //? default should be -1
435 * sets opening sequence for SPDIF
436 * sets also the playback and other switches 'on the fly'
437 * while opening the abstract alias for the spdif subdevice
440 if (AF_FORMAT_IS_AC3(format
)) {
441 device
.str
= "iec958";
442 mp_msg(MSGT_AO
,MSGL_V
,"alsa-spdif-init: playing AC3, %i channels\n", channels
);
445 /* in any case for multichannel playback we should select
451 device
.str
= "default";
452 mp_msg(MSGT_AO
,MSGL_V
,"alsa-init: setup for 1/2 channel(s)\n");
455 if (alsa_format
== SND_PCM_FORMAT_FLOAT_LE
)
456 // hack - use the converter plugin
457 device
.str
= "plug:surround40";
459 device
.str
= "surround40";
460 mp_msg(MSGT_AO
,MSGL_V
,"alsa-init: device set to surround40\n");
463 if (alsa_format
== SND_PCM_FORMAT_FLOAT_LE
)
464 device
.str
= "plug:surround51";
466 device
.str
= "surround51";
467 mp_msg(MSGT_AO
,MSGL_V
,"alsa-init: device set to surround51\n");
470 if (alsa_format
== SND_PCM_FORMAT_FLOAT_LE
)
471 device
.str
= "plug:surround71";
473 device
.str
= "surround71";
474 mp_msg(MSGT_AO
,MSGL_V
,"alsa-init: device set to surround71\n");
477 device
.str
= "default";
478 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] %d channels are not supported.\n",channels
);
480 device
.len
= strlen(device
.str
);
481 if (subopt_parse(ao_subdevice
, subopts
) != 0) {
485 parse_device(alsa_device
, device
.str
, device
.len
);
487 mp_msg(MSGT_AO
,MSGL_V
,"alsa-init: using device %s\n", alsa_device
);
490 int open_mode
= block
? 0 : SND_PCM_NONBLOCK
;
491 int isac3
= AF_FORMAT_IS_AC3(format
);
492 //modes = 0, SND_PCM_NONBLOCK, SND_PCM_ASYNC
493 if ((err
= try_open_device(alsa_device
, open_mode
, isac3
)) < 0)
495 if (err
!= -EBUSY
&& !block
) {
496 mp_tmsg(MSGT_AO
,MSGL_INFO
,"[AO_ALSA] Open in nonblock-mode failed, trying to open in block-mode.\n");
497 if ((err
= try_open_device(alsa_device
, 0, isac3
)) < 0) {
498 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Playback open error: %s\n", snd_strerror(err
));
502 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Playback open error: %s\n", snd_strerror(err
));
507 if ((err
= snd_pcm_nonblock(alsa_handler
, 0)) < 0) {
508 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AL_ALSA] Error setting block-mode %s.\n", snd_strerror(err
));
510 mp_msg(MSGT_AO
,MSGL_V
,"alsa-init: pcm opened in blocking mode\n");
513 snd_pcm_hw_params_alloca(&alsa_hwparams
);
514 snd_pcm_sw_params_alloca(&alsa_swparams
);
516 // setting hw-parameters
517 if ((err
= snd_pcm_hw_params_any(alsa_handler
, alsa_hwparams
)) < 0)
519 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to get initial parameters: %s\n",
524 err
= snd_pcm_hw_params_set_access(alsa_handler
, alsa_hwparams
,
525 SND_PCM_ACCESS_RW_INTERLEAVED
);
527 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to set access type: %s\n",
532 /* workaround for nonsupported formats
533 sets default format to S16_LE if the given formats aren't supported */
534 if ((err
= snd_pcm_hw_params_test_format(alsa_handler
, alsa_hwparams
,
537 mp_tmsg(MSGT_AO
,MSGL_INFO
,
538 "[AO_ALSA] Format %s is not supported by hardware, trying default.\n", af_fmt2str_short(format
));
539 alsa_format
= SND_PCM_FORMAT_S16_LE
;
540 if (AF_FORMAT_IS_AC3(ao_data
.format
))
541 ao_data
.format
= AF_FORMAT_AC3_LE
;
543 ao_data
.format
= AF_FORMAT_S16_LE
;
546 if ((err
= snd_pcm_hw_params_set_format(alsa_handler
, alsa_hwparams
,
549 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to set format: %s\n",
554 if ((err
= snd_pcm_hw_params_set_channels_near(alsa_handler
, alsa_hwparams
,
555 &ao_data
.channels
)) < 0)
557 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to set channels: %s\n",
562 /* workaround for buggy rate plugin (should be fixed in ALSA 1.0.11)
563 prefer our own resampler, since that allows users to choose the resampler,
564 even per file if desired */
565 if ((err
= snd_pcm_hw_params_set_rate_resample(alsa_handler
, alsa_hwparams
,
568 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to disable resampling: %s\n",
573 if ((err
= snd_pcm_hw_params_set_rate_near(alsa_handler
, alsa_hwparams
,
574 &ao_data
.samplerate
, NULL
)) < 0)
576 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to set samplerate-2: %s\n",
581 bytes_per_sample
= af_fmt2bits(ao_data
.format
) / 8;
582 bytes_per_sample
*= ao_data
.channels
;
583 ao_data
.bps
= ao_data
.samplerate
* bytes_per_sample
;
585 if ((err
= snd_pcm_hw_params_set_buffer_time_near(alsa_handler
, alsa_hwparams
,
586 &(unsigned int){BUFFER_TIME
}, NULL
)) < 0)
588 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to set buffer time near: %s\n",
593 if ((err
= snd_pcm_hw_params_set_periods_near(alsa_handler
, alsa_hwparams
,
594 &(unsigned int){FRAGCOUNT
}, NULL
)) < 0) {
595 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to set periods: %s\n",
600 /* finally install hardware parameters */
601 if ((err
= snd_pcm_hw_params(alsa_handler
, alsa_hwparams
)) < 0)
603 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to set hw-parameters: %s\n",
607 // end setting hw-params
610 // gets buffersize for control
611 if ((err
= snd_pcm_hw_params_get_buffer_size(alsa_hwparams
, &bufsize
)) < 0)
613 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to get buffersize: %s\n", snd_strerror(err
));
617 ao_data
.buffersize
= bufsize
* bytes_per_sample
;
618 mp_msg(MSGT_AO
,MSGL_V
,"alsa-init: got buffersize=%i\n", ao_data
.buffersize
);
621 if ((err
= snd_pcm_hw_params_get_period_size(alsa_hwparams
, &chunk_size
, NULL
)) < 0) {
622 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO ALSA] Unable to get period size: %s\n", snd_strerror(err
));
625 mp_msg(MSGT_AO
,MSGL_V
,"alsa-init: got period size %li\n", chunk_size
);
627 ao_data
.outburst
= chunk_size
* bytes_per_sample
;
629 /* setting software parameters */
630 if ((err
= snd_pcm_sw_params_current(alsa_handler
, alsa_swparams
)) < 0) {
631 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to get sw-parameters: %s\n",
635 if ((err
= snd_pcm_sw_params_get_boundary(alsa_swparams
, &boundary
)) < 0) {
636 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to get boundary: %s\n",
640 /* start playing when one period has been written */
641 if ((err
= snd_pcm_sw_params_set_start_threshold(alsa_handler
, alsa_swparams
, chunk_size
)) < 0) {
642 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to set start threshold: %s\n",
646 /* disable underrun reporting */
647 if ((err
= snd_pcm_sw_params_set_stop_threshold(alsa_handler
, alsa_swparams
, boundary
)) < 0) {
648 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to set stop threshold: %s\n",
652 /* play silence when there is an underrun */
653 if ((err
= snd_pcm_sw_params_set_silence_size(alsa_handler
, alsa_swparams
, boundary
)) < 0) {
654 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to set silence size: %s\n",
658 if ((err
= snd_pcm_sw_params(alsa_handler
, alsa_swparams
)) < 0) {
659 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Unable to get sw-parameters: %s\n",
663 /* end setting sw-params */
665 mp_msg(MSGT_AO
,MSGL_V
,"alsa: %d Hz/%d channels/%d bpf/%d bytes buffer/%s\n",
666 ao_data
.samplerate
, ao_data
.channels
, (int)bytes_per_sample
, ao_data
.buffersize
,
667 snd_pcm_format_description(alsa_format
));
669 } // end switch alsa_handler (spdif)
670 alsa_can_pause
= snd_pcm_hw_params_can_pause(alsa_hwparams
);
675 /* close audio device */
676 static void uninit(int immed
)
683 snd_pcm_drain(alsa_handler
);
685 if ((err
= snd_pcm_close(alsa_handler
)) < 0)
687 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] pcm close error: %s\n", snd_strerror(err
));
692 mp_msg(MSGT_AO
,MSGL_V
,"alsa-uninit: pcm closed\n");
696 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] No handler defined!\n");
700 static void audio_pause(void)
704 if (alsa_can_pause
) {
705 if ((err
= snd_pcm_pause(alsa_handler
, 1)) < 0)
707 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] pcm pause error: %s\n", snd_strerror(err
));
710 mp_msg(MSGT_AO
,MSGL_V
,"alsa-pause: pause supported by hardware\n");
712 if (snd_pcm_delay(alsa_handler
, &prepause_frames
) < 0
713 || prepause_frames
< 0)
716 if ((err
= snd_pcm_drop(alsa_handler
)) < 0)
718 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] pcm drop error: %s\n", snd_strerror(err
));
724 static void audio_resume(void)
728 if (snd_pcm_state(alsa_handler
) == SND_PCM_STATE_SUSPENDED
) {
729 mp_tmsg(MSGT_AO
,MSGL_INFO
,"[AO_ALSA] Pcm in suspend mode, trying to resume.\n");
730 while ((err
= snd_pcm_resume(alsa_handler
)) == -EAGAIN
) sleep(1);
732 if (alsa_can_pause
) {
733 if ((err
= snd_pcm_pause(alsa_handler
, 0)) < 0)
735 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] pcm resume error: %s\n", snd_strerror(err
));
738 mp_msg(MSGT_AO
,MSGL_V
,"alsa-resume: resume supported by hardware\n");
740 if ((err
= snd_pcm_prepare(alsa_handler
)) < 0)
742 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] pcm prepare error: %s\n", snd_strerror(err
));
745 if (prepause_frames
) {
746 void *silence
= calloc(prepause_frames
, bytes_per_sample
);
747 play(silence
, prepause_frames
* bytes_per_sample
, 0);
753 /* stop playing and empty buffers (for seeking/pause) */
754 static void reset(void)
759 if ((err
= snd_pcm_drop(alsa_handler
)) < 0)
761 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] pcm prepare error: %s\n", snd_strerror(err
));
764 if ((err
= snd_pcm_prepare(alsa_handler
)) < 0)
766 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] pcm prepare error: %s\n", snd_strerror(err
));
773 plays 'len' bytes of 'data'
774 returns: number of bytes played
775 modified last at 29.06.02 by jp
776 thanxs for marius <marius@rospot.com> for giving us the light ;)
779 static int play(void* data
, int len
, int flags
)
782 snd_pcm_sframes_t res
= 0;
783 if (!(flags
& AOPLAY_FINAL_CHUNK
))
784 len
= len
/ ao_data
.outburst
* ao_data
.outburst
;
785 num_frames
= len
/ bytes_per_sample
;
787 //mp_msg(MSGT_AO,MSGL_ERR,"alsa-play: frames=%i, len=%i\n",num_frames,len);
790 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Device configuration error.");
798 res
= snd_pcm_writei(alsa_handler
, data
, num_frames
);
804 else if (res
== -ESTRPIPE
) { /* suspend */
805 mp_tmsg(MSGT_AO
,MSGL_INFO
,"[AO_ALSA] Pcm in suspend mode, trying to resume.\n");
806 while ((res
= snd_pcm_resume(alsa_handler
)) == -EAGAIN
)
810 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Write error: %s\n", snd_strerror(res
));
811 mp_tmsg(MSGT_AO
,MSGL_INFO
,"[AO_ALSA] Trying to reset soundcard.\n");
812 if ((res
= snd_pcm_prepare(alsa_handler
)) < 0) {
813 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] pcm prepare error: %s\n", snd_strerror(res
));
820 return res
< 0 ? res
: res
* bytes_per_sample
;
823 /* how many byes are free in the buffer */
824 static int get_space(void)
826 snd_pcm_status_t
*status
;
829 snd_pcm_status_alloca(&status
);
831 if ((ret
= snd_pcm_status(alsa_handler
, status
)) < 0)
833 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO_ALSA] Cannot get pcm status: %s\n", snd_strerror(ret
));
837 unsigned space
= snd_pcm_status_get_avail(status
) * bytes_per_sample
;
838 if (space
> ao_data
.buffersize
) // Buffer underrun?
839 space
= ao_data
.buffersize
;
843 /* delay in seconds between first and last sample in buffer */
844 static float get_delay(void)
847 snd_pcm_sframes_t delay
;
849 if (snd_pcm_delay(alsa_handler
, &delay
) < 0)
853 /* underrun - move the application pointer forward to catch up */
854 snd_pcm_forward(alsa_handler
, -delay
);
857 return (float)delay
/ (float)ao_data
.samplerate
;