summaryrefslogtreecommitdiff
path: root/libavcodec/mlpdec.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2009-03-28 00:53:52 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2009-03-28 00:53:52 +0000
commitfa937faba442e3c8ce4ddf0b043cb75e4f21571f (patch)
treef8959b8977c2109a2e44f79a1e1e82823eb10d39 /libavcodec/mlpdec.c
parentb864098c168f601f7c7393893927a4fd3f79ae5d (diff)
mlpdec: Remove few random dprintf()s.
Originally committed as revision 18212 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mlpdec.c')
-rw-r--r--libavcodec/mlpdec.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c
index d8fc87b87b..a42b5e36a7 100644
--- a/libavcodec/mlpdec.c
+++ b/libavcodec/mlpdec.c
@@ -375,9 +375,6 @@ static int read_restart_header(MLPDecodeContext *m, GetBitContext *gbp,
av_log(m->avctx, AV_LOG_WARNING,
"Lossless check failed - expected %02x, calculated %02x.\n",
lossless_check, tmp);
- else
- dprintf(m->avctx, "Lossless check passed for substream %d (%x).\n",
- substr, tmp);
}
skip_bits(gbp, 16);
@@ -386,8 +383,6 @@ static int read_restart_header(MLPDecodeContext *m, GetBitContext *gbp,
for (ch = 0; ch <= s->max_matrix_channel; ch++) {
int ch_assign = get_bits(gbp, 6);
- dprintf(m->avctx, "ch_assign[%d][%d] = %d\n", substr, ch,
- ch_assign);
if (ch_assign > s->max_matrix_channel) {
av_log(m->avctx, AV_LOG_ERROR,
"Assignment of matrix channel %d to invalid output channel %d. %s\n",
@@ -626,8 +621,6 @@ static int read_decoding_params(MLPDecodeContext *m, GetBitContext *gbp,
if (get_bits1(gbp))
for (ch = 0; ch <= s->max_matrix_channel; ch++) {
s->output_shift[ch] = get_sbits(gbp, 4);
- dprintf(m->avctx, "output shift[%d] = %d\n",
- ch, s->output_shift[ch]);
}
if (s->param_presence_flags & PARAM_QUANTSTEP)
@@ -919,7 +912,6 @@ static int read_access_unit(AVCodecContext *avctx, void* data, int *data_size,
init_get_bits(&gb, (buf + 4), (length - 4) * 8);
if (show_bits_long(&gb, 31) == (0xf8726fba >> 1)) {
- dprintf(m->avctx, "Found major sync.\n");
if (read_major_sync(m, &gb) < 0)
goto error;
header_size += 28;