Mercurial > libavformat.hg
diff aiff.c @ 1167:d89d7ef290da libavformat
give AVInput/OutputFormat structs consistent names
| author | mru |
|---|---|
| date | Sun, 09 Jul 2006 23:40:53 +0000 |
| parents | e3a585883bbd |
| children | d18cc9a1fd02 |
line wrap: on
line diff
--- a/aiff.c Sun Jul 09 10:33:49 2006 +0000 +++ b/aiff.c Sun Jul 09 23:40:53 2006 +0000 @@ -429,7 +429,7 @@ } -static AVInputFormat aiff_iformat = { +static AVInputFormat aiff_demuxer = { "aiff", "Audio IFF", 0, @@ -441,7 +441,7 @@ }; #ifdef CONFIG_MUXERS -static AVOutputFormat aiff_oformat = { +static AVOutputFormat aiff_muxer = { "aiff", "Audio IFF", "audio/aiff", @@ -457,9 +457,9 @@ int ff_aiff_init(void) { - av_register_input_format(&aiff_iformat); + av_register_input_format(&aiff_demuxer); #ifdef CONFIG_MUXERS - av_register_output_format(&aiff_oformat); + av_register_output_format(&aiff_muxer); #endif //CONFIG_MUXERS return 0; }
