Commit 10352061 authored by Andrey Semashev's avatar Andrey Semashev Committed by Karthick J

lavf/dashdec: Add webm to the list of allowed extensions.

This is in coherence with dashenc, which can now generate segments with
webm file name extension by default. Dashdec should be able to handle
such streams by default as well.
parent 1ffac238
...@@ -2242,7 +2242,7 @@ static int dash_probe(AVProbeData *p) ...@@ -2242,7 +2242,7 @@ static int dash_probe(AVProbeData *p)
static const AVOption dash_options[] = { static const AVOption dash_options[] = {
{"allowed_extensions", "List of file extensions that dash is allowed to access", {"allowed_extensions", "List of file extensions that dash is allowed to access",
OFFSET(allowed_extensions), AV_OPT_TYPE_STRING, OFFSET(allowed_extensions), AV_OPT_TYPE_STRING,
{.str = "aac,m4a,m4s,m4v,mov,mp4"}, {.str = "aac,m4a,m4s,m4v,mov,mp4,webm"},
INT_MIN, INT_MAX, FLAGS}, INT_MIN, INT_MAX, FLAGS},
{NULL} {NULL}
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment