diff options
author | Mashiat Sarker Shakkhar <shahriman_ams@yahoo.com> | 2011-11-08 18:42:01 +0600 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-11 03:30:18 +0100 |
commit | 6e4a86a3f8524b1007733ab4763f9f773017d519 (patch) | |
tree | 56ad1d9fc0c33d7d95ad9858f0607fb3303f7537 | |
parent | 8f8dcf448615d836c32d9425f7979a2cd1de7bf7 (diff) | |
download | ffmpeg-6e4a86a3f8524b1007733ab4763f9f773017d519.tar.gz |
Output decoded residues
-rw-r--r-- | libavcodec/wmalosslessdec.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c index 8354204d7c..b7f2b72811 100644 --- a/libavcodec/wmalosslessdec.c +++ b/libavcodec/wmalosslessdec.c @@ -290,6 +290,8 @@ typedef struct WmallDecodeCtx { #define dprintf(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__) +//static int num_logged_tiles; + /** *@brief helper function to print the most important members of the context *@param s context @@ -338,6 +340,7 @@ static av_cold int decode_init(AVCodecContext *avctx) int log2_max_num_subframes; int num_possible_block_sizes; + //num_logged_tiles = 0; s->avctx = avctx; dsputil_init(&s->dsp, avctx); init_put_bits(&s->pb, s->frame_data, MAX_FRAMESIZE); @@ -697,8 +700,12 @@ 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)); } + av_log(0, 0, "\n"); + //num_logged_tiles++; return 0; |