diff options
author | Jeff Downs <heydowns@borg.com> | 2008-04-15 13:51:41 +0000 |
---|---|---|
committer | Jeff Downs <heydowns@borg.com> | 2008-04-15 13:51:41 +0000 |
commit | e6cfd8fffb0c45ededb667eeabb93224e60e3b4e (patch) | |
tree | f54ddfa724f238b4f300fe06e690b68b4a05ebf6 /libavcodec/h264.c | |
parent | 4b3cca363078a6ca489a74c837481279608146eb (diff) | |
download | ffmpeg-e6cfd8fffb0c45ededb667eeabb93224e60e3b4e.tar.gz |
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
Originally committed as revision 12838 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 4b1fe085f2..a1d4b0dfe3 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -35,6 +35,9 @@ #include "rectangle.h" #include "cabac.h" +#ifdef ARCH_X86 +#include "i386/h264_i386.h" +#endif //#undef NDEBUG #include <assert.h> |