comparison h264.c @ 5547:81226e690378 libavcodec

CONFIG_7REGS -> HAVE_7REGS
author ramiro
date Wed, 15 Aug 2007 21:19:13 +0000
parents 397cb90b66d0
children 7e5ebda833e9
comparison
equal deleted inserted replaced
5546:e12027d324cc 5547:81226e690378
5785 }\ 5785 }\
5786 if( last == max_coeff -1 ) {\ 5786 if( last == max_coeff -1 ) {\
5787 index[coeff_count++] = last;\ 5787 index[coeff_count++] = last;\
5788 } 5788 }
5789 const uint8_t *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD]; 5789 const uint8_t *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD];
5790 #if defined(ARCH_X86) && defined(CONFIG_7REGS) && defined(HAVE_EBX_AVAILABLE) && !defined(BROKEN_RELOCATIONS) 5790 #if defined(ARCH_X86) && defined(HAVE_7REGS) && defined(HAVE_EBX_AVAILABLE) && !defined(BROKEN_RELOCATIONS)
5791 coeff_count= decode_significance_8x8_x86(CC, significant_coeff_ctx_base, index, sig_off); 5791 coeff_count= decode_significance_8x8_x86(CC, significant_coeff_ctx_base, index, sig_off);
5792 } else { 5792 } else {
5793 coeff_count= decode_significance_x86(CC, max_coeff, significant_coeff_ctx_base, index); 5793 coeff_count= decode_significance_x86(CC, max_coeff, significant_coeff_ctx_base, index);
5794 #else 5794 #else
5795 DECODE_SIGNIFICANCE( 63, sig_off[last], last_coeff_flag_offset_8x8[last] ); 5795 DECODE_SIGNIFICANCE( 63, sig_off[last], last_coeff_flag_offset_8x8[last] );