Browse Source

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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
7b94a2f4b1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ituh263dec.c

+ 1
- 1
libavcodec/ituh263dec.c View File

@@ -303,7 +303,7 @@ static int h263p_decode_umotion(MpegEncContext * s, int pred)
code >>= 1; code >>= 1;


code = (sign) ? (pred - code) : (pred + code); 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; return code;


} }


Loading…
Cancel
Save