Commit 2dc22a64 authored by Vitor Sessak's avatar Vitor Sessak

Fix memory leak in FFM demuxer

Originally committed as revision 22431 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9a894c48
...@@ -512,6 +512,14 @@ static int ffm_probe(AVProbeData *p) ...@@ -512,6 +512,14 @@ static int ffm_probe(AVProbeData *p)
return 0; return 0;
} }
static void ffm_close(AVFormatContext *s)
{
int i;
for (i = 0; i < s->nb_streams; i++)
av_freep(&s->streams[i]->codec->rc_eq);
}
AVInputFormat ffm_demuxer = { AVInputFormat ffm_demuxer = {
"ffm", "ffm",
NULL_IF_CONFIG_SMALL("FFM (FFserver live feed) format"), NULL_IF_CONFIG_SMALL("FFM (FFserver live feed) format"),
...@@ -519,6 +527,6 @@ AVInputFormat ffm_demuxer = { ...@@ -519,6 +527,6 @@ AVInputFormat ffm_demuxer = {
ffm_probe, ffm_probe,
ffm_read_header, ffm_read_header,
ffm_read_packet, ffm_read_packet,
NULL, ffm_close,
ffm_seek, ffm_seek,
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment