diff options
author | Måns Rullgård <mans@mansr.com> | 2009-12-22 08:09:46 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-12-22 08:09:46 +0000 |
commit | 1a91f1a0da16821db6b1789b90ead0f2108ee24f (patch) | |
tree | f473ce98342f47048a10b31b354a26997d59fbe5 /libavcodec | |
parent | f69d394f6bbf51cb32719f76fb1bf1aa635ae83b (diff) | |
download | ffmpeg-1a91f1a0da16821db6b1789b90ead0f2108ee24f.tar.gz |
ARM: use ALT_BITSTREAM_READER on cores with fast unaligned access
Originally committed as revision 20911 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/get_bits.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/get_bits.h b/libavcodec/get_bits.h index 1863e7de4a..df814d9135 100644 --- a/libavcodec/get_bits.h +++ b/libavcodec/get_bits.h @@ -40,7 +40,7 @@ #endif #if !defined(LIBMPEG2_BITSTREAM_READER) && !defined(A32_BITSTREAM_READER) && !defined(ALT_BITSTREAM_READER) -# if ARCH_ARM +# if ARCH_ARM && !HAVE_FAST_UNALIGNED # define A32_BITSTREAM_READER # else # define ALT_BITSTREAM_READER |