Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-11-06 20:09:01 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-11-06 20:09:01 +0300
commit09eaa76a72151f60e5e28f9ff48ae1587e7fce1b (patch)
tree67f30f3fbbe0591f53805b830572ec4ddcf31041
parent649d7cbda8bf34c8fe2a08b387208376ba98a90d (diff)
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.c2
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;