summaryrefslogtreecommitdiff
path: root/libavcodec/pcm-mpeg.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-09-08 09:11:56 +0000
committerDiego Biurrun <diego@biurrun.de>2009-09-08 09:11:56 +0000
commitb057170f324da3657cc8723f97086c2c756a85b8 (patch)
tree099b8a1abf761f91ff0c52dbc17b024097b00817 /libavcodec/pcm-mpeg.c
parent17f0c3be8ecbf3555d763007bd51583ad3f63cc0 (diff)
Remove pointless debug statement that fails to compile.
Originally committed as revision 19795 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/pcm-mpeg.c')
-rw-r--r--libavcodec/pcm-mpeg.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/pcm-mpeg.c b/libavcodec/pcm-mpeg.c
index eed36cc03f..ec5f19bef4 100644
--- a/libavcodec/pcm-mpeg.c
+++ b/libavcodec/pcm-mpeg.c
@@ -145,12 +145,6 @@ static int pcm_bluray_decode_frame(AVCodecContext *avctx,
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) {