mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Merge commit '4628443ca3534060888dd0015b229337eac13fd2'
* commit '4628443ca3534060888dd0015b229337eac13fd2': h263: Drop uninitialized variable use from log message Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
This commit is contained in:
commit
78d9658a4d
@ -249,8 +249,8 @@ static int decode_slice(MpegEncContext *s)
|
|||||||
|
|
||||||
s->mv_dir = MV_DIR_FORWARD;
|
s->mv_dir = MV_DIR_FORWARD;
|
||||||
s->mv_type = MV_TYPE_16X16;
|
s->mv_type = MV_TYPE_16X16;
|
||||||
ff_dlog(s, "%d %d %06X\n",
|
ff_dlog(s, "%d %06X\n",
|
||||||
ret, get_bits_count(&s->gb), show_bits(&s->gb, 24));
|
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);
|
ff_tlog(NULL, "Decoding MB at %dx%d\n", s->mb_x, s->mb_y);
|
||||||
ret = s->decode_mb(s, s->block);
|
ret = s->decode_mb(s, s->block);
|
||||||
|
Loading…
Reference in New Issue
Block a user