Commit 7e5b0127 authored by Rafaël Carré's avatar Rafaël Carré

Backports [23022]

parent 4203f6a1
......@@ -6,6 +6,7 @@ Changes between 0.8.6c and 0.8.6d (if we ever release it):
Various bugfixes:
* Fix invalid free in bookmarks loading code.
* Mozilla plugin: supports a reasonable amount of MIME types on Windows
* Linux: Fix SPDIF passthrough with ALSA
Mac OS X Interface & Port:
* Apple Remote support on Mac OS X 10.5 Leopard with enhanced functionality
......
......@@ -815,28 +815,12 @@ static void ALSAFill( aout_instance_t * p_aout )
{
/* Here the device should be either in the RUNNING state.
* p_status is valid. */
#if 0
/* This apparently does not work correctly in Alsa 1.0.11 */
snd_pcm_status_get_tstamp( p_status, &ts_next );
next_date = (mtime_t)ts_next.tv_sec * 1000000 + ts_next.tv_usec;
if( next_date )
{
next_date += (mtime_t)snd_pcm_status_get_delay(p_status)
* 1000000 / p_aout->output.output.i_rate;
}
else
#endif
{
/* With screwed ALSA drivers the timestamp is always zero;
* use another method then */
snd_pcm_sframes_t delay = 0;
snd_pcm_delay( p_sys->p_snd_pcm, &delay );
next_date = mdate() + (mtime_t)(delay) * 1000000 /
p_aout->output.output.i_rate
* p_aout->output.output.i_frame_length;
}
snd_pcm_sframes_t delay = snd_pcm_status_get_delay( p_status );
int i_bytes = snd_pcm_frames_to_bytes( p_sys->p_snd_pcm, delay );
next_date = mdate() + ( (mtime_t)i_bytes * 1000000
/ p_aout->output.output.i_bytes_per_frame
/ p_aout->output.output.i_rate
* p_aout->output.output.i_frame_length );
}
p_buffer = aout_OutputNextBuffer( p_aout, next_date,
......
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