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

Git pushed a commit to branch master
in repository ffmpeg.

commit af87713f8aff14a24e622ded02d7c87cce948a48
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Fri Aug 7 16:14:37 2026 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Sun Aug 9 17:26:53 2026 +0200

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

diff --git a/libavcodec/diracdec.c b/libavcodec/diracdec.c
index 6a5980601f..4f2ddb5897 100644
--- a/libavcodec/diracdec.c
+++ b/libavcodec/diracdec.c
@@ -1924,7 +1924,7 @@ static int dirac_decode_frame_internal(DiracContext *s)
             select_dsp_funcs(s, p->width, p->height, p->xblen, p->yblen);
 
             for (i = 0; i < s->num_refs; i++) {
-                int ret = interpolate_refplane(s, s->ref_pics[i], comp, 
p->width, p->height);
+                ret = interpolate_refplane(s, s->ref_pics[i], comp, p->width, 
p->height);
                 if (ret < 0)
                     return ret;
             }

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

Reply via email to