summaryrefslogtreecommitdiffstats
path: root/spudec.c
diff options
context:
space:
mode:
authorcompn <compn@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-04-13 01:26:20 +0000
committercompn <compn@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-04-13 01:26:20 +0000
commit8a70b9ad85eb4e8942dc6f70a4450b9bb24d98b2 (patch)
treef643236a3f20963011e8dd9500006b1c6f6ea5f7 /spudec.c
parent026fb91615e5528f1d23f1479b0b5fc4f12d04b7 (diff)
downloadmpv-8a70b9ad85eb4e8942dc6f70a4450b9bb24d98b2.tar.bz2
mpv-8a70b9ad85eb4e8942dc6f70a4450b9bb24d98b2.tar.xz
typo fix found by ubitux
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31035 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'spudec.c')
-rw-r--r--spudec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/spudec.c b/spudec.c
index a79d708e38..97be17aff4 100644
--- a/spudec.c
+++ b/spudec.c
@@ -174,7 +174,7 @@ static inline unsigned char get_nibble(packet_t *packet)
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);