Commit a5691e57 authored by bellard's avatar bellard

added animated GIF decoder (pts and various disposal handling are missing)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1533 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c96149a6
...@@ -367,9 +367,11 @@ static AVOutputFormat gif_oformat = { ...@@ -367,9 +367,11 @@ static AVOutputFormat gif_oformat = {
gif_write_packet, gif_write_packet,
gif_write_trailer, gif_write_trailer,
}; };
extern AVInputFormat gif_iformat;
int gif_init(void) int gif_init(void)
{ {
av_register_output_format(&gif_oformat); av_register_output_format(&gif_oformat);
av_register_input_format(&gif_iformat);
return 0; return 0;
} }
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment