summaryrefslogtreecommitdiff
path: root/libavformat/webm_chunk.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-04-07 22:14:13 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-04-14 18:43:44 +0200
commit0c0a1d73c2310ffe52a6545a860f2e1e19e06578 (patch)
tree9f11f3bcfc0410ad16dc31d49d5a1cfc45170206 /libavformat/webm_chunk.c
parenta51d1b3634e11c8d92acbf8b7e88585d5de07575 (diff)
downloadffmpeg-0c0a1d73c2310ffe52a6545a860f2e1e19e06578.tar.gz
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 <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/webm_chunk.c')
-rw-r--r--libavformat/webm_chunk.c2
1 files changed, 0 insertions, 2 deletions
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