summaryrefslogtreecommitdiff
path: root/libavformat/webmdashenc.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/webmdashenc.c
parenta51d1b3634e11c8d92acbf8b7e88585d5de07575 (diff)
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/webmdashenc.c')
-rw-r--r--libavformat/webmdashenc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/webmdashenc.c b/libavformat/webmdashenc.c
index 401cfe52d5..465485c90c 100644
--- a/libavformat/webmdashenc.c
+++ b/libavformat/webmdashenc.c
@@ -559,7 +559,6 @@ static const AVOption options[] = {
{ NULL },
};
-#if CONFIG_WEBM_DASH_MANIFEST_MUXER
static const AVClass webm_dash_class = {
.class_name = "WebM DASH Manifest muxer",
.item_name = av_default_item_name,
@@ -577,4 +576,3 @@ AVOutputFormat ff_webm_dash_manifest_muxer = {
.write_packet = webm_dash_manifest_write_packet,
.priv_class = &webm_dash_class,
};
-#endif