diff options
author | James Almer <jamrial@gmail.com> | 2024-10-05 18:06:22 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-10-05 18:07:34 -0300 |
commit | 57d7ba4c4fe3d1956d9a14d8dd7f4acecf3fe1a1 (patch) | |
tree | 5baea327b27b889f63bc983f3b8894156064007f | |
parent | e907bf677a6bf50de2fe30c8674162bf26e4e83d (diff) | |
download | ffmpeg-57d7ba4c4fe3d1956d9a14d8dd7f4acecf3fe1a1.tar.gz |
avcodec/aac/aacdec: add a missing wrapper to an AAC USAC function call
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/aac/aacdec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/aac/aacdec.c b/libavcodec/aac/aacdec.c index 4110bc40ca..f6e79700d5 100644 --- a/libavcodec/aac/aacdec.c +++ b/libavcodec/aac/aacdec.c @@ -538,7 +538,9 @@ static av_cold void flush(AVCodecContext *avctx) } } +#if CONFIG_AAC_DECODER ff_aac_usac_reset_state(ac, &ac->oc[1]); +#endif } /** |