comparison 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
comparison
equal deleted inserted replaced
6603:b560e57e47ff 6604:e226f34ca284
33 #include "h264_parser.h" 33 #include "h264_parser.h"
34 #include "golomb.h" 34 #include "golomb.h"
35 #include "rectangle.h" 35 #include "rectangle.h"
36 36
37 #include "cabac.h" 37 #include "cabac.h"
38 #ifdef ARCH_X86
39 #include "i386/h264_i386.h"
40 #endif
38 41
39 //#undef NDEBUG 42 //#undef NDEBUG
40 #include <assert.h> 43 #include <assert.h>
41 44
42 /** 45 /**