Mercurial > libavformat.hg
diff ffm.c @ 1167:d89d7ef290da libavformat
give AVInput/OutputFormat structs consistent names
| author | mru |
|---|---|
| date | Sun, 09 Jul 2006 23:40:53 +0000 |
| parents | dbc0145bbf11 |
| children | d18cc9a1fd02 |
line wrap: on
line diff
--- a/ffm.c Sun Jul 09 10:33:49 2006 +0000 +++ b/ffm.c Sun Jul 09 23:40:53 2006 +0000 @@ -761,7 +761,7 @@ return 0; } -static AVInputFormat ffm_iformat = { +static AVInputFormat ffm_demuxer = { "ffm", "ffm format", sizeof(FFMContext), @@ -773,7 +773,7 @@ }; #ifdef CONFIG_MUXERS -static AVOutputFormat ffm_oformat = { +static AVOutputFormat ffm_muxer = { "ffm", "ffm format", "", @@ -790,9 +790,9 @@ int ffm_init(void) { - av_register_input_format(&ffm_iformat); + av_register_input_format(&ffm_demuxer); #ifdef CONFIG_MUXERS - av_register_output_format(&ffm_oformat); + av_register_output_format(&ffm_muxer); #endif //CONFIG_MUXERS return 0; }
