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

Cosmetic fix (excessive indentation)

parent 35c8e86d
...@@ -788,16 +788,13 @@ static void ALSAFill( aout_instance_t * p_aout ) ...@@ -788,16 +788,13 @@ static void ALSAFill( aout_instance_t * p_aout )
mtime_t next_date; mtime_t next_date;
/* Fill in the buffer until space or audio output buffer shortage */ /* Fill in the buffer until space or audio output buffer shortage */
{
/* Get the status */ /* Get the status */
i_snd_rc = snd_pcm_status( p_sys->p_snd_pcm, p_status ); i_snd_rc = snd_pcm_status( p_sys->p_snd_pcm, p_status );
if( i_snd_rc < 0 ) if( i_snd_rc < 0 )
{ {
msg_Err( p_aout, "unable to get the device's status (%s)", msg_Err( p_aout, "cannot get device status" );
snd_strerror( i_snd_rc ) ); goto error;
msleep( p_sys->i_period_time >> 1 );
return;
} }
/* Handle buffer underruns and get the status again */ /* Handle buffer underruns and get the status again */
...@@ -806,27 +803,20 @@ static void ALSAFill( aout_instance_t * p_aout ) ...@@ -806,27 +803,20 @@ static void ALSAFill( aout_instance_t * p_aout )
/* Prepare the device */ /* Prepare the device */
i_snd_rc = snd_pcm_prepare( p_sys->p_snd_pcm ); i_snd_rc = snd_pcm_prepare( p_sys->p_snd_pcm );
if( i_snd_rc == 0 ) if( i_snd_rc )
{ {
msg_Err( p_aout, "cannot recover from buffer underrun" );
goto error;
}
msg_Dbg( p_aout, "recovered from buffer underrun" ); msg_Dbg( p_aout, "recovered from buffer underrun" );
/* Get the new status */ /* Get the new status */
i_snd_rc = snd_pcm_status( p_sys->p_snd_pcm, p_status ); i_snd_rc = snd_pcm_status( p_sys->p_snd_pcm, p_status );
if( i_snd_rc < 0 ) if( i_snd_rc < 0 )
{ {
msg_Err( p_aout, "unable to get the device's status after " msg_Err( p_aout, "cannot get device status after recovery" );
"recovery (%s)", snd_strerror( i_snd_rc ) ); goto error;
msleep( p_sys->i_period_time >> 1 );
return;
}
}
else
{
msg_Err( p_aout, "unable to recover from buffer underrun" );
msleep( p_sys->i_period_time >> 1 );
return;
} }
/* Underrun, try to recover as quickly as possible */ /* Underrun, try to recover as quickly as possible */
...@@ -854,22 +844,18 @@ static void ALSAFill( aout_instance_t * p_aout ) ...@@ -854,22 +844,18 @@ static void ALSAFill( aout_instance_t * p_aout )
snd_pcm_sframes_t delay = 0; snd_pcm_sframes_t delay = 0;
snd_pcm_delay( p_sys->p_snd_pcm, &delay ); snd_pcm_delay( p_sys->p_snd_pcm, &delay );
next_date = mdate() + (mtime_t)(delay) * 1000000 / next_date = mdate() + (mtime_t)(delay) * 1000000
p_aout->output.output.i_rate / p_aout->output.output.i_rate
* p_aout->output.output.i_frame_length; * p_aout->output.output.i_frame_length;
} }
} }
p_buffer = aout_OutputNextBuffer( p_aout, next_date, p_buffer = aout_OutputNextBuffer( p_aout, next_date,
(p_aout->output.output.i_format == (p_aout->output.output.i_format == VLC_FOURCC('s','p','d','i')) );
VLC_FOURCC('s','p','d','i')) );
/* Audio output buffer shortage -> stop the fill process and wait */ /* Audio output buffer shortage -> stop the fill process and wait */
if( p_buffer == NULL ) if( p_buffer == NULL )
{ goto error;
msleep( p_sys->i_period_time >> 1 );
return;
}
for (;;) for (;;)
{ {
...@@ -884,21 +870,26 @@ static void ALSAFill( aout_instance_t * p_aout ) ...@@ -884,21 +870,26 @@ static void ALSAFill( aout_instance_t * p_aout )
while( !p_aout->b_die && !p_aout->p_libvlc->b_die && while( !p_aout->b_die && !p_aout->p_libvlc->b_die &&
( i_snd_rc = snd_pcm_resume( p_sys->p_snd_pcm ) ) == -EAGAIN ) ( i_snd_rc = snd_pcm_resume( p_sys->p_snd_pcm ) ) == -EAGAIN )
msleep( 100000 ); {
msleep( 1000000 );
}
if( i_snd_rc < 0 ) if( i_snd_rc < 0 )
/* Device does not supprot resuming, restart it */ /* Device does not supprot resuming, restart it */
i_snd_rc = snd_pcm_prepare( p_sys->p_snd_pcm ); i_snd_rc = snd_pcm_prepare( p_sys->p_snd_pcm );
} }
if( i_snd_rc < 0 ) if( i_snd_rc < 0 )
{ msg_Err( p_aout, "cannot write: %s", snd_strerror( i_snd_rc ) );
msg_Err( p_aout, "write failed (%s)",
snd_strerror( i_snd_rc ) );
}
aout_BufferFree( p_buffer ); aout_BufferFree( p_buffer );
} return;
error:
if( i_snd_rc < 0 )
msg_Err( p_aout, "ALSA error: %s", snd_strerror( i_snd_rc ) );
msleep( p_sys->i_period_time >> 1 );
} }
static void GetDevicesForCard( module_config_t *p_item, int i_card ); static void GetDevicesForCard( module_config_t *p_item, int i_card );
......
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