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

@@ -1000,7 +1000,7 @@ static int dv_write_trailer(struct AVFormatContext *s)
}
#endif /* CONFIG_MUXERS */
static AVInputFormat dv_iformat = {
static AVInputFormat dv_demuxer = {
"dv",
"DV video format",
sizeof(RawDVContext),
@@ -1013,7 +1013,7 @@ static AVInputFormat dv_iformat = {
};
#ifdef CONFIG_MUXERS
static AVOutputFormat dv_oformat = {
static AVOutputFormat dv_muxer = {
"dv",
"DV video format",
NULL,
@@ -1029,9 +1029,9 @@ static AVOutputFormat dv_oformat = {
int ff_dv_init(void)
{
av_register_input_format(&dv_iformat);
av_register_input_format(&dv_demuxer);
#ifdef CONFIG_MUXERS
av_register_output_format(&dv_oformat);
av_register_output_format(&dv_muxer);
#endif
return 0;
}