diff mbox series

[FFmpeg-devel,28/60] avcodec/fix: fix variable shadowing

Message ID D41CE2FHX554.UH3VLIA2ODMB@gmail.com
State New
Headers show
Series [FFmpeg-devel,01/60] fftools/ffmpeg_opt: fix variable shadowing | expand

Commit Message

Marvin Scholz Sept. 8, 2024, 9:32 p.m. UTC
---
 libavcodec/fic.c | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/libavcodec/fic.c b/libavcodec/fic.c
index ec26e3154d..4763fab689 100644
--- a/libavcodec/fic.c
+++ b/libavcodec/fic.c
@@ -191,8 +191,6 @@  static int fic_decode_slice(AVCodecContext *avctx, void *tdata)
 
         for (y = 0; y < (slice_h >> !!p); y += 8) {
             for (x = 0; x < (ctx->aligned_width >> !!p); x += 8) {
-                int ret;
-
                 if ((ret = fic_decode_block(ctx, &gb, dst + x, stride,
                                             tctx->block, &tctx->p_frame)) != 0)
                     return ret;