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

Git pushed a commit to branch master
in repository ffmpeg.

commit bffaa6aaaba6f1b35ed0dfc6cb3645eb2559d43e
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Sat Feb 21 17:28:40 2026 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Tue Mar 10 13:52:18 2026 +0100

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

diff --git a/libavcodec/utvideodec.c b/libavcodec/utvideodec.c
index 098706b705..e9321241f0 100644
--- a/libavcodec/utvideodec.c
+++ b/libavcodec/utvideodec.c
@@ -76,13 +76,12 @@ typedef struct HuffEntry {
 static int build_huff(UtvideoContext *c, const uint8_t *src, VLC *vlc,
                       VLC_MULTI *multi, int *fsym, unsigned nb_elems)
 {
-    int i;
     HuffEntry he[1024];
     uint8_t bits[1024];
     uint16_t codes_count[33] = { 0 };
 
     *fsym = -1;
-    for (i = 0; i < nb_elems; i++) {
+    for (unsigned i = 0; i < nb_elems; i++) {
         if (src[i] == 0) {
             *fsym = i;
             return 0;

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

Reply via email to