This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit a910a30326fdcaeef1ed6b1ba4ea56d935200b6d Author: Niklas Haas <[email protected]> AuthorDate: Tue Jun 23 15:36:23 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Mon Jul 27 17:05:20 2026 +0000 avformat/libcurl: also allow forcing streams to be seekable The documentation states this as a valid option, but the code only allows force-disabling atm. Sponsored-by: nxtedition AB Signed-off-by: Niklas Haas <[email protected]> --- libavformat/libcurl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/libcurl.c b/libavformat/libcurl.c index 62138ef108..b747ccc940 100644 --- a/libavformat/libcurl.c +++ b/libavformat/libcurl.c @@ -860,6 +860,8 @@ static int libcurl_open(URLContext *h, const char *url, int flags, if (c->seekable_opt == 0) c->seekable = 0; + else if (c->seekable_opt == 1) + c->seekable = 1; h->is_streamed = !c->seekable; return 0; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
