1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-02 17:12:49 +02:00

remove unused variables

Originally committed as revision 6764 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2006-10-22 15:15:15 +00:00
parent 1e22f00d79
commit a7fb3a9600

View File

@ -224,8 +224,8 @@ static int GLZWDecode(GifState * s, uint8_t * buf, int len)
static int gif_read_image(GifState *s)
{
int left, top, width, height, bits_per_pixel, code_size, flags;
int is_interleaved, has_local_palette, y, x, pass, y1, linesize, n, i;
uint8_t *ptr, *line, *d, *spal, *palette, *sptr, *ptr1;
int is_interleaved, has_local_palette, y, pass, y1, linesize, n, i;
uint8_t *ptr, *line, *spal, *palette, *ptr1;
left = bytestream_get_le16(&s->bytestream);
top = bytestream_get_le16(&s->bytestream);
@ -369,7 +369,7 @@ static int gif_read_extension(GifState *s)
static int gif_read_header1(GifState *s)
{
uint8_t sig[6];
int ret, v, n;
int v, n;
int has_global_palette;
/* read gif signature */