mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-12 16:53:07 +00:00
Removes the special -I flag specified in the avcodec/opus/ 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
33 lines
938 B
Makefile
33 lines
938 B
Makefile
clean::
|
|
$(RM) $(CLEANSUFFIXES:%=libavcodec/opus/%)
|
|
|
|
OBJS-$(CONFIG_OPUS_DECODER) += \
|
|
opus/dec.o \
|
|
opus/dec_celt.o \
|
|
opus/celt.o \
|
|
opus/frame_duration_tab.o \
|
|
opus/pvq.o \
|
|
opus/silk.o \
|
|
opus/tab.o \
|
|
opus/dsp.o \
|
|
opus/parse.o \
|
|
opus/rc.o \
|
|
|
|
|
|
OBJS-$(CONFIG_OPUS_PARSER) += \
|
|
opus/frame_duration_tab.o \
|
|
opus/parser.o \
|
|
opus/parse.o \
|
|
|
|
|
|
OBJS-$(CONFIG_OPUS_ENCODER) += \
|
|
opus/enc.o \
|
|
opus/enc_psy.o \
|
|
opus/celt.o \
|
|
opus/pvq.o \
|
|
opus/rc.o \
|
|
opus/tab.o \
|
|
|
|
STLIBOBJS-$(CONFIG_MATROSKA_MUXER) += opus/frame_duration_tab.o
|
|
STLIBOBJS-$(CONFIG_WEBM_MUXER) += opus/frame_duration_tab.o
|