diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-10-02 15:16:46 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-10-04 13:07:12 +0200 |
commit | 4628443ca3534060888dd0015b229337eac13fd2 (patch) | |
tree | fa8e32492f78c4154f6dcddb74c4afa1c13f603e | |
parent | 1da2a20763ae9ca579d5fd20763065871ddf6311 (diff) | |
download | ffmpeg-4628443ca3534060888dd0015b229337eac13fd2.tar.gz |
h263: Drop uninitialized variable use from log message
-rw-r--r-- | libavcodec/h263dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 3a0f4f76c7..fd1e57b764 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -236,8 +236,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)); ret = s->decode_mb(s, s->block); if (s->pict_type != AV_PICTURE_TYPE_B) |