give AVInput/OutputFormat structs consistent names

Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård
2006-07-09 23:40:53 +00:00
parent 21227514de
commit d2a067d1d9
72 changed files with 299 additions and 299 deletions

View File

@ -199,7 +199,7 @@ static int mm_read_close(AVFormatContext *s)
return 0;
}
static AVInputFormat mm_iformat = {
static AVInputFormat mm_demuxer = {
"mm",
"American Laser Games MM format",
sizeof(MmDemuxContext),
@ -211,6 +211,6 @@ static AVInputFormat mm_iformat = {
int mm_init(void)
{
av_register_input_format(&mm_iformat);
av_register_input_format(&mm_demuxer);
return 0;
}