diff options
author | Mans Rullgard <mans@mansr.com> | 2012-08-08 13:51:52 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-08-09 00:58:20 +0100 |
commit | c318626ce248e55df032146b16e8e0f4ed1d99fb (patch) | |
tree | 86039fb1b5e69e04487a3f219075cd0df9fa3fa4 /libswscale | |
parent | 122d5c526a43122b1f9ac9bce79e3938c8354e43 (diff) | |
download | ffmpeg-c318626ce248e55df032146b16e8e0f4ed1d99fb.tar.gz |
x86: rename libavutil/x86_cpu.h to libavutil/x86/asm.h
This puts x86-specific things in the x86/ subdirectory where they
belong.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/utils.c | 2 | ||||
-rw-r--r-- | libswscale/x86/rgb2rgb.c | 2 | ||||
-rw-r--r-- | libswscale/x86/swscale.c | 2 | ||||
-rw-r--r-- | libswscale/x86/yuv2rgb.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 9a57405d2c..f890b5cee1 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -45,7 +45,7 @@ #include "libavutil/mathematics.h" #include "libavutil/opt.h" #include "libavutil/pixdesc.h" -#include "libavutil/x86_cpu.h" +#include "libavutil/x86/asm.h" #include "rgb2rgb.h" #include "swscale.h" #include "swscale_internal.h" diff --git a/libswscale/x86/rgb2rgb.c b/libswscale/x86/rgb2rgb.c index 066749c22f..f201281fac 100644 --- a/libswscale/x86/rgb2rgb.c +++ b/libswscale/x86/rgb2rgb.c @@ -27,7 +27,7 @@ #include "config.h" #include "libavutil/attributes.h" -#include "libavutil/x86_cpu.h" +#include "libavutil/x86/asm.h" #include "libavutil/cpu.h" #include "libavutil/bswap.h" #include "libswscale/rgb2rgb.h" diff --git a/libswscale/x86/swscale.c b/libswscale/x86/swscale.c index 57d270b09d..9683c0cedd 100644 --- a/libswscale/x86/swscale.c +++ b/libswscale/x86/swscale.c @@ -24,7 +24,7 @@ #include "libswscale/swscale_internal.h" #include "libavutil/attributes.h" #include "libavutil/intreadwrite.h" -#include "libavutil/x86_cpu.h" +#include "libavutil/x86/asm.h" #include "libavutil/cpu.h" #include "libavutil/pixdesc.h" diff --git a/libswscale/x86/yuv2rgb.c b/libswscale/x86/yuv2rgb.c index 501993ae42..93755493ab 100644 --- a/libswscale/x86/yuv2rgb.c +++ b/libswscale/x86/yuv2rgb.c @@ -34,7 +34,7 @@ #include "libswscale/swscale.h" #include "libswscale/swscale_internal.h" #include "libavutil/attributes.h" -#include "libavutil/x86_cpu.h" +#include "libavutil/x86/asm.h" #include "libavutil/cpu.h" #if HAVE_INLINE_ASM |