[vlc-commits] demux: ts: remove leftoff debug
    Francois Cartegnie 
    git at videolan.org
       
    Sun Feb 28 21:26:58 CET 2016
    
    
  
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Sun Feb 28 21:22:11 2016 +0100| [4130fedfd22fe25bd80cc3990f93c3200c604e17] | committer: Francois Cartegnie
demux: ts: remove leftoff debug
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4130fedfd22fe25bd80cc3990f93c3200c604e17
---
 modules/demux/mpeg/ts.c |    2 --
 1 file changed, 2 deletions(-)
diff --git a/modules/demux/mpeg/ts.c b/modules/demux/mpeg/ts.c
index e14e85d..2cde7ba 100644
--- a/modules/demux/mpeg/ts.c
+++ b/modules/demux/mpeg/ts.c
@@ -2135,10 +2135,8 @@ static void PCRCheckDTS( demux_t *p_demux, ts_pmt_t *p_pmt, mtime_t i_pcr)
         i_pts = TimeStampWrapAround( i_pcr, i_pts );
 
         if( i_dts > 0 && i_dts <= i_pcr ) {
-            msg_Err( p_demux, "send queued data for pid %d: DTS %"PRId64" >= PCR %"PRId64"\n", p_pid->i_pid, i_dts, i_pcr);
             ParsePESDataChain( p_demux, p_pid );
         } else if( i_pts > 0 && i_pts <= i_pcr ) {
-            msg_Err( p_demux, "send queued data for pid %d: PTS %"PRId64" >= PCR %"PRId64"\n", p_pid->i_pid, i_pts, i_pcr);
             ParsePESDataChain( p_demux, p_pid );
         }
     }
    
    
More information about the vlc-commits
mailing list