mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 17:31:47 +09:00
Pt 2
This commit is contained in:
parent
8d81720534
commit
8c34d56b90
3 changed files with 14 additions and 6 deletions
|
|
@ -468,8 +468,6 @@ av_xtea_init
|
|||
av_xtea_le_crypt
|
||||
av_xtea_le_init
|
||||
avpriv_alloc_fixed_dsp
|
||||
avpriv_atomic_int_add_and_fetch
|
||||
avpriv_atomic_ptr_cas
|
||||
avpriv_cga_font
|
||||
avpriv_dict_set_timestamp
|
||||
avpriv_float_dsp_alloc
|
||||
|
|
|
|||
|
|
@ -42,7 +42,6 @@ SOURCES += [
|
|||
'hash.c',
|
||||
'hmac.c',
|
||||
'hwcontext.c',
|
||||
# 'hwcontext_cuda.c', # DISABLED: macOS does not support CUDA/NVCUVID
|
||||
'imgutils.c',
|
||||
'integer.c',
|
||||
'intmath.c',
|
||||
|
|
@ -82,6 +81,11 @@ SOURCES += [
|
|||
'xtea.c',
|
||||
]
|
||||
|
||||
if CONFIG['OS_ARCH'] != 'Darwin':
|
||||
SOURCES += [
|
||||
'hwcontext_cuda.c',
|
||||
]
|
||||
|
||||
SYMBOLS_FILE = 'avutil.symbols'
|
||||
NO_VISIBILITY_FLAGS = True
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ if CONFIG['CPU_ARCH'] == 'arm':
|
|||
SOURCES += [
|
||||
'adler32_simd.c',
|
||||
'inffast_chunk.c',
|
||||
'inflate_simd.c',
|
||||
]
|
||||
|
||||
if CONFIG['INTEL_ARCHITECTURE']:
|
||||
|
|
@ -40,7 +39,6 @@ if CONFIG['INTEL_ARCHITECTURE']:
|
|||
'crc_folding.c',
|
||||
'fill_window_sse.c',
|
||||
'inffast_chunk.c',
|
||||
'inflate_simd.c',
|
||||
]
|
||||
else:
|
||||
SOURCES += [
|
||||
|
|
@ -64,10 +62,18 @@ SOURCES += [
|
|||
'gzwrite.c',
|
||||
'infback.c',
|
||||
'inffast.c',
|
||||
'inflate.c',
|
||||
'inftrees.c',
|
||||
'trees.c',
|
||||
'uncompr.c',
|
||||
'zutil.c',
|
||||
]
|
||||
|
||||
if CONFIG['CPU_ARCH'] == 'arm' or (CONFIG['INTEL_ARCHITECTURE'] and CONFIG['OS_ARCH'] != 'Darwin'):
|
||||
SOURCES += [
|
||||
'inflate_simd.c',
|
||||
]
|
||||
else:
|
||||
SOURCES += [
|
||||
'inflate.c',
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue