Browse Source

fixing RGB32->RGB16 on big endian patch by (Colin Leroy <colin at colino dot net>)

Originally committed as revision 7892 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
tags/v0.5
Colin Leroy Michael Niedermayer 22 years ago
parent
commit
470ba6f28a
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      postproc/rgb2rgb_template.c

+ 9
- 0
postproc/rgb2rgb_template.c View File

@@ -364,11 +364,20 @@ static inline void RENAME(rgb32to16)(const uint8_t *src, uint8_t *dst, unsigned
#endif
while(s < end)
{
#ifndef WORDS_BIGENDIAN
const int b= *s++;
const int g= *s++;
const int r= *s++;
#else
const int a= *s++; /*skip*/
const int r= *s++;
const int g= *s++;
const int b= *s++;
#endif
*d++ = (b>>3) | ((g&0xFC)<<3) | ((r&0xF8)<<8);
#ifndef WORDS_BIGENDIAN
s++;
#endif
}
}



Loading…
Cancel
Save