changeset 21893:4a83d090520c

Cosmetics
author reimar
date Sat, 13 Jan 2007 12:39:13 +0000
parents cf67d7115d99
children 449b9fb6f67b
files libmpdemux/demux_gif.c
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/demux_gif.c	Sat Jan 13 12:37:53 2007 +0000
+++ b/libmpdemux/demux_gif.c	Sat Jan 13 12:39:13 2007 +0000
@@ -138,22 +138,22 @@
 
     // copy the palette
     for (y = 0; y < cnt; y++) {
-	priv->palette[(y * 4) + 0] = effective_map->Colors[y].Blue;
-	priv->palette[(y * 4) + 1] = effective_map->Colors[y].Green;
-	priv->palette[(y * 4) + 2] = effective_map->Colors[y].Red;
-	priv->palette[(y * 4) + 3] = 0;
+      priv->palette[(y * 4) + 0] = effective_map->Colors[y].Blue;
+      priv->palette[(y * 4) + 1] = effective_map->Colors[y].Green;
+      priv->palette[(y * 4) + 2] = effective_map->Colors[y].Red;
+      priv->palette[(y * 4) + 3] = 0;
     }
 
     memcpy_pic(dest, buf, w, h, priv->w, gif->Image.Width);
 
-  priv->useref = 1;
-  if (refmode == 1) memcpy(priv->refimg, dp->buffer, priv->w * priv->h);
+    priv->useref = 1;
+    if (refmode == 1) memcpy(priv->refimg, dp->buffer, priv->w * priv->h);
     if (refmode == 2 && priv->useref) {
       dest = priv->refimg + priv->w * t + l;
       memset(buf, gif->SBackGroundColor, len);
       memcpy_pic(dest, buf, w, h, priv->w, gif->Image.Width);
     }
-  if (!refmode) priv->useref = 0;
+    if (!refmode) priv->useref = 0;
   }
 
   free(buf);