~ubuntu-branches/ubuntu/hardy/ffmpeg/hardy

« back to all changes in this revision

Viewing changes to libavformat/gifdec.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-08-23 14:35:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060823143552-8fxnur5b9gesr03m
Tags: 3:0.cvs20060823-0ubuntu1
* Sync with Debian:
  + Add the epoch again

Show diffs side-by-side

added added

removed removed

Lines of Context:
619
619
    return 0;
620
620
}
621
621
 
622
 
AVInputFormat gif_iformat =
 
622
AVInputFormat gif_demuxer =
623
623
{
624
624
    "gif",
625
625
    "gif format",
636
636
    gif_image_probe,
637
637
    gif_read,
638
638
    (1 << PIX_FMT_PAL8),
 
639
#ifdef CONFIG_GIF_MUXER
639
640
    gif_write,
 
641
#endif
640
642
};