diff options
author | Lynne <dev@lynne.ee> | 2022-11-01 08:45:27 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2022-11-06 14:39:39 +0100 |
commit | 978963a77b27d52000f83c647ef46b6d0c390326 (patch) | |
tree | 41c0d775508b5d534ac69f3ab51819695c328f13 /libavcodec/wma.c | |
parent | 6ba0aa1770ba29eb4126c6a706f6b0cd3809648f (diff) | |
download | ffmpeg-978963a77b27d52000f83c647ef46b6d0c390326.tar.gz |
wma: convert to lavu/tx
Converts both the decoder and encoders.
Diffstat (limited to 'libavcodec/wma.c')
-rw-r--r-- | libavcodec/wma.c | 2 |
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); |