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/flic.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/flic.c')
-rw-r--r-- | libavformat/flic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/flic.c b/libavformat/flic.c index 82ac1df89b..d9fa6c4f96 100644 --- a/libavformat/flic.c +++ b/libavformat/flic.c @@ -208,7 +208,7 @@ static int flic_read_close(AVFormatContext *s) return 0; } -static AVInputFormat flic_iformat = { +static AVInputFormat flic_demuxer = { "flic", "FLI/FLC/FLX animation format", sizeof(FlicDemuxContext), @@ -220,6 +220,6 @@ static AVInputFormat flic_iformat = { int flic_init(void) { - av_register_input_format(&flic_iformat); + av_register_input_format(&flic_demuxer); return 0; } |