diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-10 21:14:37 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-10 21:14:37 +0000 |
commit | ff70e60176056daf646109b8e42654a3036fa02b (patch) | |
tree | 42e32d1e4bff334964cf93766ff2da6ee9a8f1d3 /libavformat/gif.c | |
parent | 4cac0d5589ab1a076e977425925015f2c8e591a8 (diff) | |
download | ffmpeg-ff70e60176056daf646109b8e42654a3036fa02b.tar.gz |
allow individual selection of muxers and demuxers
Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/gif.c')
-rw-r--r-- | libavformat/gif.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/libavformat/gif.c b/libavformat/gif.c index f0e47b334d..bef98d3ac4 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_muxer = { +AVOutputFormat gif_muxer = { "gif", "GIF Animation", "image/gif", @@ -426,12 +426,3 @@ static AVOutputFormat gif_muxer = { gif_write_packet, gif_write_trailer, }; - -extern AVInputFormat gif_demuxer; - -int gif_init(void) -{ - av_register_output_format(&gif_muxer); - av_register_input_format(&gif_demuxer); - return 0; -} |