[Ffmpeg-cvslog] r6768 - trunk/libavcodec/gifdec.c

bcoudurier subversion
Sun Oct 22 19:25:16 CEST 2006


Author: bcoudurier
Date: Sun Oct 22 19:25:16 2006
New Revision: 6768

Modified:
   trunk/libavcodec/gifdec.c

Log:
indention

Modified: trunk/libavcodec/gifdec.c
==============================================================================
--- trunk/libavcodec/gifdec.c	(original)
+++ trunk/libavcodec/gifdec.c	Sun Oct 22 19:25:16 2006
@@ -251,19 +251,19 @@
         return -EINVAL;
 
     /* build the palette */
-        n = (1 << bits_per_pixel);
-        spal = palette;
-        for(i = 0; i < n; i++) {
-            s->image_palette[i] = (0xff << 24) |
-                (spal[0] << 16) | (spal[1] << 8) | (spal[2]);
-            spal += 3;
-        }
-        for(; i < 256; i++)
-            s->image_palette[i] = (0xff << 24);
-        /* handle transparency */
-        if (s->transparent_color_index >= 0)
-            s->image_palette[s->transparent_color_index] = 0;
-        line = NULL;
+    n = (1 << bits_per_pixel);
+    spal = palette;
+    for(i = 0; i < n; i++) {
+        s->image_palette[i] = (0xff << 24) |
+            (spal[0] << 16) | (spal[1] << 8) | (spal[2]);
+        spal += 3;
+    }
+    for(; i < 256; i++)
+        s->image_palette[i] = (0xff << 24);
+    /* handle transparency */
+    if (s->transparent_color_index >= 0)
+        s->image_palette[s->transparent_color_index] = 0;
+    line = NULL;
 
     /* now get the image data */
     code_size = bytestream_get_byte(&s->bytestream);
@@ -276,7 +276,7 @@
     pass = 0;
     y1 = 0;
     for (y = 0; y < height; y++) {
-            GLZWDecode(s, ptr, width);
+        GLZWDecode(s, ptr, width);
         if (is_interleaved) {
             switch(pass) {
             default:




More information about the ffmpeg-cvslog mailing list