summaryrefslogtreecommitdiff
path: root/libavformat/gif.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-12-05 23:12:03 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-12-05 23:12:03 +0000
commita8380f44cfa69c204856568f5d24851fbdb1d884 (patch)
tree8d926b7bbbceb88758aaf2843052e862c6783ced /libavformat/gif.c
parent2be9f03abb2be775f4882fb87fb735bd7b5a3930 (diff)
removing unused var & converting 64->32bit
Originally committed as revision 2567 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/gif.c')
-rw-r--r--libavformat/gif.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/gif.c b/libavformat/gif.c
index e64bd51b15..7867913da2 100644
--- a/libavformat/gif.c
+++ b/libavformat/gif.c
@@ -274,7 +274,6 @@ static int gif_image_write_image(ByteIOContext *pb,
if(pbBufPtr(&p) - p.buf > 0) {
put_byte(pb, pbBufPtr(&p) - p.buf); /* byte count of the packet */
put_buffer(pb, p.buf, pbBufPtr(&p) - p.buf); /* the actual buffer */
- p.data_out_size += pbBufPtr(&p) - p.buf;
p.buf_ptr = p.buf; /* dequeue the bytes off the bitstream */
}
if(left<=GIF_CHUNKS) {