summaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-02 22:47:11 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-05-02 22:47:11 +0200
commit64e448994cb4d2686eb113e95957dfe05ebaec48 (patch)
tree37dcbdf87925f4055ed3d915472268d72016a68c /libavcodec
parentcea9ee5dbd9312076676693be4dfadb0664ea420 (diff)
downloadffmpeg-streaming-64e448994cb4d2686eb113e95957dfe05ebaec48.zip
ffmpeg-streaming-64e448994cb4d2686eb113e95957dfe05ebaec48.tar.gz
avcodec/h263dec: print MB position for each MB when TRACE is enabled
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/h263dec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 98506dd..270c2c4 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -235,6 +235,8 @@ static int decode_slice(MpegEncContext *s)
s->mv_type = MV_TYPE_16X16;
av_dlog(s, "%d %d %06X\n",
ret, get_bits_count(&s->gb), show_bits(&s->gb, 24));
+
+ tprintf(NULL, "Decoding MB at %dx%d\n", s->mb_x, s->mb_y);
ret = s->decode_mb(s, s->block);
if (s->pict_type != AV_PICTURE_TYPE_B)
OpenPOWER on IntegriCloud