diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-12-05 23:12:03 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-12-05 23:12:03 +0000 |
commit | a8380f44cfa69c204856568f5d24851fbdb1d884 (patch) | |
tree | 8d926b7bbbceb88758aaf2843052e862c6783ced /libavformat/gif.c | |
parent | 2be9f03abb2be775f4882fb87fb735bd7b5a3930 (diff) | |
download | ffmpeg-a8380f44cfa69c204856568f5d24851fbdb1d884.tar.gz |
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.c | 1 |
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) { |