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

Git pushed a commit to branch master
in repository ffmpeg.

commit ac25aed6b34e28ef908136944e6366439e3d22d4
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Tue Feb 24 01:46:19 2026 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Tue Mar 10 13:52:19 2026 +0100

    avcodec/eatgq: Fix shadowing
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/eatgq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/eatgq.c b/libavcodec/eatgq.c
index efcad62df1..c94c3e3816 100644
--- a/libavcodec/eatgq.c
+++ b/libavcodec/eatgq.c
@@ -170,7 +170,7 @@ static int tgq_decode_mb(TgqContext *s, GetByteContext 
*gbyte,
             return ret;
 
         for (i = 0; i < 6; i++) {
-            int ret = tgq_decode_block(s, s->block[i], &gb);
+            ret = tgq_decode_block(s, s->block[i], &gb);
             if (ret < 0)
                 return ret;
         }

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

Reply via email to