From 796b20fa1cef691f2a74215b5a33b722c307d21f Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 14 Aug 2013 22:51:06 +0200 Subject: avcodec/gif: use the whole allocated buffer Fixes some gif encoding failures Signed-off-by: Michael Niedermayer --- libavcodec/gif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/gif.c') diff --git a/libavcodec/gif.c b/libavcodec/gif.c index bfe91caaa4..bd14c137d2 100644 --- a/libavcodec/gif.c +++ b/libavcodec/gif.c @@ -168,7 +168,7 @@ static int gif_image_write_image(AVCodecContext *avctx, bytestream_put_byte(bytestream, 0x08); - ff_lzw_encode_init(s->lzw, s->buf, width * height, + ff_lzw_encode_init(s->lzw, s->buf, 2 * width * height, 12, FF_LZW_GIF, put_bits); ptr = buf + y_start*linesize + x_start; -- cgit v1.2.3