mirror of https://git.ffmpeg.org/ffmpeg.git
Fix ffm_close return type.
Originally committed as revision 22432 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2dc22a64b4
commit
114a93c700
|
@ -512,12 +512,14 @@ static int ffm_probe(AVProbeData *p)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void ffm_close(AVFormatContext *s)
|
||||
static int ffm_close(AVFormatContext *s)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < s->nb_streams; i++)
|
||||
av_freep(&s->streams[i]->codec->rc_eq);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
AVInputFormat ffm_demuxer = {
|
||||
|
|
Loading…
Reference in New Issue