diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-26 01:00:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-26 01:00:05 +0200 |
commit | 7b94a2f4b183ff0a02a40e4ce41273d5aede54eb (patch) | |
tree | 5b3bfc4b51b5ae8c4efd5fe3b97a59e6586467b6 | |
parent | d52a8bf15817e2a83f6b6e32e9391c36d28d8051 (diff) | |
download | ffmpeg-7b94a2f4b183ff0a02a40e4ce41273d5aede54eb.tar.gz |
avcodec/ituh263dec: Use ff_tlog() for block level information
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/ituh263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c index 580c52264d..8398dd9ab6 100644 --- a/libavcodec/ituh263dec.c +++ b/libavcodec/ituh263dec.c @@ -303,7 +303,7 @@ static int h263p_decode_umotion(MpegEncContext * s, int pred) code >>= 1; code = (sign) ? (pred - code) : (pred + code); - ff_dlog(s->avctx,"H.263+ UMV Motion = %d\n", code); + ff_tlog(s->avctx,"H.263+ UMV Motion = %d\n", code); return code; } |