# HG changeset patch # User reimar # Date 1280004512 0 # Node ID 92dd02d8ef2cf4e01ae7847e77f36b219e4665f1 # Parent f9eee489ab45ba1bac5eb9e48fafb7aed912e000 Simplify creation of color/alpha map. diff -r f9eee489ab45 -r 92dd02d8ef2c spudec.c --- a/spudec.c Sat Jul 24 17:18:46 2010 +0000 +++ b/spudec.c Sat Jul 24 20:48:32 2010 +0000 @@ -173,15 +173,6 @@ 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 @@ 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))