avcodec/h264_cabac: disable the unchecked bitstream reader for arm & aarch64

The newly added optimizations do not work with the unchecked reader

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-03-15 00:12:01 +01:00
parent fbe9ae482d
commit 669235e0b3
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
*/
#define CABAC(h) 1
#define UNCHECKED_BITSTREAM_READER 1
#define UNCHECKED_BITSTREAM_READER (!ARCH_ARM && !ARCH_AARCH64)
#include "libavutil/attributes.h"
#include "libavutil/timer.h"