From 29e7584aae625e07c19f43dc395a40ba9486f9d8 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Date: Sat, 29 Mar 2025 02:07:32 +0100 Subject: [PATCH 1/2] avcodec/dxa: Remove set-but-unused variable Forgotten in 6e80ec9dc5d7ea83c3abac641aa08ad7849c9e98. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> --- libavcodec/dxa.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/dxa.c b/libavcodec/dxa.c index 3a53d3496e..5b429781df 100644 --- a/libavcodec/dxa.c +++ b/libavcodec/dxa.c @@ -213,7 +213,6 @@ static int decode_frame(AVCodecContext *avctx, AVFrame *frame, unsigned long dsize; int i, j, compr, ret; int stride; - int pc = 0; GetByteContext gb; bytestream2_init(&gb, avpkt->data, avpkt->size); @@ -224,7 +223,6 @@ static int decode_frame(AVCodecContext *avctx, AVFrame *frame, for(i = 0; i < 256; i++){ c->pal[i] = 0xFFU << 24 | bytestream2_get_be24(&gb); } - pc = 1; } if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0) -- 2.45.2