[Ffmpeg-cvslog] r6901 - trunk/libavcodec/gifdec.c
bcoudurier
subversion
Sun Nov 5 16:10:33 CET 2006
Author: bcoudurier
Date: Sun Nov 5 16:10:33 2006
New Revision: 6901
Modified:
trunk/libavcodec/gifdec.c
Log:
remove useless line variable
Modified: trunk/libavcodec/gifdec.c
==============================================================================
--- trunk/libavcodec/gifdec.c (original)
+++ trunk/libavcodec/gifdec.c Sun Nov 5 16:10:33 2006
@@ -62,7 +62,7 @@
{
int left, top, width, height, bits_per_pixel, code_size, flags;
int is_interleaved, has_local_palette, y, pass, y1, linesize, n, i;
- uint8_t *ptr, *line, *spal, *palette, *ptr1;
+ uint8_t *ptr, *spal, *palette, *ptr1;
left = bytestream_get_le16(&s->bytestream);
top = bytestream_get_le16(&s->bytestream);
@@ -102,7 +102,6 @@
/* handle transparency */
if (s->transparent_color_index >= 0)
s->image_palette[s->transparent_color_index] = 0;
- line = NULL;
/* now get the image data */
code_size = bytestream_get_byte(&s->bytestream);
@@ -151,8 +150,6 @@
ptr += linesize;
}
}
- av_free(line);
-
/* read the garbage data until end marker is found */
ff_lzw_decode_tail(s->lzw);
s->bytestream = ff_lzw_cur_ptr(s->lzw);
More information about the ffmpeg-cvslog
mailing list