Browse Source

move private context declaration at the top

Originally committed as revision 20707 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Baptiste Coudurier 16 years ago
parent
commit
e4e8632aaf
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      libavcodec/gif.c

+ 4
- 4
libavcodec/gif.c View File

@@ -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 @@ static int gif_image_write_image(uint8_t **bytestream,
return 0;
}

typedef struct {
AVFrame picture;
} GIFContext;

static av_cold int gif_encode_init(AVCodecContext *avctx)
{
GIFContext *s = avctx->priv_data;


Loading…
Cancel
Save