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/swf.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/swf.c')
-rw-r--r-- | libavformat/swf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/swf.c b/libavformat/swf.c index 4d9299f745..14a1dc3907 100644 --- a/libavformat/swf.c +++ b/libavformat/swf.c @@ -899,7 +899,7 @@ static int swf_read_close(AVFormatContext *s) return 0; } -static AVInputFormat swf_iformat = { +static AVInputFormat swf_demuxer = { "swf", "Flash format", sizeof(SWFContext), @@ -910,7 +910,7 @@ static AVInputFormat swf_iformat = { }; #ifdef CONFIG_MUXERS -static AVOutputFormat swf_oformat = { +static AVOutputFormat swf_muxer = { "swf", "Flash format", "application/x-shockwave-flash", @@ -926,9 +926,9 @@ static AVOutputFormat swf_oformat = { int swf_init(void) { - av_register_input_format(&swf_iformat); + av_register_input_format(&swf_demuxer); #ifdef CONFIG_MUXERS - av_register_output_format(&swf_oformat); + av_register_output_format(&swf_muxer); #endif //CONFIG_MUXERS return 0; } |