comparison h264.c @ 4881:fb8cbb18b2b4 libavcodec

10l: Rename missed occurrences of CONFIG_EBX_AVAILABLE to HAVE_EBX_AVAILABLE.
author diego
date Thu, 26 Apr 2007 00:32:31 +0000
parents 861ff463ac61
children 8131ccb4ea72
comparison
equal deleted inserted replaced
4880:5e714485a55c 4881:fb8cbb18b2b4
6109 }\ 6109 }\
6110 if( last == max_coeff -1 ) {\ 6110 if( last == max_coeff -1 ) {\
6111 index[coeff_count++] = last;\ 6111 index[coeff_count++] = last;\
6112 } 6112 }
6113 const uint8_t *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD]; 6113 const uint8_t *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD];
6114 #if defined(ARCH_X86) && defined(CONFIG_7REGS) && defined(CONFIG_EBX_AVAILABLE) 6114 #if defined(ARCH_X86) && defined(CONFIG_7REGS) && defined(HAVE_EBX_AVAILABLE)
6115 coeff_count= decode_significance_8x8_x86(CC, significant_coeff_ctx_base, index, sig_off); 6115 coeff_count= decode_significance_8x8_x86(CC, significant_coeff_ctx_base, index, sig_off);
6116 } else { 6116 } else {
6117 coeff_count= decode_significance_x86(CC, max_coeff, significant_coeff_ctx_base, index); 6117 coeff_count= decode_significance_x86(CC, max_coeff, significant_coeff_ctx_base, index);
6118 #else 6118 #else
6119 DECODE_SIGNIFICANCE( 63, sig_off[last], last_coeff_flag_offset_8x8[last] ); 6119 DECODE_SIGNIFICANCE( 63, sig_off[last], last_coeff_flag_offset_8x8[last] );