Mercurial > libavcodec.hg
diff h264.c @ 4745:25dd62b93846 libavcodec
Fix compilation when using the --disable-opts parameter. This to help those
interested in using a debugger to debug FFmpeg.
Original thread:
Subject: [PATCH] Fix compilation when using --disable-opts
Date: 2007-03-15 16:58:35 GMT
author | takis |
---|---|
date | Thu, 29 Mar 2007 14:20:30 +0000 |
parents | 9b35cbf0b25b |
children | 011fb289e3b0 |
line wrap: on
line diff
--- a/h264.c Thu Mar 29 09:39:20 2007 +0000 +++ b/h264.c Thu Mar 29 14:20:30 2007 +0000 @@ -6111,7 +6111,7 @@ index[coeff_count++] = last;\ } const uint8_t *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD]; -#if defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) +#if defined(ARCH_X86) && defined(CONFIG_7REGS) && defined(CONFIG_EBX_AVAILABLE) coeff_count= decode_significance_8x8_x86(CC, significant_coeff_ctx_base, index, sig_off); } else { coeff_count= decode_significance_x86(CC, max_coeff, significant_coeff_ctx_base, index);