This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 798fb1f9aae45bcdde0496950a7fdc7625585d22 Author: Kacper Michajłow <[email protected]> AuthorDate: Sun Jul 26 13:49:43 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Mon Jul 27 17:05:20 2026 +0000 avformat/libcurl: clear the pause flag when unpausing Signed-off-by: Kacper Michajłow <[email protected]> --- libavformat/libcurl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/libcurl.c b/libavformat/libcurl.c index 3c6a1730fd..8dcc674ded 100644 --- a/libavformat/libcurl.c +++ b/libavformat/libcurl.c @@ -539,6 +539,9 @@ static void execute_command(CurlLoop *loop, CurlCmd *cmd) } break; case CMD_UNPAUSE: + pthread_mutex_lock(&c->mutex); + c->paused = 0; + pthread_mutex_unlock(&c->mutex); curl_easy_pause(c->easy, CURLPAUSE_CONT); break; case CMD_SEEK: _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
