summaryrefslogtreecommitdiff
path: root/libavformat/rm.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-07-09 23:40:53 +0000
committerMåns Rullgård <mans@mansr.com>2006-07-09 23:40:53 +0000
commitd2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch)
tree859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/rm.c
parent21227514de650da3de297acce893175230f04beb (diff)
give AVInput/OutputFormat structs consistent names
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rm.c')
-rw-r--r--libavformat/rm.c8
1 files changed, 4 insertions, 4 deletions
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;
}