aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/eamad.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-03-13 22:04:25 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-03-13 22:04:25 +0100
commitd9399c4b66339300d86ff3a74c2ff8af8fc7cfc9 (patch)
tree5a6b50ecf61f06ebfc140bbc8acf036ecaf52c48 /libavcodec/eamad.c
parent9ff43569d2ab8ae33c0c67de66691a512c59816f (diff)
downloadffmpeg-d9399c4b66339300d86ff3a74c2ff8af8fc7cfc9.tar.gz
eamad: Remove redundant initialization of mv_map.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/eamad.c')
-rw-r--r--libavcodec/eamad.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/eamad.c b/libavcodec/eamad.c
index b411ce4d6b..708674fc4d 100644
--- a/libavcodec/eamad.c
+++ b/libavcodec/eamad.c
@@ -204,8 +204,6 @@ static int decode_mb(MadContext *t, int inter)
mv_map = v ? get_bits(&s->gb, 6) : 63;
mv_x = decode_motion(&s->gb);
mv_y = decode_motion(&s->gb);
- } else {
- mv_map = 0;
}
}