mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
33 lines
1.3 KiB
Diff
33 lines
1.3 KiB
Diff
diff --git a/media/libvpx/vp8/decoder/decodemv.c b/media/libvpx/vp8/decoder/decodemv.c
|
|
--- a/media/libvpx/vp8/decoder/decodemv.c
|
|
+++ b/media/libvpx/vp8/decoder/decodemv.c
|
|
@@ -222,23 +222,24 @@ void vp8_decode_mode_mvs(VP8D_COMP *pbi)
|
|
{
|
|
B_MODE_INFO *const bmi = mbmi->partition_bmi + j;
|
|
MV *const mv = & bmi->mv.as_mv;
|
|
|
|
int k = -1; /* first block in subset j */
|
|
int mv_contz;
|
|
|
|
while (j != L[++k])
|
|
+ {
|
|
+#if CONFIG_DEBUG
|
|
if (k >= 16)
|
|
-#if CONFIG_DEBUG
|
|
+ {
|
|
assert(0);
|
|
-
|
|
-#else
|
|
- ;
|
|
+ }
|
|
#endif
|
|
+ }
|
|
|
|
mv_contz = vp8_mv_cont(&(vp8_left_bmi(mi, k)->mv.as_mv), &(vp8_above_bmi(mi, k, mis)->mv.as_mv));
|
|
|
|
switch (bmi->mode = (B_PREDICTION_MODE) sub_mv_ref(bc, vp8_sub_mv_ref_prob2 [mv_contz])) //pc->fc.sub_mv_ref_prob))
|
|
{
|
|
case NEW4X4:
|
|
read_mv(bc, mv, (const MV_CONTEXT *) mvc);
|
|
mv->row += best_mv.row;
|