]> git.sesse.net Git - vlc/commitdiff
* all: woops (debug messages left).
authorLaurent Aimar <fenrir@videolan.org>
Mon, 21 Feb 2005 09:05:11 +0000 (09:05 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 21 Feb 2005 09:05:11 +0000 (09:05 +0000)
modules/codec/ffmpeg/video.c
modules/demux/mp4/mp4.c

index 8e58d370e479c32500737e001d1c778117b8bf06..5ba911131a5d1b15818eda7440eac1f57d558b62 100644 (file)
@@ -639,10 +639,6 @@ picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block )
         {
             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 */
             if( p_sys->p_context->frame_rate > 0 )
             {
@@ -670,7 +666,6 @@ picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block )
         else
         {
             p_dec->pf_vout_buffer_del( p_dec, p_pic );
-            msg_Dbg( p_dec, "pts=0" );
         }
     }
 
index f912ecaf03c980954530a5aeba2d8df626007a5f..ba8dd28dd48ea45cc77053283ab540a74f3f6eaa 100644 (file)
@@ -702,9 +702,6 @@ static int Demux( demux_t *p_demux )
                 else
                     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 ) )
                     es_out_Send( p_demux->out, tk->p_es, p_block );
             }