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/rm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavformat/rm.c') diff --git a/libavformat/rm.c b/libavformat/rm.c index 444fc698f7..e7cc4aa45a 100644 --- a/libavformat/rm.c +++ b/libavformat/rm.c @@ -1122,7 +1122,7 @@ static int64_t rm_read_dts(AVFormatContext *s, int stream_index, return dts; } -static AVInputFormat rm_iformat = { +static AVInputFormat rm_demuxer = { "rm", "rm format", sizeof(RMContext), @@ -1135,7 +1135,7 @@ static AVInputFormat rm_iformat = { }; #ifdef CONFIG_MUXERS -static AVOutputFormat rm_oformat = { +static AVOutputFormat rm_muxer = { "rm", "rm format", "application/vnd.rn-realmedia", @@ -1151,9 +1151,9 @@ static AVOutputFormat rm_oformat = { int rm_init(void) { - av_register_input_format(&rm_iformat); + av_register_input_format(&rm_demuxer); #ifdef CONFIG_MUXERS - av_register_output_format(&rm_oformat); + av_register_output_format(&rm_muxer); #endif //CONFIG_MUXERS return 0; } -- cgit v1.2.3