This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/8.0 in repository ffmpeg.
commit a9c4fdd3297b4ae39432d02ba95d8553cf3c1448 Author: Kacper Michajłow <[email protected]> AuthorDate: Mon May 11 11:10:27 2026 +0200 Commit: Timo Rothenpieler <[email protected]> CommitDate: Wed May 20 15:15:30 2026 +0000 avformat/hlsenc: respect io_open set in AVFormatContext io_open_default() will call internal impl if needed, don't call it directly. (cherry picked from commit 06ef9a74ea0ef73cf2da2956974565692931f724) Signed-off-by: Kacper Michajłow <[email protected]> --- libavformat/hlsenc.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 8ceaeffdff..97942bf023 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1264,9 +1264,7 @@ static int parse_playlist(AVFormatContext *s, const char *url, VariantStream *vs const char *end; double discont_program_date_time = 0; - if ((ret = ffio_open_whitelist(&in, url, AVIO_FLAG_READ, - &s->interrupt_callback, NULL, - s->protocol_whitelist, s->protocol_blacklist)) < 0) + if ((ret = s->io_open(s, &in, url, AVIO_FLAG_READ, NULL)) < 0) return ret; ff_get_chomp_line(in, line, sizeof(line)); @@ -1376,7 +1374,7 @@ static int parse_playlist(AVFormatContext *s, const char *url, VariantStream *vs } fail: - avio_close(in); + ff_format_io_close(s, &in); return ret; } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
