diff gif.c @ 10627:3c7adb462b65 libavcodec

remove useless params
author bcoudurier
date Wed, 02 Dec 2009 21:04:23 +0000
parents 099e9b33c1b9
children 3d43d9bcf903
line wrap: on
line diff
--- a/gif.c	Wed Dec 02 21:01:12 2009 +0000
+++ b/gif.c	Wed Dec 02 21:04:23 2009 +0000
@@ -84,7 +84,7 @@
 }
 
 static int gif_image_write_image(uint8_t **bytestream,
-                                 int x1, int y1, int width, int height,
+                                 int width, int height,
                                  const uint8_t *buf, int linesize, int pix_fmt)
 {
     PutBitContext p;
@@ -94,8 +94,8 @@
     /* image block */
 
     bytestream_put_byte(bytestream, 0x2c);
-    bytestream_put_le16(bytestream, x1);
-    bytestream_put_le16(bytestream, y1);
+    bytestream_put_le16(bytestream, 0);
+    bytestream_put_le16(bytestream, 0);
     bytestream_put_le16(bytestream, width);
     bytestream_put_le16(bytestream, height);
     bytestream_put_byte(bytestream, 0x00); /* flags */
@@ -162,7 +162,7 @@
     p->pict_type = FF_I_TYPE;
     p->key_frame = 1;
     gif_image_write_header(&outbuf_ptr, avctx->width, avctx->height, (uint32_t *)pict->data[1]);
-    gif_image_write_image(&outbuf_ptr, 0, 0, avctx->width, avctx->height, pict->data[0], pict->linesize[0], PIX_FMT_PAL8);
+    gif_image_write_image(&outbuf_ptr, avctx->width, avctx->height, pict->data[0], pict->linesize[0], PIX_FMT_PAL8);
     return outbuf_ptr - outbuf;
 }