]> git.sesse.net Git - vlc/commitdiff
* mpeg_audio.c: removed some fprintf...
authorLaurent Aimar <fenrir@videolan.org>
Tue, 18 Feb 2003 18:49:11 +0000 (18:49 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Tue, 18 Feb 2003 18:49:11 +0000 (18:49 +0000)
modules/codec/mpeg_audio.c

index 930efb29ba99db0f42abed76fd3442481a9caeaa..b3e416dc7dca35c000e877329e646820ae121f98 100644 (file)
@@ -2,7 +2,7 @@
  * mpeg_audio.c: parse MPEG audio sync info and packetize the stream
  *****************************************************************************
  * Copyright (C) 2001-2003 VideoLAN
- * $Id: mpeg_audio.c,v 1.11 2003/02/18 00:51:40 fenrir Exp $
+ * $Id: mpeg_audio.c,v 1.12 2003/02/18 18:49:11 fenrir Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Eric Petit <titer@videolan.org>
@@ -203,7 +203,6 @@ static int RunDecoder( decoder_fifo_t *p_fifo )
         if ( p_dec->p_fifo->b_die || p_dec->p_fifo->b_error ) break;
 
         /* Set the Presentation Time Stamp */
-        fprintf( stderr, "mpgadec pts:%lld\n", pts );
         if ( pts != 0 && pts != aout_DateGet( &end_date ) )
         {
             aout_DateSet( &end_date, pts );
@@ -289,7 +288,6 @@ static int RunDecoder( decoder_fifo_t *p_fifo )
             byte_t p_junk[MAX_FRAME_SIZE];
             int    i_skip = i_current_frame_size - MAD_BUFFER_GUARD;
 
-            fprintf( stderr, "waiting pts\n" );
             /* We've just started the stream, wait for the first PTS. */
             while( i_skip > 0 )
             {
@@ -392,9 +390,7 @@ static int RunDecoder( decoder_fifo_t *p_fifo )
         p_buffer->i_nb_bytes = i_current_frame_size + MAD_BUFFER_GUARD;
 
         /* Send the buffer to the aout core. */
-        fprintf( stderr, "sending.." );
         aout_DecPlay( p_dec->p_aout, p_dec->p_aout_input, p_buffer );
-        fprintf( stderr, "..done\n" );
     }
 
     if( p_dec->p_fifo->b_error )