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

Git pushed a commit to branch master
in repository ffmpeg.

commit f49ed6235e13df957787dd062a1b270fbfa6642e
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Wed Aug 12 13:54:57 2026 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Thu Aug 13 13:17:59 2026 +0200

    avcodec/svq1enc: Fix shadowing
    
    Reviewed-by: Kacper Michajłow <[email protected]>
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/svq1enc.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/libavcodec/svq1enc.c b/libavcodec/svq1enc.c
index 953e235b13..d720b143ab 100644
--- a/libavcodec/svq1enc.c
+++ b/libavcodec/svq1enc.c
@@ -645,14 +645,14 @@ static int svq1_encode_frame(AVCodecContext *avctx, 
AVPacket *pkt,
     init_put_bits(&pb, pkt->data, pkt->size);
     svq1_write_header(s, &pb, s->pict_type);
     for (i = 0; i < 3; i++) {
-        int ret = svq1_encode_plane(s, i, &pb,
-                              pict->data[i],
-                              s->last_picture->data[i],
-                              s->current_picture->data[i],
-                              s->frame_width  / (i ? 4 : 1),
-                              s->frame_height / (i ? 4 : 1),
-                              pict->linesize[i],
-                              s->current_picture->linesize[i]);
+        ret = svq1_encode_plane(s, i, &pb,
+                                pict->data[i],
+                                s->last_picture->data[i],
+                                s->current_picture->data[i],
+                                s->frame_width  / (i ? 4 : 1),
+                                s->frame_height / (i ? 4 : 1),
+                                pict->linesize[i],
+                                s->current_picture->linesize[i]);
         emms_c();
         if (ret < 0)
             return ret;

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

Reply via email to