Mercurial > libavformat.hg
diff dv.c @ 1167:d89d7ef290da libavformat
give AVInput/OutputFormat structs consistent names
| author | mru |
|---|---|
| date | Sun, 09 Jul 2006 23:40:53 +0000 |
| parents | 6992dd78ff68 |
| children | d18cc9a1fd02 |
line wrap: on
line diff
--- a/dv.c Sun Jul 09 10:33:49 2006 +0000 +++ b/dv.c Sun Jul 09 23:40:53 2006 +0000 @@ -1000,7 +1000,7 @@ } #endif /* CONFIG_MUXERS */ -static AVInputFormat dv_iformat = { +static AVInputFormat dv_demuxer = { "dv", "DV video format", sizeof(RawDVContext), @@ -1013,7 +1013,7 @@ }; #ifdef CONFIG_MUXERS -static AVOutputFormat dv_oformat = { +static AVOutputFormat dv_muxer = { "dv", "DV video format", NULL, @@ -1029,9 +1029,9 @@ 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; }
