Commit 78d9658a authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit '4628443c'

* commit '4628443c':
  h263: Drop uninitialized variable use from log message
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents fbd71bba 4628443c
......@@ -249,8 +249,8 @@ static int decode_slice(MpegEncContext *s)
s->mv_dir = MV_DIR_FORWARD;
s->mv_type = MV_TYPE_16X16;
ff_dlog(s, "%d %d %06X\n",
ret, get_bits_count(&s->gb), show_bits(&s->gb, 24));
ff_dlog(s, "%d %06X\n",
get_bits_count(&s->gb), show_bits(&s->gb, 24));
ff_tlog(NULL, "Decoding MB at %dx%d\n", s->mb_x, s->mb_y);
ret = s->decode_mb(s, s->block);
......
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