diff options
author | James Almer <jamrial@gmail.com> | 2024-07-10 13:52:52 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-07-10 13:52:52 -0300 |
commit | 1a86a7a48d60aaa64ff55c109ee64512576d7e8b (patch) | |
tree | 2f6424024c927bc047bac29354bfdff5eaf59cd1 /libavutil | |
parent | 15056dd65026023352069f58403c997be7fb9496 (diff) | |
download | ffmpeg-1a86a7a48d60aaa64ff55c109ee64512576d7e8b.tar.gz |
x86/intreadwrite: fix include of config.h
Should fix make checkheaders.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/x86/intreadwrite.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/intreadwrite.h b/libavutil/x86/intreadwrite.h index fd21143dd9..d916410e14 100644 --- a/libavutil/x86/intreadwrite.h +++ b/libavutil/x86/intreadwrite.h @@ -22,13 +22,13 @@ #define AVUTIL_X86_INTREADWRITE_H #include <stdint.h> +#include "config.h" #if HAVE_INTRINSICS_SSE && defined(__SSE__) #include <immintrin.h> #endif #if HAVE_INTRINSICS_SSE2 && defined(__SSE2__) #include <emmintrin.h> #endif -#include "config.h" #include "libavutil/attributes.h" #if HAVE_INTRINSICS_SSE && defined(__SSE__) |