This commit is contained in:
ownedbywuigi 2026-04-05 18:06:53 +01:00
commit 8c34d56b90
3 changed files with 14 additions and 6 deletions

View file

@ -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

View file

@ -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

View file

@ -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',
]