diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-08-31 15:39:03 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-08-31 15:39:03 +0200 |
commit | 52be5428c0fb0942dfdb5628f26bb73574564d24 (patch) | |
tree | 810f38eb452e31e0b45775f378122084101087cd /libswscale/x86 | |
parent | 9cb919997064662344101d9df598d8b5cbb9361f (diff) | |
download | ffmpeg-52be5428c0fb0942dfdb5628f26bb73574564d24.tar.gz |
Add some missing _EXTERNAL suffixes to yasm source files.
Diffstat (limited to 'libswscale/x86')
-rw-r--r-- | libswscale/x86/input.asm | 6 | ||||
-rw-r--r-- | libswscale/x86/output.asm | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/libswscale/x86/input.asm b/libswscale/x86/input.asm index c4174ee65e..0124c66580 100644 --- a/libswscale/x86/input.asm +++ b/libswscale/x86/input.asm @@ -304,7 +304,7 @@ RGB24_FUNCS 10, 12 INIT_XMM ssse3 RGB24_FUNCS 11, 13 -%if HAVE_AVX +%if HAVE_AVX_EXTERNAL INIT_XMM avx RGB24_FUNCS 11, 13 %endif @@ -450,7 +450,7 @@ RGB32_FUNCS 0, 0 INIT_XMM sse2 RGB32_FUNCS 8, 12 -%if HAVE_AVX +%if HAVE_AVX_EXTERNAL INIT_XMM avx RGB32_FUNCS 8, 12 %endif @@ -660,7 +660,7 @@ YUYV_TO_UV_FN 3, uyvy NVXX_TO_UV_FN 5, nv12 NVXX_TO_UV_FN 5, nv21 -%if HAVE_AVX +%if HAVE_AVX_EXTERNAL INIT_XMM avx ; in theory, we could write a yuy2-to-y using vpand (i.e. AVX), but ; that's not faster in practice diff --git a/libswscale/x86/output.asm b/libswscale/x86/output.asm index 01a946f7b3..851165a03d 100644 --- a/libswscale/x86/output.asm +++ b/libswscale/x86/output.asm @@ -267,7 +267,7 @@ yuv2planeX_fn 9, 7, 5 yuv2planeX_fn 10, 7, 5 yuv2planeX_fn 16, 8, 5 -%if HAVE_AVX +%if HAVE_AVX_EXTERNAL INIT_XMM avx yuv2planeX_fn 8, 10, 7 yuv2planeX_fn 9, 7, 5 @@ -407,7 +407,7 @@ yuv2plane1_fn 16, 6, 3 INIT_XMM sse4 yuv2plane1_fn 16, 5, 3 -%if HAVE_AVX +%if HAVE_AVX_EXTERNAL INIT_XMM avx yuv2plane1_fn 8, 5, 5 yuv2plane1_fn 9, 5, 3 |