diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2006-08-28 18:46:01 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2006-08-28 18:46:01 +0000 |
commit | 75c998a21916f990cff5eaca59c4dc9d592a273f (patch) | |
tree | 1c16c1fdf6a1275aca6d7613db0ae0351b121961 /libavcodec/bitstream.h | |
parent | 8fbc6aae75403a7bbca595df9d3d3a9d835dc576 (diff) | |
download | ffmpeg-75c998a21916f990cff5eaca59c4dc9d592a273f.tar.gz |
force usage of ALT_BITSTREAM_READER where needed
Originally committed as revision 6118 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 17b5d2b1c5..914911ec26 100644 --- a/libavcodec/bitstream.h +++ b/libavcodec/bitstream.h @@ -8,6 +8,10 @@ #include "log.h" +#if defined(ALT_BITSTREAM_READER_LE) && !defined(ALT_BITSTREAM_READER) +#define ALT_BITSTREAM_READER +#endif + //#define ALT_BITSTREAM_WRITER //#define ALIGNED_BITSTREAM_WRITER #if !defined(LIBMPEG2_BITSTREAM_READER) && !defined(A32_BITSTREAM_READER) && !defined(ALT_BITSTREAM_READER) |