mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
To do so, simply add these init files to X86ASM-OBJS instead of OBJS in the Makefile. The former is already used for the actual assembly files, but using them for the C init files just works, because the build system uses file extensions to derive whether it is a C or a NASM file. This avoids compiling unused function stubs and also reduces our reliance on DCE: We don't add %if checks to the asm files except for AVX, AVX2, FMA3, FMA4, XOP and AVX512, so all the MMX-SSE4 functions will be available. It also allows to remove HAVE_X86ASM checks in these init files. Reviewed-by: Kacper Michajłow <kasper93@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
13 lines
792 B
Makefile
13 lines
792 B
Makefile
clean::
|
|
$(RM) $(CLEANSUFFIXES:%=libavcodec/x86/vvc/%) $(CLEANSUFFIXES:%=libavcodec/x86/h26x/%)
|
|
|
|
X86ASM-OBJS-$(CONFIG_VVC_DECODER) += x86/vvc/dsp_init.o \
|
|
x86/vvc/alf.o \
|
|
x86/vvc/dmvr.o \
|
|
x86/vvc/mc.o \
|
|
x86/vvc/of.o \
|
|
x86/vvc/sad.o \
|
|
x86/vvc/sao.o \
|
|
x86/vvc/sao_10bit.o \
|
|
x86/h26x/h2656dsp.o \
|
|
x86/h26x/h2656_inter.o
|