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

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29189 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2009-04-18 22:27:36 +00:00
parent 9be7c4ad97
commit abfb150159
1 changed files with 0 additions and 2 deletions

View File

@ -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;
}
}