aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/hls.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2025-04-06 12:31:19 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2025-04-29 22:59:23 +0200
commit0da6ddfc0135df970f2fca2d110aea78ce73e92c (patch)
tree2a5c1baf060b2ee52549b09775c40db5b14be686 /libavformat/hls.c
parent2352145e416c7cbdcf9679ea690c9c1dee4a7936 (diff)
downloadffmpeg-0da6ddfc0135df970f2fca2d110aea78ce73e92c.tar.gz
avformat/hls: Point user to how to easily contribute a fix for missing extensions
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/hls.c')
-rw-r--r--libavformat/hls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c
index 679161b390..bb09344481 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -745,7 +745,7 @@ static int test_segment(AVFormatContext *s, const AVInputFormat *in_fmt, struct
+ 2*(ff_match_url_ext(seg->url, c->allowed_extensions) > 0);
if (!matchA) {
- av_log(s, AV_LOG_ERROR, "URL %s is not in allowed_extensions\n", seg->url);
+ av_log(s, AV_LOG_ERROR, "URL %s is not in allowed_extensions, consider updating hls.c and submitting a patch to ffmpeg-devel, if this should be added\n", seg->url);
return AVERROR_INVALIDDATA;
}