qsvenc: mark the encoders as INIT_CLEANUP

Should fix some leaks on init failure.
This commit is contained in:
Anton Khirnov 2015-08-05 13:42:08 +02:00
parent 83847cc8fa
commit 5d2daebf3c
3 changed files with 3 additions and 0 deletions

View File

@ -118,4 +118,5 @@ AVCodec ff_h264_qsv_encoder = {
AV_PIX_FMT_NONE },
.priv_class = &class,
.defaults = qsv_enc_defaults,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
};

View File

@ -269,4 +269,5 @@ AVCodec ff_hevc_qsv_encoder = {
AV_PIX_FMT_NONE },
.priv_class = &class,
.defaults = qsv_enc_defaults,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
};

View File

@ -114,4 +114,5 @@ AVCodec ff_mpeg2_qsv_encoder = {
AV_PIX_FMT_NONE },
.priv_class = &class,
.defaults = qsv_enc_defaults,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
};