[FFmpeg-devel] [PATCH 24/25] avcodec/vmdvideo: Cleanup generically upon init failure
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Thu May 6 08:29:54 EEST 2021
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
libavcodec/vmdvideo.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/libavcodec/vmdvideo.c b/libavcodec/vmdvideo.c
index 15846919d8..ad88a43ae3 100644
--- a/libavcodec/vmdvideo.c
+++ b/libavcodec/vmdvideo.c
@@ -423,10 +423,8 @@ static av_cold int vmdvideo_decode_init(AVCodecContext *avctx)
}
s->prev_frame = av_frame_alloc();
- if (!s->prev_frame) {
- vmdvideo_decode_end(avctx);
+ if (!s->prev_frame)
return AVERROR(ENOMEM);
- }
return 0;
}
@@ -477,4 +475,5 @@ const AVCodec ff_vmdvideo_decoder = {
.close = vmdvideo_decode_end,
.decode = vmdvideo_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
+ .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
};
--
2.27.0
More information about the ffmpeg-devel
mailing list