mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 05:50:43 +00:00
avformat/dashenc: Fix a resource leak when http persistent in enabled
This commit is contained in:
parent
4e6e1e5350
commit
0df9d0f4cb
@ -1,6 +1,7 @@
|
||||
/*
|
||||
* MPEG-DASH ISO BMFF segmenter
|
||||
* Copyright (c) 2014 Martin Storsjo
|
||||
* Copyright (c) 2018 Akamai Technologies, Inc.
|
||||
*
|
||||
* This file is part of FFmpeg.
|
||||
*
|
||||
@ -309,6 +310,9 @@ static void dash_free(AVFormatContext *s)
|
||||
av_free(os->segments);
|
||||
}
|
||||
av_freep(&c->streams);
|
||||
|
||||
ff_format_io_close(s, &c->mpd_out);
|
||||
ff_format_io_close(s, &c->m3u8_out);
|
||||
}
|
||||
|
||||
static void output_segment_list(OutputStream *os, AVIOContext *out, AVFormatContext *s,
|
||||
|
Loading…
Reference in New Issue
Block a user