[Ffmpeg-cvslog] r8601 - trunk/libavcodec/rle.c

michael subversion
Tue Apr 3 04:18:00 CEST 2007


Author: michael
Date: Tue Apr  3 04:18:00 2007
New Revision: 8601

Modified:
   trunk/libavcodec/rle.c

Log:
cosmetic


Modified: trunk/libavcodec/rle.c
==============================================================================
--- trunk/libavcodec/rle.c	(original)
+++ trunk/libavcodec/rle.c	Tue Apr  3 04:18:00 2007
@@ -58,9 +58,7 @@ static int count_pixels(const uint8_t *s
 int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *ptr , int bpp, int w, int8_t add, uint8_t xor)
 {
     int count, x;
-    uint8_t *out;
-
-    out = outbuf;
+    uint8_t *out = outbuf;
 
     for(x = 0; x < w; x += count) {
         /* see if we can encode the next set of pixels with RLE */




More information about the ffmpeg-cvslog mailing list