1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

eamad: Remove redundant initialization of mv_map.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-03-13 22:04:25 +01:00
parent 9ff43569d2
commit d9399c4b66

View File

@ -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;
}
}