summaryrefslogtreecommitdiff
path: root/libavformat/ogg2.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/ogg2.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/ogg2.c')
-rw-r--r--libavformat/ogg2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/ogg2.c b/libavformat/ogg2.c
index 1a0eb38821..1d49e21116 100644
--- a/libavformat/ogg2.c
+++ b/libavformat/ogg2.c
@@ -65,7 +65,7 @@ ogg_write_trailer (AVFormatContext * avfcontext)
}
-static AVOutputFormat ogg_oformat = {
+static AVOutputFormat ogg_muxer = {
"ogg",
"Ogg Vorbis",
"audio/x-vorbis",
@@ -656,7 +656,7 @@ static int ogg_probe(AVProbeData *p)
return 0;
}
-static AVInputFormat ogg_iformat = {
+static AVInputFormat ogg_demuxer = {
"ogg",
"Ogg",
sizeof (ogg_t),
@@ -673,8 +673,8 @@ int
ogg_init (void)
{
#if 0 // CONFIG_MUXERS
- av_register_output_format (&ogg_oformat);
+ av_register_output_format (&ogg_muxer);
#endif
- av_register_input_format (&ogg_iformat);
+ av_register_input_format (&ogg_demuxer);
return 0;
}