[FFmpeg-cvslog] avformat/hls: Point user to how to easily contribute a fix for missing extensions
Michael Niedermayer
git at videolan.org
Wed Apr 30 01:14:47 EEST 2025
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sun Apr 6 12:31:19 2025 +0200| [0da6ddfc0135df970f2fca2d110aea78ce73e92c] | committer: Michael Niedermayer
avformat/hls: Point user to how to easily contribute a fix for missing extensions
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0da6ddfc0135df970f2fca2d110aea78ce73e92c
---
libavformat/hls.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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;
}
More information about the ffmpeg-cvslog
mailing list