From c61114834018336d39ea4efee705f3dd973f4d15 Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Tue, 1 Apr 2014 01:45:28 +0200 Subject: vc1dec: fix a possible unitialized variable warning --- libavcodec/vc1dec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavcodec/vc1dec.c') diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index e6bbe58aff..d697b8c13d 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -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]); -- cgit v1.2.3