From d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sun, 9 Jul 2006 23:40:53 +0000 Subject: give AVInput/OutputFormat structs consistent names Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mmf.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavformat/mmf.c') diff --git a/libavformat/mmf.c b/libavformat/mmf.c index a8220c5ea5..d43667b23a 100644 --- a/libavformat/mmf.c +++ b/libavformat/mmf.c @@ -302,7 +302,7 @@ static int mmf_read_seek(AVFormatContext *s, } -static AVInputFormat mmf_iformat = { +static AVInputFormat mmf_demuxer = { "mmf", "mmf format", sizeof(MMFContext), @@ -314,7 +314,7 @@ static AVInputFormat mmf_iformat = { }; #ifdef CONFIG_MUXERS -static AVOutputFormat mmf_oformat = { +static AVOutputFormat mmf_muxer = { "mmf", "mmf format", "application/vnd.smaf", @@ -330,9 +330,9 @@ static AVOutputFormat mmf_oformat = { int ff_mmf_init(void) { - av_register_input_format(&mmf_iformat); + av_register_input_format(&mmf_demuxer); #ifdef CONFIG_MUXERS - av_register_output_format(&mmf_oformat); + av_register_output_format(&mmf_muxer); #endif //CONFIG_MUXERS return 0; } -- cgit v1.2.3