diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-03-26 04:41:23 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-04-04 19:08:05 +0200 |
commit | b42f49e42f8cde25a788b2d13d03e99ca2956647 (patch) | |
tree | 95ab896716289f8838d58811005e5fc26dd5d4ef /libavcodec | |
parent | 3dc6272bed7890a49080e18eacf3c7a4a6594b0d (diff) | |
download | ffmpeg-b42f49e42f8cde25a788b2d13d03e99ca2956647.tar.gz |
x86: dsputil: Eliminate some unnecessary dsputil_x86.h #includes
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/ac3dsp_init.c | 1 | ||||
-rw-r--r-- | libavcodec/x86/h264dsp_init.c | 1 | ||||
-rw-r--r-- | libavcodec/x86/mpegvideo.c | 1 | ||||
-rw-r--r-- | libavcodec/x86/mpegvideoenc.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/x86/ac3dsp_init.c b/libavcodec/x86/ac3dsp_init.c index a82c249400..cd638b9228 100644 --- a/libavcodec/x86/ac3dsp_init.c +++ b/libavcodec/x86/ac3dsp_init.c @@ -23,7 +23,6 @@ #include "libavutil/mem.h" #include "libavutil/x86/asm.h" #include "libavutil/x86/cpu.h" -#include "dsputil_x86.h" #include "libavcodec/ac3.h" #include "libavcodec/ac3dsp.h" diff --git a/libavcodec/x86/h264dsp_init.c b/libavcodec/x86/h264dsp_init.c index e9d93e0af9..427662f627 100644 --- a/libavcodec/x86/h264dsp_init.c +++ b/libavcodec/x86/h264dsp_init.c @@ -23,7 +23,6 @@ #include "libavutil/x86/asm.h" #include "libavutil/x86/cpu.h" #include "libavcodec/h264dsp.h" -#include "dsputil_x86.h" /***********************************/ /* IDCT */ diff --git a/libavcodec/x86/mpegvideo.c b/libavcodec/x86/mpegvideo.c index 25b44e6768..db94ffabb0 100644 --- a/libavcodec/x86/mpegvideo.c +++ b/libavcodec/x86/mpegvideo.c @@ -25,7 +25,6 @@ #include "libavutil/x86/cpu.h" #include "libavcodec/avcodec.h" #include "libavcodec/mpegvideo.h" -#include "dsputil_x86.h" #if HAVE_INLINE_ASM diff --git a/libavcodec/x86/mpegvideoenc.c b/libavcodec/x86/mpegvideoenc.c index 19ab83a7fa..78313f4097 100644 --- a/libavcodec/x86/mpegvideoenc.c +++ b/libavcodec/x86/mpegvideoenc.c @@ -26,7 +26,6 @@ #include "libavcodec/avcodec.h" #include "libavcodec/dct.h" #include "libavcodec/mpegvideo.h" -#include "dsputil_x86.h" /* not permutated inverse zigzag_direct + 1 for MMX quantizer */ DECLARE_ALIGNED(16, static uint16_t, inv_zigzag_direct16)[64]; |