# HG changeset patch # User michael # Date 1233925479 0 # Node ID 21a41fd79033f478fffac7bed87348ef8ba636fc # Parent eaa08ce79f9abc8674fa2da92d2d7ba93e9645c0 Fix list of input pix_fmts supported by GIF. This makes it work with swscale. It also allows encoding GIF with a 4-bit palette and with a graycale one as a side effect. diff -r eaa08ce79f9a -r 21a41fd79033 gif.c --- a/gif.c Fri Feb 06 12:59:50 2009 +0000 +++ b/gif.c Fri Feb 06 13:04:39 2009 +0000 @@ -283,6 +283,6 @@ gif_encode_init, gif_encode_frame, NULL, //encode_end, - .pix_fmts= (enum PixelFormat[]){PIX_FMT_PAL8, PIX_FMT_NONE}, + .pix_fmts= (enum PixelFormat[]){PIX_FMT_RGB8, PIX_FMT_BGR8, PIX_FMT_RGB4_BYTE, PIX_FMT_BGR4_BYTE, PIX_FMT_GRAY8, PIX_FMT_PAL8, PIX_FMT_NONE}, .long_name= NULL_IF_CONFIG_SMALL("GIF (Graphics Interchange Format)"), };