diff options
author | Mashiat Sarker Shakkhar <shahriman_ams@yahoo.com> | 2011-11-12 17:12:28 +0600 |
---|---|---|
committer | Mashiat Sarker Shakkhar <shahriman_ams@yahoo.com> | 2011-11-20 14:51:40 +0600 |
commit | 7a9807dea44463c6741474fa8609118cd5f53b75 (patch) | |
tree | 9647d902b59c76c5286417eb2e9e17a14c9cfb23 | |
parent | 3e2f664b998bd5c82d4be3e86f091a0c3d16f68e (diff) | |
download | ffmpeg-7a9807dea44463c6741474fa8609118cd5f53b75.tar.gz |
Clean-up
-rw-r--r-- | libavcodec/wmalosslessdec.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c index 7240efbdaa..3ae698538b 100644 --- a/libavcodec/wmalosslessdec.c +++ b/libavcodec/wmalosslessdec.c @@ -696,7 +696,7 @@ static int decode_channel_residues(WmallDecodeCtx *s, int ch, int tile_size) s->channel_residues[ch][0] = get_sbits(&s->gb, s->bits_per_sample); i++; } - av_log(0, 0, "%8d: ", num_logged_tiles++); + //av_log(0, 0, "%8d: ", num_logged_tiles++); for(; i < tile_size; i++) { int quo = 0, rem, rem_bits, residue; while(get_bits1(&s->gb)) @@ -717,12 +717,10 @@ static int decode_channel_residues(WmallDecodeCtx *s, int ch, int tile_size) residue = residue >> 1; s->channel_residues[ch][i] = residue; - //if (num_logged_tiles < 1) - av_log(0, 0, "%4d ", residue); -// dprintf(s->avctx, "%5d: %5d %10d %12d %12d %5d %-16d %04x\n",i, quo, ave_mean, s->ave_sum[ch], rem, rem_bits, s->channel_residues[ch][i], show_bits(&s->gb, 16)); + /*if (num_logged_tiles < 1) + av_log(0, 0, "%4d ", residue); */ } dump_int_buffer(s->channel_residues[ch], tile_size, 16); - av_log(0, 0, "\n Tile size = %d\n", tile_size); return 0; |