diff options
author | Jeff Downs <heydowns@borg.com> | 2008-04-16 04:40:21 +0000 |
---|---|---|
committer | Jeff Downs <heydowns@borg.com> | 2008-04-16 04:40:21 +0000 |
commit | 52cb7981e29acbb997fc55d4a7c1ec8b34f67e43 (patch) | |
tree | feb7dee684b717f2392ce1d185a6f15e6ca86024 /libavcodec/h264.c | |
parent | 3aa9ede400d2d4a91bf2f208d225df05e8677459 (diff) | |
download | ffmpeg-52cb7981e29acbb997fc55d4a7c1ec8b34f67e43.tar.gz |
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
Originally committed as revision 12846 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> |