Browse Source

vc1dec: Fix vc1 decoding with --disable-optimizations.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 14 years ago
parent
commit
105cac3407
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/vc1dec.c

+ 2
- 2
libavcodec/vc1dec.c View File

@@ -1788,7 +1788,7 @@ 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]);
@@ -3890,7 +3890,7 @@ static int vc1_decode_p_mb_intfi(VC1Context *v)
int val; /* temp values */
int first_block = 1;
int dst_idx, off;
int pred_flag;
int pred_flag = 0;
int block_cbp = 0, pat, block_tt = 0;
int idx_mbmode = 0;



Loading…
Cancel
Save