vc1dec: fix a possible unitialized variable warning

This commit is contained in:
Vittorio Giovara 2014-04-01 01:45:28 +02:00
parent f1c4a54f6e
commit c611148340
1 changed files with 2 additions and 1 deletions

View File

@ -1868,7 +1868,8 @@ static inline void vc1_pred_mv_intfr(VC1Context *v, int n, int dmv_x, int dmv_y,
} else if (c_valid) {
px = C[0];
py = C[1];
}
} else
px = py = 0;
}
} else if (total_valid == 1) {
px = (a_valid) ? A[0] : ((b_valid) ? B[0] : C[0]);