Browse Source

Move ffm_close function up to avoid a forward declaration.

Originally committed as revision 24491 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Reimar Döffinger 15 years ago
parent
commit
e36a39066c
1 changed files with 10 additions and 11 deletions
  1. +10
    -11
      libavformat/ffmdec.c

+ 10
- 11
libavformat/ffmdec.c View File

@@ -252,7 +252,16 @@ static void adjust_write_index(AVFormatContext *s)
}


static int 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;
}


static int ffm_read_header(AVFormatContext *s, AVFormatParameters *ap)
{
@@ -509,16 +518,6 @@ static int ffm_probe(AVProbeData *p)
return 0;
}

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 = {
"ffm",
NULL_IF_CONFIG_SMALL("FFM (FFserver live feed) format"),


Loading…
Cancel
Save