Commit f4cc38e3 authored by Michael Niedermayer's avatar Michael Niedermayer

vc1dec: silence "may be used uninitialized in this function" warning from gcc

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d94c9070
......@@ -4246,7 +4246,8 @@ static void vc1_decode_b_mb_intfi(VC1Context *v)
int fwd;
int dmv_x[2], dmv_y[2], pred_flag[2];
int bmvtype = BMV_TYPE_BACKWARD;
int idx_mbmode, interpmvp;
int idx_mbmode;
int av_uninit(interpmvp);
mquant = v->pq; /* Lossy initialization */
s->mb_intra = 0;
......
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