# HG changeset patch # User bcoudurier # Date 1259787672 0 # Node ID 099e9b33c1b95a74f47eca772901d325954c0416 # Parent 328e2a3171d206cff556282d17a670a3cd932141 move private context declaration at the top diff -r 328e2a3171d2 -r 099e9b33c1b9 gif.c --- a/gif.c Wed Dec 02 20:07:23 2009 +0000 +++ b/gif.c Wed Dec 02 21:01:12 2009 +0000 @@ -53,6 +53,10 @@ /* bitstream minipacket size */ #define GIF_CHUNKS 100 +typedef struct { + AVFrame picture; +} GIFContext; + /* GIF header */ static int gif_image_write_header(uint8_t **bytestream, int width, int height, @@ -138,10 +142,6 @@ return 0; } -typedef struct { - AVFrame picture; -} GIFContext; - static av_cold int gif_encode_init(AVCodecContext *avctx) { GIFContext *s = avctx->priv_data;