Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure6
-rw-r--r--libavcodec/internal.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 19b44d4cc5..b4ec1e681d 100755
--- a/configure
+++ b/configure
@@ -1582,6 +1582,7 @@ ARCH_FEATURES="
local_aligned_8
local_aligned_16
local_aligned_32
+ simd_align_16
"
BUILTIN_LIST="
@@ -1997,8 +1998,7 @@ aligned_stack_if_any="aarch64 ppc x86"
fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
fast_clz_if_any="aarch64 alpha avr32 mips ppc x86"
fast_unaligned_if_any="aarch64 ppc x86"
-
-need_memalign="altivec neon sse"
+simd_align_16_if_any="altivec neon sse"
# system capabilities
@@ -5191,7 +5191,7 @@ enabled_all dxva2 dxva2api_cobj CoTaskMemFree &&
enable dxva2_lib
! enabled_any memalign posix_memalign aligned_malloc &&
- enabled_any $need_memalign && enable memalign_hack
+ enabled $simd_align_16 && enable memalign_hack
# add_dep lib dep
# -> enable ${lib}_deps_${dep}
diff --git a/libavcodec/internal.h b/libavcodec/internal.h
index e00aad9431..dcb2113f6f 100644
--- a/libavcodec/internal.h
+++ b/libavcodec/internal.h
@@ -37,7 +37,7 @@
#if HAVE_AVX
# define STRIDE_ALIGN 32
-#elif HAVE_NEON || ARCH_PPC || HAVE_MMX
+#elif HAVE_SIMD_ALIGN_16
# define STRIDE_ALIGN 16
#else
# define STRIDE_ALIGN 8