Mercurial > libavcodec.hg
comparison h264.c @ 6599:e5967b1cc475 libavcodec
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 | Tue, 15 Apr 2008 13:51:41 +0000 |
parents | e6d8c5bbeeac |
children | b560e57e47ff |
comparison
equal
deleted
inserted
replaced
6598:05987f234569 | 6599:e5967b1cc475 |
---|---|
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 /** |