Commit b00308eb authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

ALSA: remove hack. Do not fail 10 times to open the same device.

parent 67673fdc
...@@ -435,41 +435,18 @@ static int Open( vlc_object_t *p_this ) ...@@ -435,41 +435,18 @@ static int Open( vlc_object_t *p_this )
/* Open the device */ /* Open the device */
msg_Dbg( p_aout, "opening ALSA device `%s'", psz_device ); msg_Dbg( p_aout, "opening ALSA device `%s'", psz_device );
for( unsigned i = 10; i; i-- ) int val = snd_pcm_open (&p_sys->p_snd_pcm, psz_device,
SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
if (val != 0)
{ {
int val = snd_pcm_open( &p_sys->p_snd_pcm, psz_device, msg_Err (p_aout, "cannot open ALSA device `%s' (%s)",
SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK ); psz_device, snd_strerror (val));
if( val == 0 ) dialog_Fatal (p_aout, _("Audio output failed"),
break; /* success! */ _("The audio device \"%s\" could not be used:\n%s."),
psz_device, snd_strerror (val));
if( val != -EBUSY ) free (psz_device);
{ free (p_sys);
msg_Err( p_aout, "cannot open ALSA device `%s' (%s)", return VLC_EGENERIC;
psz_device, snd_strerror( val ) );
dialog_Fatal( p_aout, _("Audio output failed"),
_("VLC could not open the ALSA device \"%s\" (%s)."),
psz_device, snd_strerror( val ) );
free( psz_device );
free( p_sys );
return VLC_EGENERIC;
}
/* Since it seems snd_pcm_close hasn't really released the device at
the time it returns, probe if the device is available in loop for 1s.
We cannot use blocking mode since the we would wait indefinitely when
switching from a dmx device to surround51. */
if( i == 1 )
{
msg_Err( p_aout, "audio device %s is already in use",
psz_device );
dialog_Fatal( p_aout, _("Audio output failed"),
_("The audio device \"%s\" is already in use."),
psz_device );
free( psz_device );
free( p_sys );
return VLC_EGENERIC;
}
msleep( CLOCK_FREQ / 10 );
} }
free( psz_device ); free( psz_device );
...@@ -512,7 +489,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -512,7 +489,6 @@ static int Open( vlc_object_t *p_this )
/* Due to some bugs in alsa with some drivers, we need to retry in s16l /* Due to some bugs in alsa with some drivers, we need to retry in s16l
if snd_pcm_hw_params fails in fl32 */ if snd_pcm_hw_params fails in fl32 */
int val;
retry: retry:
/* Get Initial hardware parameters */ /* Get Initial hardware parameters */
val = snd_pcm_hw_params_any( p_sys->p_snd_pcm, p_hw ); val = snd_pcm_hw_params_any( p_sys->p_snd_pcm, p_hw );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment