diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-09 23:40:53 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-09 23:40:53 +0000 |
commit | d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch) | |
tree | 859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/dv.c | |
parent | 21227514de650da3de297acce893175230f04beb (diff) | |
download | ffmpeg-d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a.tar.gz |
give AVInput/OutputFormat structs consistent names
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dv.c')
-rw-r--r-- | libavformat/dv.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c index beb94fa0a2..03372114f9 100644 --- a/libavformat/dv.c +++ b/libavformat/dv.c @@ -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; } |