Commit 2c7c2a53 authored by Michael Niedermayer's avatar Michael Niedermayer

vcodec/vc1dec: remove dead code

Fixes CID732196
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7eda2e52
......@@ -1815,8 +1815,7 @@ static inline void vc1_pred_mv_intfr(VC1Context *v, int n, int dmv_x, int dmv_y,
} else if (total_valid) {
if (a_valid) { px = A[0]; py = A[1]; }
else if (b_valid) { px = B[0]; py = B[1]; }
else if (c_valid) { px = C[0]; py = C[1]; }
else av_assert2(0);
else { px = C[0]; py = C[1]; }
}
}
} else {
......
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