diff options
author | Jason Garrett-Glaser <jason@x264.com> | 2011-07-26 19:08:05 -0700 |
---|---|---|
committer | Jason Garrett-Glaser <jason@x264.com> | 2011-07-28 13:06:13 -0700 |
commit | 6c3257654801d525aa61e6fb46022a2a3b12c074 (patch) | |
tree | 8777edbbe56440b243395f4fc5f2534e0d384af8 /libavcodec/h264_cabac.c | |
parent | 8dcf5184307f072d55fb29373be05ef8b0fd02df (diff) | |
download | ffmpeg-6c3257654801d525aa61e6fb46022a2a3b12c074.tar.gz |
H.264: optimize CABAC x86 asm for Atom
Diffstat (limited to 'libavcodec/h264_cabac.c')
-rw-r--r-- | libavcodec/h264_cabac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_cabac.c b/libavcodec/h264_cabac.c index f7cec5d03e..065b6e85e1 100644 --- a/libavcodec/h264_cabac.c +++ b/libavcodec/h264_cabac.c @@ -1649,7 +1649,7 @@ static av_always_inline void decode_cabac_residual_internal( H264Context *h, DCT const uint8_t *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD]; #if ARCH_X86 && HAVE_7REGS && HAVE_EBX_AVAILABLE && !defined(BROKEN_RELOCATIONS) coeff_count= decode_significance_8x8_x86(CC, significant_coeff_ctx_base, index, - last_coeff_ctx_base-significant_coeff_ctx_base, sig_off); + last_coeff_ctx_base, sig_off); } else { coeff_count= decode_significance_x86(CC, max_coeff, significant_coeff_ctx_base, index, last_coeff_ctx_base-significant_coeff_ctx_base); |