Merge pull request #4978 from ligfx/avidumpclosefiles
AVIDump[regression]: close avio handles
This commit is contained in:
commit
b16cebc297
|
@ -323,7 +323,13 @@ void AVIDump::CloseVideoFile()
|
||||||
av_frame_free(&s_scaled_frame);
|
av_frame_free(&s_scaled_frame);
|
||||||
|
|
||||||
avcodec_free_context(&s_codec_context);
|
avcodec_free_context(&s_codec_context);
|
||||||
|
|
||||||
|
if (s_format_context)
|
||||||
|
{
|
||||||
|
avio_closep(&s_format_context->pb);
|
||||||
|
}
|
||||||
avformat_free_context(s_format_context);
|
avformat_free_context(s_format_context);
|
||||||
|
s_format_context = nullptr;
|
||||||
|
|
||||||
if (s_sws_context)
|
if (s_sws_context)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue