diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2006-08-28 22:25:30 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2006-08-28 22:25:30 +0000 |
commit | a1b65018f14bc91288e9747c756b6df849830502 (patch) | |
tree | 7bb172689bc42d0b0c5d30c1a9b05406b919c9dd /libavcodec/bitstream.h | |
parent | 51ebd13654aa40d1f1c3c976842b855be10dd3ac (diff) | |
download | ffmpeg-a1b65018f14bc91288e9747c756b6df849830502.tar.gz |
use the A32_BITSTREAM_READER by default on ARM (faster)
Originally committed as revision 6120 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bitstream.h')
-rw-r--r-- | libavcodec/bitstream.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h index 914911ec26..81247bf09b 100644 --- a/libavcodec/bitstream.h +++ b/libavcodec/bitstream.h @@ -15,9 +15,13 @@ //#define ALT_BITSTREAM_WRITER //#define ALIGNED_BITSTREAM_WRITER #if !defined(LIBMPEG2_BITSTREAM_READER) && !defined(A32_BITSTREAM_READER) && !defined(ALT_BITSTREAM_READER) +# ifdef ARCH_ARMV4L +# define A32_BITSTREAM_READER +# else #define ALT_BITSTREAM_READER //#define LIBMPEG2_BITSTREAM_READER //#define A32_BITSTREAM_READER +# endif #endif #define LIBMPEG2_BITSTREAM_READER_HACK //add BERO |