]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/flashsv2enc: Cleanup generically after init failure
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Mon, 14 Sep 2020 14:57:49 +0000 (16:57 +0200)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Sat, 19 Sep 2020 16:45:03 +0000 (18:45 +0200)
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavcodec/flashsv2enc.c

index e2a603f31286b48cd7947be3efb8346cd5f17e78..851abdc8222711288acf4730a955bfced0cf09c7 100644 (file)
@@ -235,7 +235,6 @@ static av_cold int flashsv2_encode_init(AVCodecContext * avctx)
         || !s->current_frame || !s->key_frame || !s->key_blocks
         || !s->frame_blocks) {
         av_log(avctx, AV_LOG_ERROR, "Memory allocation failed.\n");
-        cleanup(s);
         return AVERROR(ENOMEM);
     }
 
@@ -918,4 +917,5 @@ AVCodec ff_flashsv2_encoder = {
     .encode2        = flashsv2_encode_frame,
     .close          = flashsv2_encode_end,
     .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_BGR24, AV_PIX_FMT_NONE },
+    .caps_internal  = FF_CODEC_CAP_INIT_CLEANUP,
 };