Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-07-10 03:40:53 +0400
committerMåns Rullgård <mans@mansr.com>2006-07-10 03:40:53 +0400
commitd2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch)
tree859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/gif.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/gif.c')
-rw-r--r--libavformat/gif.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/gif.c b/libavformat/gif.c
index c82d174f1a..f0e47b334d 100644
--- a/libavformat/gif.c
+++ b/libavformat/gif.c
@@ -414,7 +414,7 @@ int gif_write(ByteIOContext *pb, AVImageInfo *info)
return 0;
}
-static AVOutputFormat gif_oformat = {
+static AVOutputFormat gif_muxer = {
"gif",
"GIF Animation",
"image/gif",
@@ -427,11 +427,11 @@ static AVOutputFormat gif_oformat = {
gif_write_trailer,
};
-extern AVInputFormat gif_iformat;
+extern AVInputFormat gif_demuxer;
int gif_init(void)
{
- av_register_output_format(&gif_oformat);
- av_register_input_format(&gif_iformat);
+ av_register_output_format(&gif_muxer);
+ av_register_input_format(&gif_demuxer);
return 0;
}