diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-07 11:36:19 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-08 18:16:29 +0100 |
commit | 52c1e9e530a46ba62b974f121c9d28a86900a632 (patch) | |
tree | db964e0e12752fb828955c14d14fcf294919adbc /libavformat/Makefile | |
parent | e852b1b0631c14c81d49230931fac4593e7467e1 (diff) | |
download | ffmpeg-52c1e9e530a46ba62b974f121c9d28a86900a632.tar.gz |
avformat/matroskaenc: Disable MKV-only code if MKV muxer is disabled
The Matroska muxer has quite a lot of dependencies and lots of them
are unnecessary for WebM. By disabling the Matroska-only code
at compile time one can get rid of them.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index d82512cec0..3dc6a479cc 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -585,9 +585,7 @@ OBJS-$(CONFIG_WAV_DEMUXER) += wavdec.o pcm.o OBJS-$(CONFIG_WAV_MUXER) += wavenc.o OBJS-$(CONFIG_WC3_DEMUXER) += wc3movie.o OBJS-$(CONFIG_WEBM_MUXER) += matroskaenc.o matroska.o \ - av1.o avc.o hevc.o isom_tags.o \ - flacenc_header.o avlanguage.o \ - wv.o vorbiscomment.o + av1.o avlanguage.o OBJS-$(CONFIG_WEBM_DASH_MANIFEST_MUXER) += webmdashenc.o OBJS-$(CONFIG_WEBM_CHUNK_MUXER) += webm_chunk.o OBJS-$(CONFIG_WEBP_MUXER) += webpenc.o |