Browse Source

vc1dec: fix a possible unitialized variable warning

tags/n2.3
Vittorio Giovara 11 years ago
parent
commit
c611148340
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/vc1dec.c

+ 2
- 1
libavcodec/vc1dec.c 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]);


Loading…
Cancel
Save