Enable dav1d SIMD on more architectures

This commit is contained in:
Basilisk-Dev 2026-05-11 10:16:34 -04:00 committed by wuggy
commit ad1bfb30d5
19 changed files with 402 additions and 20 deletions

View file

@ -66,6 +66,13 @@ bitdepth_sources = [
SOURCES += common_sources
SOURCES += bitdepth_sources
if CONFIG['CPU_ARCH'].startswith('x86'):
DIRS += ['x86']
elif CONFIG['CPU_ARCH'] in ('arm', 'aarch64'):
DIRS += ['arm']
elif CONFIG['CPU_ARCH'] == 'ppc64' and CONFIG['TARGET_ENDIANNESS'] == 'little':
DIRS += ['ppc']
if CONFIG['OS_TARGET'] == 'WINNT':
SOURCES += [
'/media/libdav1d/src/src/win32/thread.c',