From 0c0a1d73c2310ffe52a6545a860f2e1e19e06578 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Tue, 7 Apr 2020 22:14:13 +0200 Subject: avformat/Makefile: Remove false dependencies of WebM and Matroska muxer These muxers don't depend on the WebM Chunk or the WebM DASH Manifest muxers. Furthermore, remove some #if checks in webm_chunk.c and webmdashenc.c. They are always true now that webm_chunk.c and webmdashenc.c are only compiled when their corresponding muxers are enabled. Signed-off-by: Andreas Rheinhardt --- libavformat/webm_chunk.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'libavformat/webm_chunk.c') diff --git a/libavformat/webm_chunk.c b/libavformat/webm_chunk.c index f079c5c65e..1749509975 100644 --- a/libavformat/webm_chunk.c +++ b/libavformat/webm_chunk.c @@ -284,7 +284,6 @@ static const AVOption options[] = { { NULL }, }; -#if CONFIG_WEBM_CHUNK_MUXER static const AVClass webm_chunk_class = { .class_name = "WebM Chunk Muxer", .item_name = av_default_item_name, @@ -307,4 +306,3 @@ AVOutputFormat ff_webm_chunk_muxer = { .deinit = webm_chunk_deinit, .priv_class = &webm_chunk_class, }; -#endif -- cgit v1.2.3