diff options
author | Falk Hüffner <mellum@users.sourceforge.net> | 2002-07-02 02:22:46 +0000 |
---|---|---|
committer | Falk Hüffner <mellum@users.sourceforge.net> | 2002-07-02 02:22:46 +0000 |
commit | 3530320dbf753d2896cd9a35353622268e28b53e (patch) | |
tree | 188f5d3d6caa8eea49c431a96811c2541f621072 | |
parent | 494e409255dcb57c8be492541b1d31c0d79cadff (diff) | |
download | ffmpeg-3530320dbf753d2896cd9a35353622268e28b53e.tar.gz |
Activate ALT_BITSTREAM_READER by default on Alpha, since it seems to
be a noticeable win (at least for me :)
Originally committed as revision 712 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/common.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/common.h b/libavcodec/common.h index e4ac69c0d1..fe97d4c431 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -10,7 +10,11 @@ //#define ALT_BITSTREAM_WRITER //#define ALIGNED_BITSTREAM_WRITER -//#define ALT_BITSTREAM_READER + +#ifdef ARCH_ALPHA +#define ALT_BITSTREAM_READER +#endif + //#define ALIGNED_BITSTREAM #define FAST_GET_FIRST_VLC //#define DUMP_STREAM // only works with the ALT_BITSTREAM_READER |