提交 b36da2c2 编写于 作者: M Michael Niedermayer

Remove 2 useless += at the end of rgb16to15(), found by CSA.

Originally committed as revision 29189 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
上级 a256445e
......@@ -323,8 +323,6 @@ static inline void RENAME(rgb16to15)(const uint8_t *src, uint8_t *dst, long src_
{
register uint16_t x= *((const uint16_t*)s);
*((uint16_t *)d) = ((x>>1)&0x7FE0) | (x&0x001F);
s+=2;
d+=2;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册