diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-08 23:19:11 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-21 13:10:10 +0100 |
commit | 58492ce443a5a1f80b56fe1cd7ffa6cf449f4da9 (patch) | |
tree | 18ea3de5e1e3fead237825c6cb38e814a5098849 /libavcodec/mips/lsp_mips.h | |
parent | 52e911369553e1d2e8c4978172a5a302b91c8202 (diff) | |
download | ffmpeg-58492ce443a5a1f80b56fe1cd7ffa6cf449f4da9.tar.gz |
avcodec/mips: Fix checkheaders
mips has several headers that are only meant for inclusion in another
non-arch specific file; they do not even try to be standalone. So don't
test them in checkheaders.
Also fix vp9dsp_mips.h, an ordinary header missing some includes.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mips/lsp_mips.h')
-rw-r--r-- | libavcodec/mips/lsp_mips.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mips/lsp_mips.h b/libavcodec/mips/lsp_mips.h index 23b2b6bfda..c69f8b770c 100644 --- a/libavcodec/mips/lsp_mips.h +++ b/libavcodec/mips/lsp_mips.h @@ -54,6 +54,8 @@ #ifndef AVCODEC_MIPS_LSP_MIPS_H #define AVCODEC_MIPS_LSP_MIPS_H +#include "config.h" + #if HAVE_MIPSFPU && HAVE_INLINE_ASM #if !HAVE_MIPS32R6 && !HAVE_MIPS64R6 #include "libavutil/attributes.h" |