Commit 5017b466 authored by Michel Kaempf's avatar Michel Kaempf

* ac3_decoder/ac3_decoder.c, audio_decoder/audio_decoder.c :

- `msleep' de `INPUT_PTS_DELAY' et non `(3 * INPUT_PTS_DELAY) / 4'
avant le d�marrage des d�codeurs audio ;
parent 4b504cfc
......@@ -202,7 +202,7 @@ static void RunThread( ac3dec_thread_t * p_ac3dec )
{
intf_DbgMsg( "ac3dec debug: running ac3 decoder thread (%p) (pid == %i)\n", p_ac3dec, getpid() );
msleep( (3 * INPUT_PTS_DELAY) / 4 );
msleep( INPUT_PTS_DELAY );
/* Initializing the ac3 decoder thread */
if ( InitThread(p_ac3dec) ) /* XXX */
......
......@@ -800,7 +800,7 @@ static void RunThread( adec_thread_t * p_adec )
intf_DbgMsg("adec debug: running audio decoder thread (%p) (pid == %i)\n", p_adec, getpid());
msleep( (3 * INPUT_PTS_DELAY) / 4 );
msleep( INPUT_PTS_DELAY );
/* Initializing the audio decoder thread */
if ( InitThread(p_adec) )
......
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