Commit 8362fa0d authored by Laurent Aimar's avatar Laurent Aimar

* all: woops (debug messages left).

parent 70ee5fbf
...@@ -639,10 +639,6 @@ picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block ) ...@@ -639,10 +639,6 @@ picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block )
{ {
p_pic->date = p_sys->i_pts; p_pic->date = p_sys->i_pts;
static int64_t i_old = 0;
msg_Dbg( p_dec, "pts=%lld diff=%lld", p_pic->date, p_pic->date - i_old );
i_old = p_pic->date;
/* interpolate the next PTS */ /* interpolate the next PTS */
if( p_sys->p_context->frame_rate > 0 ) if( p_sys->p_context->frame_rate > 0 )
{ {
...@@ -670,7 +666,6 @@ picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block ) ...@@ -670,7 +666,6 @@ picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block )
else else
{ {
p_dec->pf_vout_buffer_del( p_dec, p_pic ); p_dec->pf_vout_buffer_del( p_dec, p_pic );
msg_Dbg( p_dec, "pts=0" );
} }
} }
......
...@@ -702,9 +702,6 @@ static int Demux( demux_t *p_demux ) ...@@ -702,9 +702,6 @@ static int Demux( demux_t *p_demux )
else else
p_block->i_pts = 0; p_block->i_pts = 0;
if( tk->fmt.i_cat == VIDEO_ES )
msg_Dbg( p_demux, "pts=%lld dts=%lld", p_block->i_pts, p_block->i_dts );
if( !tk->b_drms || ( tk->b_drms && tk->p_drms ) ) if( !tk->b_drms || ( tk->b_drms && tk->p_drms ) )
es_out_Send( p_demux->out, tk->p_es, p_block ); es_out_Send( p_demux->out, tk->p_es, p_block );
} }
......
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