ffmpeg/libavcodec/hevc/Makefile
Andrew Kelley 2797dad735 hevc: qualify libavcodec include paths
Removes the special -I flag specified in the avcodec/hevc/ subdirectory.

This makes code copy-pastable to other parts of the ffmpeg codebase, as
well as simplifying the build script.

It also reduces ambiguity, since there are many instances of same-named
header files existing in both libavformat/ and libavcodec/
subdirectories.

Follows: b29bdd3715
2026-06-13 05:48:44 +00:00

25 lines
599 B
Makefile

clean::
$(RM) $(CLEANSUFFIXES:%=libavcodec/hevc/%)
OBJS-$(CONFIG_HEVC_DECODER) += \
hevc/cabac.o \
hevc/data.o \
hevc/dsp.o \
hevc/filter.o \
hevc/hevcdec.o \
hevc/mvs.o \
hevc/pred.o \
hevc/refs.o \
OBJS-$(CONFIG_HEVC_PARSER) += \
hevc/parser.o \
OBJS-$(CONFIG_HEVCPARSE) += \
hevc/data.o \
hevc/parse.o \
hevc/ps.o \
OBJS-$(CONFIG_HEVC_SEI) += \
hevc/sei.o \