Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-03-14 01:04:25 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-03-14 01:04:25 +0400
commitd9399c4b66339300d86ff3a74c2ff8af8fc7cfc9 (patch)
tree5a6b50ecf61f06ebfc140bbc8acf036ecaf52c48 /libavcodec/eamad.c
parent9ff43569d2ab8ae33c0c67de66691a512c59816f (diff)
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;
}
}