diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-11-01 17:01:33 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-11-01 17:01:33 +0000 |
commit | 419b878494346c2f9d81f23d7a75cbe03eb5dab0 (patch) | |
tree | 2d410c6064c50c43ebb2b69444a7ddb2f730034a /libavcodec/h264.c | |
parent | 6c02f9e7ee00d6a08c75a793546ea2e89b502a24 (diff) | |
download | ffmpeg-419b878494346c2f9d81f23d7a75cbe03eb5dab0.tar.gz |
Add ARCH_X86_32 as a new define for 32 bit x86 architectures and change
the semantics of ARCH_X86 to mean both 32 and 64 bits.
Originally committed as revision 6852 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 440c254bf2..a37ea0e374 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -6139,7 +6139,7 @@ static int decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n 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_32) && !(defined(PIC) && defined(__GNUC__)) 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); |