changeset 10149:94cb694c2af7 libavcodec

Remove pointless debug statement that fails to compile.
author diego
date Tue, 08 Sep 2009 09:11:56 +0000
parents 732dfbf67524
children 29cedcc646fe
files pcm-mpeg.c
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/pcm-mpeg.c	Tue Sep 08 08:30:56 2009 +0000
+++ b/pcm-mpeg.c	Tue Sep 08 09:11:56 2009 +0000
@@ -145,12 +145,6 @@
     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) {