diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-06-12 23:00:12 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-22 14:33:45 +0200 |
commit | 2c05ee092bda386cfaa6c0cd231ec64987335cfd (patch) | |
tree | d4df8b11047d8e73b82e214e8a39bdb5dbe696b3 /libavcodec | |
parent | f6f85d9582df178f9beca7c1d74a0777d4e9597f (diff) | |
download | ffmpeg-2c05ee092bda386cfaa6c0cd231ec64987335cfd.tar.gz |
avutil/internal, swresample/audioconvert: Remove cpu.h inclusions
These inclusions are not necessary, as cpu.h is already included
wherever it is needed (via direct inclusion or via the arch-specific
headers).
Also remove other unnecessary cpu.h inclusions from ordinary
non-headers.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h263dec.c | 1 | ||||
-rw-r--r-- | libavcodec/libxvid.c | 1 | ||||
-rw-r--r-- | libavcodec/x86/vc1dsp_mmx.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index f05dfbf25e..b4aa109601 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -27,7 +27,6 @@ #define UNCHECKED_BITSTREAM_READER 1 -#include "libavutil/cpu.h" #include "libavutil/video_enc_params.h" #include "avcodec.h" diff --git a/libavcodec/libxvid.c b/libavcodec/libxvid.c index e1a1c01f57..7cf9d7661c 100644 --- a/libavcodec/libxvid.c +++ b/libavcodec/libxvid.c @@ -30,7 +30,6 @@ #include <xvid.h> #include "libavutil/avassert.h" -#include "libavutil/cpu.h" #include "libavutil/file.h" #include "libavutil/internal.h" #include "libavutil/intreadwrite.h" diff --git a/libavcodec/x86/vc1dsp_mmx.c b/libavcodec/x86/vc1dsp_mmx.c index c1c4d76262..b907a92695 100644 --- a/libavcodec/x86/vc1dsp_mmx.c +++ b/libavcodec/x86/vc1dsp_mmx.c @@ -25,7 +25,6 @@ */ #include "libavutil/attributes.h" -#include "libavutil/cpu.h" #include "libavutil/mem.h" #include "libavutil/mem_internal.h" #include "libavutil/x86/asm.h" |