diff h264.c @ 6604:e226f34ca284 libavcodec

Redo r12838, this time using svn copy to create h264_i386.h from cabac.h. Move decode_significance_x86() and decode_significance_8x8_x86() to i386-specific file from cabac.h. New file is h264-oriented and only included from h264.c Resolves compilation when configured with --disable-optimizations due to decode_significance_8x8_x86 using last_coeff_flag_offset_8x8, which is only defined in h264.c
author heydowns
date Wed, 16 Apr 2008 04:40:21 +0000
parents b560e57e47ff
children 22cca5d3173a
line wrap: on
line diff
--- a/h264.c	Wed Apr 16 04:26:52 2008 +0000
+++ b/h264.c	Wed Apr 16 04:40:21 2008 +0000
@@ -35,6 +35,9 @@
 #include "rectangle.h"
 
 #include "cabac.h"
+#ifdef ARCH_X86
+#include "i386/h264_i386.h"
+#endif
 
 //#undef NDEBUG
 #include <assert.h>