Commit f89bc1b2 authored by michael's avatar michael

10l int vs uint8_t


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6675 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent fa97814c
...@@ -6117,7 +6117,7 @@ static int decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n ...@@ -6117,7 +6117,7 @@ static int decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n
} \ } \
} \ } \
} }
const int *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD]; const uint8_t *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD];
DECODE_SIGNIFICANCE( 63, sig_off[last], last_coeff_flag_offset_8x8[last] ); DECODE_SIGNIFICANCE( 63, sig_off[last], last_coeff_flag_offset_8x8[last] );
} else { } else {
DECODE_SIGNIFICANCE( max_coeff - 1, last, last ); DECODE_SIGNIFICANCE( max_coeff - 1, last, last );
......
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