From: Nick Kurshev Date: Mon, 5 Nov 2001 17:56:11 +0000 (+0000) Subject: Fixed rgb32(24)to15 stuff X-Git-Tag: v0.5~18187 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8dd6739c941f4d90347b5ce6fa1f182d21b8df4e;p=platform%2Fupstream%2Flibav.git Fixed rgb32(24)to15 stuff Originally committed as revision 2721 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc --- diff --git a/postproc/rgb2rgb.c b/postproc/rgb2rgb.c index 5779bf5..ddb805b 100644 --- a/postproc/rgb2rgb.c +++ b/postproc/rgb2rgb.c @@ -238,7 +238,7 @@ void rgb32to15(const uint8_t *src, uint8_t *dst, unsigned src_size) const int g= src[i+1]; const int r= src[i+2]; - d[j]= (b>>3) | ((g&0xF8)<<3) | ((r&0xF8)<<7); + d[j]= (b>>3) | ((g&0xF8)<<2) | ((r&0xF8)<<7); } } @@ -266,7 +266,7 @@ void rgb24to15(const uint8_t *src, uint8_t *dst, unsigned src_size) const int g= src[i+1]; const int r= src[i+2]; - d[j]= (b>>3) | ((g&0xF8)<<3) | ((r&0xF8)<<7); + d[j]= (b>>3) | ((g&0xF8)<<2) | ((r&0xF8)<<7); } } diff --git a/postproc/rgb2rgb_template.c b/postproc/rgb2rgb_template.c index 5779bf5..ddb805b 100644 --- a/postproc/rgb2rgb_template.c +++ b/postproc/rgb2rgb_template.c @@ -238,7 +238,7 @@ void rgb32to15(const uint8_t *src, uint8_t *dst, unsigned src_size) const int g= src[i+1]; const int r= src[i+2]; - d[j]= (b>>3) | ((g&0xF8)<<3) | ((r&0xF8)<<7); + d[j]= (b>>3) | ((g&0xF8)<<2) | ((r&0xF8)<<7); } } @@ -266,7 +266,7 @@ void rgb24to15(const uint8_t *src, uint8_t *dst, unsigned src_size) const int g= src[i+1]; const int r= src[i+2]; - d[j]= (b>>3) | ((g&0xF8)<<3) | ((r&0xF8)<<7); + d[j]= (b>>3) | ((g&0xF8)<<2) | ((r&0xF8)<<7); } }