From 09eaa76a72151f60e5e28f9ff48ae1587e7fce1b Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sun, 6 Nov 2022 18:09:01 +0100 Subject: [PATCH] avcodec/wmaprodec: Remove unused variable Unused since 5f1111e42ea7763d24d74b596285f5daeaa203f7 (replaced by a new "err" variable). Signed-off-by: Andreas Rheinhardt --- libavcodec/wmaprodec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/wmaprodec.c b/libavcodec/wmaprodec.c index 68e17e0743..fbfe75ee33 100644 --- a/libavcodec/wmaprodec.c +++ b/libavcodec/wmaprodec.c @@ -360,7 +360,7 @@ static av_cold int decode_init(WMAProDecodeCtx *s, AVCodecContext *avctx, int nu static AVOnce init_static_once = AV_ONCE_INIT; uint8_t *edata_ptr = avctx->extradata; unsigned int channel_mask; - int i, bits, ret; + int i, bits; int log2_max_num_subframes; int num_possible_block_sizes;