提交 470ba6f2 编写于 作者: C Colin Leroy 提交者: Michael Niedermayer

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
上级 7801d21d
......@@ -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
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册