summaryrefslogtreecommitdiff
path: root/libavcodec/rv10enc.c
diff options
context:
space:
mode:
authorLimin Wang <lance.lmwang@gmail.com>2020-05-27 11:45:49 +0800
committerLimin Wang <lance.lmwang@gmail.com>2020-05-27 21:59:51 +0800
commit467d9e27e0cb2bf74f41dc832f2f8d191ba58ec9 (patch)
treebb5d51825fb4f8d5d25444452a27183ee69e1261 /libavcodec/rv10enc.c
parent6124cbdcfaab134a066e67706c92c8f01b4e13ff (diff)
downloadffmpeg-467d9e27e0cb2bf74f41dc832f2f8d191ba58ec9.tar.gz
avcodec: Add FF_CODEC_CAP_INIT_CLEANUP
then ff_mpv_encode_end() will be unnecessary in ff_mpv_encode_init() if it's failed. The FF_CODEC_CAP_INIT_CLEANUP flag is need for single thread, For multithread, it'll be cleanup still by AV_CODEC_CAP_FRAME_THREADS flag if have. Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
Diffstat (limited to 'libavcodec/rv10enc.c')
-rw-r--r--libavcodec/rv10enc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/rv10enc.c b/libavcodec/rv10enc.c
index 8691d1880e..55538148f2 100644
--- a/libavcodec/rv10enc.c
+++ b/libavcodec/rv10enc.c
@@ -79,6 +79,7 @@ AVCodec ff_rv10_encoder = {
.init = ff_mpv_encode_init,
.encode2 = ff_mpv_encode_picture,
.close = ff_mpv_encode_end,
+ .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE },
.priv_class = &rv10_class,
};