Commit 7b94a2f4 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/ituh263dec: Use ff_tlog() for block level information

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d52a8bf1
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment