mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/ffv1enc: Fix memleaks on init failure
The FFV1 encoder has so far not cleaned up after itself in this case; but it can be done easily by setting the FF_CODEC_CAP_INIT_CLEANUP flag. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
a0750f412a
commit
f9215d0bb2
@ -1354,4 +1354,5 @@ AVCodec ff_ffv1_encoder = {
|
|||||||
.defaults = ffv1_defaults,
|
.defaults = ffv1_defaults,
|
||||||
#endif
|
#endif
|
||||||
.priv_class = &ffv1_class,
|
.priv_class = &ffv1_class,
|
||||||
|
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user