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:
authorLynne <dev@lynne.ee>2022-11-01 10:45:27 +0300
committerLynne <dev@lynne.ee>2022-11-06 16:39:39 +0300
commit978963a77b27d52000f83c647ef46b6d0c390326 (patch)
tree41c0d775508b5d534ac69f3ab51819695c328f13 /libavcodec/wma.c
parent6ba0aa1770ba29eb4126c6a706f6b0cd3809648f (diff)
wma: convert to lavu/tx
Converts both the decoder and encoders.
Diffstat (limited to 'libavcodec/wma.c')
-rw-r--r--libavcodec/wma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wma.c b/libavcodec/wma.c
index ddf50d087c..41d16e52f8 100644
--- a/libavcodec/wma.c
+++ b/libavcodec/wma.c
@@ -369,7 +369,7 @@ int ff_wma_end(AVCodecContext *avctx)
int i;
for (i = 0; i < s->nb_block_sizes; i++)
- ff_mdct_end(&s->mdct_ctx[i]);
+ av_tx_uninit(&s->mdct_ctx[i]);
if (s->use_exp_vlc)
ff_free_vlc(&s->exp_vlc);