comparison h264.c @ 4009:e5f7797e53c7 libavcodec

10l int vs uint8_t
author michael
date Thu, 12 Oct 2006 18:41:29 +0000
parents b636f3d59283
children 29ea06410ce7
comparison
equal deleted inserted replaced
4008:b636f3d59283 4009:e5f7797e53c7
6115 last= max_coeff; \ 6115 last= max_coeff; \
6116 break; \ 6116 break; \
6117 } \ 6117 } \
6118 } \ 6118 } \
6119 } 6119 }
6120 const int *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD]; 6120 const uint8_t *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD];
6121 DECODE_SIGNIFICANCE( 63, sig_off[last], last_coeff_flag_offset_8x8[last] ); 6121 DECODE_SIGNIFICANCE( 63, sig_off[last], last_coeff_flag_offset_8x8[last] );
6122 } else { 6122 } else {
6123 DECODE_SIGNIFICANCE( max_coeff - 1, last, last ); 6123 DECODE_SIGNIFICANCE( max_coeff - 1, last, last );
6124 } 6124 }
6125 if( last == max_coeff -1 ) { 6125 if( last == max_coeff -1 ) {