From: Mashiat Sarker Shakkhar Date: Tue, 8 Nov 2011 12:42:01 +0000 (+0600) Subject: Output decoded residues X-Git-Tag: android-x86-4.4-r1~13333^2~46 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=d5aef477e65fef5af885ed9129baf33553307bbd;p=android-x86%2Fexternal-ffmpeg.git Output decoded residues --- diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c index aec042b393..42ff19ffc9 100644 --- a/libavcodec/wmalosslessdec.c +++ b/libavcodec/wmalosslessdec.c @@ -287,6 +287,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 @@ -335,6 +337,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); @@ -694,8 +697,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;