mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ffm_close(AVFormatContext *s)
|
static int ffm_close(AVFormatContext *s)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < s->nb_streams; i++)
|
for (i = 0; i < s->nb_streams; i++)
|
||||||
av_freep(&s->streams[i]->codec->rc_eq);
|
av_freep(&s->streams[i]->codec->rc_eq);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
AVInputFormat ffm_demuxer = {
|
AVInputFormat ffm_demuxer = {
|
||||||
|
Loading…
Reference in New Issue
Block a user