summaryrefslogtreecommitdiff
path: root/libavcodec/h263dec.c
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-10-05 11:27:07 +0200
committerHendrik Leppkes <h.leppkes@gmail.com>2015-10-05 11:27:07 +0200
commit78d9658a4d04bb4c281b49cdf8c2ef8b4090ed44 (patch)
treeb02387bc519944220da876772b6fa6f1d7642dc4 /libavcodec/h263dec.c
parentfbd71bba8583eca54b481737ff04a4ff7e0a9fc2 (diff)
parent4628443ca3534060888dd0015b229337eac13fd2 (diff)
Merge commit '4628443ca3534060888dd0015b229337eac13fd2'
* commit '4628443ca3534060888dd0015b229337eac13fd2': h263: Drop uninitialized variable use from log message Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r--libavcodec/h263dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index c85ea9d6cd..1958119f1e 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -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);