diff spudec.c @ 30993:d3143f6ec4b3

typo fix found by ubitux
author compn
date Tue, 13 Apr 2010 01:26:20 +0000
parents d218228dc74d
children f036c0d995d5
line wrap: on
line diff
--- a/spudec.c	Mon Apr 12 21:04:17 2010 +0000
+++ b/spudec.c	Tue Apr 13 01:26:20 2010 +0000
@@ -174,7 +174,7 @@
 static inline int mkalpha(int i)
 {
   /* In mplayer's alpha planes, 0 is transparent, then 1 is nearly
-     opaque upto 255 which is transparent */
+     opaque upto 255 which is fully opaque */
   // extend 4 -> 8 bit
   i |= i << 4;
   return (uint8_t)(-i);