Commit a7796025 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/eamad: silence uninitialized variable warnings

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent eeb48353
......@@ -195,7 +195,7 @@ static int decode_motion(GetBitContext *gb)
static int decode_mb(MadContext *s, AVFrame *frame, int inter)
{
int mv_map = 0;
int mv_x, mv_y;
int av_uninit(mv_x), av_uninit(mv_y);
int j;
if (inter) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment