1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00
Files
FFmpeg/libavcodec/vvc/Makefile
Andreas Rheinhardt 6bd4e8bf76 avcodec/vvc/Makefile: Move VVC decoder->h2645data dep to lavc/Makefile
If h2645data.c were changed in a way that makes it rely on another
object file, all components that need h2645data.o would need to be
updated. And given that the VVC decoder->h2645data.o dependency is
currently hidden in a separate Makefile, it would likely be forgotten.
So move it to the libavcodec/Makefile.

Reviewed-by: Nuo Mi <nuomi2021@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2025-03-18 13:45:20 +01:00

18 lines
920 B
Makefile

clean::
$(RM) $(CLEANSUFFIXES:%=libavcodec/vvc/%)
OBJS-$(CONFIG_VVC_DECODER) += vvc/dec.o \
vvc/dsp.o \
vvc/cabac.o \
vvc/ctu.o \
vvc/data.o \
vvc/filter.o \
vvc/inter.o \
vvc/intra.o \
vvc/intra_utils.o \
vvc/itx_1d.o \
vvc/mvs.o \
vvc/ps.o \
vvc/refs.o \
vvc/thread.o \