[FFmpeg-cvslog] avcodec/h264_cabac: disable the unchecked bitstream reader for arm & aarch64

Michael Niedermayer git at videolan.org
Sat Mar 15 01:02:10 CET 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Mar 15 00:12:01 2014 +0100| [669235e0b343855d7b1515834900028bb7f661c0] | committer: Michael Niedermayer

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 at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=669235e0b343855d7b1515834900028bb7f661c0
---

 libavcodec/h264_cabac.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/h264_cabac.c b/libavcodec/h264_cabac.c
index 83aac22..75b12ec 100644
--- a/libavcodec/h264_cabac.c
+++ b/libavcodec/h264_cabac.c
@@ -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"



More information about the ffmpeg-cvslog mailing list