mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-21 18:43:25 +00:00
avcodec/mpeg12enc: Add FF_CODEC_CAP_INIT_CLEANUP
Fixes: Multiple memleaks Fixes: ffmpeg-memory-leak Found-by: Francis Provencher <francis@protekresearchlab.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
e125578994
commit
39ff027fd8
@ -1193,6 +1193,7 @@ AVCodec ff_mpeg1video_encoder = {
|
||||
.pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P,
|
||||
AV_PIX_FMT_NONE },
|
||||
.capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_SLICE_THREADS,
|
||||
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
|
||||
.priv_class = &mpeg1_class,
|
||||
};
|
||||
|
||||
@ -1210,5 +1211,6 @@ AVCodec ff_mpeg2video_encoder = {
|
||||
AV_PIX_FMT_YUV422P,
|
||||
AV_PIX_FMT_NONE },
|
||||
.capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_SLICE_THREADS,
|
||||
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
|
||||
.priv_class = &mpeg2_class,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user