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
+2 -2
View File
@@ -241,7 +241,7 @@ static int gxf_packet(AVFormatContext *s, AVPacket *pkt) {
return AVERROR_IO;
}
static AVInputFormat gxf_iformat = {
static AVInputFormat gxf_demuxer = {
"gxf",
"GXF format",
0,
@@ -253,7 +253,7 @@ static AVInputFormat gxf_iformat = {
};
int gxf_init(void) {
av_register_input_format(&gxf_iformat);
av_register_input_format(&gxf_demuxer);
return 0;
}