This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit 0037c5abdd00e959d22ebd395dea1104ddb0053f
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Sat Feb 21 14:04:53 2026 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Tue Mar 10 13:52:18 2026 +0100

    avformat/webpenc: Fix shadowing
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavformat/webpenc.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/libavformat/webpenc.c b/libavformat/webpenc.c
index ce0d046aa9..5d0eed5a8e 100644
--- a/libavformat/webpenc.c
+++ b/libavformat/webpenc.c
@@ -163,7 +163,6 @@ static int webp_write_packet(AVFormatContext *s, AVPacket 
*pkt)
         avio_write(s->pb, pkt->data, pkt->size);
         w->wrote_webp_header = 1;  // for good measure
     } else {
-        int ret;
         if ((ret = flush(s, 0, pkt->pts)) < 0)
             return ret;
         av_packet_ref(w->last_pkt, pkt);

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to