Commit c6111483 authored by Vittorio Giovara's avatar Vittorio Giovara

vc1dec: fix a possible unitialized variable warning

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