[FFmpeg-cvslog] r19795 - trunk/libavcodec/pcm-mpeg.c

diego subversion
Tue Sep 8 11:11:56 CEST 2009


Author: diego
Date: Tue Sep  8 11:11:56 2009
New Revision: 19795

Log:
Remove pointless debug statement that fails to compile.

Modified:
   trunk/libavcodec/pcm-mpeg.c

Modified: trunk/libavcodec/pcm-mpeg.c
==============================================================================
--- trunk/libavcodec/pcm-mpeg.c	Tue Sep  8 10:30:56 2009	(r19794)
+++ trunk/libavcodec/pcm-mpeg.c	Tue Sep  8 11:11:56 2009	(r19795)
@@ -145,12 +145,6 @@ static int pcm_bluray_decode_frame(AVCod
     sample_size = (num_source_channels * avctx->bits_per_coded_sample) >> 3;
     samples = buf_size / sample_size;
 
-    if (avctx->debug & FF_DEBUG_BITSTREAM)
-        dprintf(avctx,
-                "pcm_bluray_decode_frame: c: %d sc: %d s: %d in: %d ds: %d\n",
-                avctx->channels, num_source_channels, num_samples, buf_size,
-                *data_size);
-
     output_size = samples * avctx->channels *
                   (avctx->sample_fmt == SAMPLE_FMT_S32 ? 4 : 2);
     if (output_size > *data_size) {



More information about the ffmpeg-cvslog mailing list