diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-11-06 18:09:01 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-11-06 18:09:01 +0100 |
commit | 09eaa76a72151f60e5e28f9ff48ae1587e7fce1b (patch) | |
tree | 67f30f3fbbe0591f53805b830572ec4ddcf31041 | |
parent | 649d7cbda8bf34c8fe2a08b387208376ba98a90d (diff) | |
download | ffmpeg-09eaa76a72151f60e5e28f9ff48ae1587e7fce1b.tar.gz |
avcodec/wmaprodec: Remove unused variable
Unused since 5f1111e42ea7763d24d74b596285f5daeaa203f7
(replaced by a new "err" variable).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/wmaprodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |