comparison gif.c @ 46:890e9121a54d libavformat

added animated GIF decoder (pts and various disposal handling are missing)
author bellard
date Sun, 02 Feb 2003 19:16:51 +0000
parents 05318cf2e886
children 7c5d91c4ca14
comparison
equal deleted inserted replaced
45:2036f790ece3 46:890e9121a54d
365 CODEC_ID_RAWVIDEO, 365 CODEC_ID_RAWVIDEO,
366 gif_write_header, 366 gif_write_header,
367 gif_write_packet, 367 gif_write_packet,
368 gif_write_trailer, 368 gif_write_trailer,
369 }; 369 };
370 extern AVInputFormat gif_iformat;
370 371
371 int gif_init(void) 372 int gif_init(void)
372 { 373 {
373 av_register_output_format(&gif_oformat); 374 av_register_output_format(&gif_oformat);
375 av_register_input_format(&gif_iformat);
374 return 0; 376 return 0;
375 } 377 }