diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-09 23:40:53 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-09 23:40:53 +0000 |
commit | d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch) | |
tree | 859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/ogg.c | |
parent | 21227514de650da3de297acce893175230f04beb (diff) | |
download | ffmpeg-d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a.tar.gz |
give AVInput/OutputFormat structs consistent names
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/ogg.c')
-rw-r--r-- | libavformat/ogg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/ogg.c b/libavformat/ogg.c index 37158981ae..f3be7e908b 100644 --- a/libavformat/ogg.c +++ b/libavformat/ogg.c @@ -137,7 +137,7 @@ static int ogg_write_trailer(AVFormatContext *avfcontext) { } -static AVOutputFormat ogg_oformat = { +static AVOutputFormat ogg_muxer = { "ogg", "Ogg Vorbis", "audio/x-vorbis", @@ -254,7 +254,7 @@ static int ogg_read_close(AVFormatContext *avfcontext) { } -static AVInputFormat ogg_iformat = { +static AVInputFormat ogg_demuxer = { "ogg", "Ogg Vorbis", sizeof(OggContext), @@ -268,8 +268,8 @@ static AVInputFormat ogg_iformat = { int libogg_init(void) { #ifdef 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 ; } |