diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-11 09:07:32 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-11 09:07:32 +0000 |
commit | c18a2692d2d1916ea9f2bb56803c4069b0213bc7 (patch) | |
tree | ee5c6bb97d179ee8904296b7b5ea703646ae5689 /libav/ffm.c | |
parent | df1c67addae53ba2d5ab1bc66700da78506c993e (diff) | |
download | ffmpeg-c18a2692d2d1916ea9f2bb56803c4069b0213bc7.tar.gz |
* cleanup statics & const
Originally committed as revision 1186 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/ffm.c')
-rw-r--r-- | libav/ffm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libav/ffm.c b/libav/ffm.c index dba0886543..c21599c69f 100644 --- a/libav/ffm.c +++ b/libav/ffm.c @@ -651,7 +651,7 @@ static int ffm_probe(AVProbeData *p) return 0; } -AVInputFormat ffm_iformat = { +static AVInputFormat ffm_iformat = { "ffm", "ffm format", sizeof(FFMContext), @@ -662,7 +662,7 @@ AVInputFormat ffm_iformat = { ffm_seek, }; -AVOutputFormat ffm_oformat = { +static AVOutputFormat ffm_oformat = { "ffm", "ffm format", "", |