mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 01:17:34 +09:00
Enable dav1d SIMD on more architectures
This commit is contained in:
parent
1e73896b07
commit
ad1bfb30d5
19 changed files with 402 additions and 20 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue