mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-18 13:21:49 +00:00
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
25 lines
599 B
Makefile
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 \
|