[MPlayer-cvslog] r31788 - trunk/spudec.c

reimar subversion at mplayerhq.hu
Sat Jul 24 22:48:33 CEST 2010


Author: reimar
Date: Sat Jul 24 22:48:32 2010
New Revision: 31788

Log:
Simplify creation of color/alpha map.

Modified:
   trunk/spudec.c

Modified: trunk/spudec.c
==============================================================================
--- trunk/spudec.c	Sat Jul 24 19:18:46 2010	(r31787)
+++ trunk/spudec.c	Sat Jul 24 22:48:32 2010	(r31788)
@@ -173,15 +173,6 @@ static inline unsigned char get_nibble(p
   return nib;
 }
 
-static inline int mkalpha(int i)
-{
-  /* In mplayer's alpha planes, 0 is transparent, then 1 is nearly
-     opaque upto 255 which is fully opaque */
-  // extend 4 -> 8 bit
-  i |= i << 4;
-  return (uint8_t)(-i);
-}
-
 /* Cut the sub to visible part */
 static inline void spudec_cut_image(spudec_handle_t *this)
 {
@@ -262,21 +253,17 @@ static void spudec_process_data(spudec_h
   this->width = packet->width;
   this->stride = packet->stride;
   for (i = 0; i < 4; ++i) {
-    alpha[i] = mkalpha(packet->alpha[i]);
+    alpha[i] = packet->alpha[i];
+    // extend 4 -> 8 bit
+    alpha[i] |= alpha[i] << 4;
     if (this->custom && (this->cuspal[i] >> 31) != 0)
       alpha[i] = 0;
-    if (alpha[i] == 0)
-      cmap[i] = 0;
-    else if (this->custom){
-      cmap[i] = ((this->cuspal[i] >> 16) & 0xff);
-      if (cmap[i] + alpha[i] > 255)
-	cmap[i] = 256 - alpha[i];
-    }
-    else {
-      cmap[i] = ((this->global_palette[packet->palette[i]] >> 16) & 0xff);
-      if (cmap[i] + alpha[i] > 255)
-	cmap[i] = 256 - alpha[i];
-    }
+    cmap[i] = this->custom ? this->cuspal[i] :
+              this->global_palette[packet->palette[i]];
+    cmap[i] = (cmap[i] >> 16) & 0xff;
+    // convert to MPlayer format
+    cmap[i] = FFMIN(cmap[i], alpha[i]);
+    alpha[i] = -alpha[i];
   }
 
   if (!spudec_alloc_image(this, this->stride, this->height))


More information about the MPlayer-cvslog mailing list