diff mbox series

[FFmpeg-devel,v3,06/22] avcodec/alac: Add FF_CODEC_CAP_INIT_CLEANUP

Message ID 1591111034-15499-12-git-send-email-lance.lmwang@gmail.com
State Superseded
Headers show
Series None | expand

Commit Message

Lance Wang June 2, 2020, 3:16 p.m. UTC
From: Limin Wang <lance.lmwang@gmail.com>

Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
---
 libavcodec/alac.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavcodec/alac.c b/libavcodec/alac.c
index 82689da..3b41373 100644
--- a/libavcodec/alac.c
+++ b/libavcodec/alac.c
@@ -511,7 +511,6 @@  static int allocate_buffers(ALACContext *alac)
     }
     return 0;
 buf_alloc_fail:
-    alac_decode_close(alac->avctx);
     return AVERROR(ENOMEM);
 }
 
@@ -625,5 +624,6 @@  AVCodec ff_alac_decoder = {
     .close          = alac_decode_close,
     .decode         = alac_decode_frame,
     .capabilities   = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
+    .caps_internal  = FF_CODEC_CAP_INIT_CLEANUP,
     .priv_class     = &alac_class
 };