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

Originally committed as revision 1533 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Fabrice Bellard
2003-02-02 19:16:51 +00:00
parent a26058a50d
commit 12b64a2252
2 changed files with 468 additions and 0 deletions

View File

@@ -367,9 +367,11 @@ static AVOutputFormat gif_oformat = {
gif_write_packet,
gif_write_trailer,
};
extern AVInputFormat gif_iformat;
int gif_init(void)
{
av_register_output_format(&gif_oformat);
av_register_input_format(&gif_iformat);
return 0;
}