This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 9dd48f7d251dc9270dd0b18ccbff2ff982560d79 Author: James Almer <[email protected]> AuthorDate: Tue Jun 2 22:54:38 2026 -0300 Commit: James Almer <[email protected]> CommitDate: Tue Jun 2 23:23:32 2026 -0300 avcodec/itut35: add missing unref calls in ff_itut_t35_unref() Fixes memleaks. Signed-off-by: James Almer <[email protected]> --- libavcodec/itut35.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/itut35.c b/libavcodec/itut35.c index 0f978b2097..edba062315 100644 --- a/libavcodec/itut35.c +++ b/libavcodec/itut35.c @@ -387,9 +387,12 @@ FF_ENABLE_DEPRECATION_WARNINGS void ff_itut_t35_unref(FFITUTT35Meta *metadata) { + ff_aom_uninit_film_grain_params(&metadata->aom_film_grain); + av_buffer_unref(&metadata->afd); av_buffer_unref(&metadata->a53_cc); av_buffer_unref(&metadata->hdr_plus); av_buffer_unref(&metadata->hdr_smpte2094_app5); av_buffer_unref(&metadata->lcevc); av_buffer_unref(&metadata->dovi); + av_buffer_unref(&metadata->hdr_vivid); } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
