avformat: call AVOutputFormat->deinit() when freeing the context

Despite the doxy stating that it's called when the muxer is destroyed,
this was not true in practice. It's only called by av_write_trailer()
and on init() failure.

An AVFormatContext may be closed without writing the trailer if errors
ocurred while muxing packets, so in order to prevent memory leaks, it
should effectively be called when freeing the muxer.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer
2019-10-18 23:23:32 -03:00
parent 27bae5aaca
commit 02cf239196
2 changed files with 13 additions and 7 deletions

View File

@@ -4437,6 +4437,9 @@ void avformat_free_context(AVFormatContext *s)
if (!s)
return;
if (s->oformat && s->oformat->deinit && s->internal->initialized)
s->oformat->deinit(s);
av_opt_free(s);
if (s->iformat && s->iformat->priv_class && s->priv_data)
av_opt_free(s->priv_data);