Commit 38dd5944 authored by Christophe Massiot's avatar Christophe Massiot

* modules/codec/mpeg_audio.c: Add a debug message for broken streams.

parent 68652ddf
...@@ -199,6 +199,7 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block ) ...@@ -199,6 +199,7 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
if( !aout_DateGet( &p_sys->end_date ) && !(*pp_block)->i_pts ) if( !aout_DateGet( &p_sys->end_date ) && !(*pp_block)->i_pts )
{ {
/* We've just started the stream, wait for the first PTS. */ /* We've just started the stream, wait for the first PTS. */
msg_Dbg( p_dec, "waiting for PTS" );
block_Release( *pp_block ); block_Release( *pp_block );
return NULL; return NULL;
} }
......
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