summaryrefslogtreecommitdiff
path: root/libavformat/ogg2.c
diff options
context:
space:
mode:
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;
}