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

@@ -522,7 +522,7 @@ static int v4l2_read_close(AVFormatContext *s1)
return 0;
}
static AVInputFormat v4l2_format = {
static AVInputFormat v4l2_demuxer = {
"video4linux2",
"video grab",
sizeof(struct video_data),
@@ -535,6 +535,6 @@ static AVInputFormat v4l2_format = {
int v4l2_init(void)
{
av_register_input_format(&v4l2_format);
av_register_input_format(&v4l2_demuxer);
return 0;
}