Commit 8c2d448a authored by ivo's avatar ivo

remove the need of one extra shift in rgb16ToUV


git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@23281 b3059339-0415-0410-9bf9-f77b7e298cf2
parent 6bb0ed04
...@@ -2229,13 +2229,10 @@ static inline void RENAME(rgb16ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1 ...@@ -2229,13 +2229,10 @@ static inline void RENAME(rgb16ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1
int d0= ((uint32_t*)src1)[i]; int d0= ((uint32_t*)src1)[i];
int dl= (d0&0x07E0F81F); int dl= (d0&0x07E0F81F);
int dh= ((d0>>5)&0x07C0F83F); int d= dl + (((d0>>16) + (d0<<16))&0x07E0F81F);
int dh2= (dh>>11) + (dh<<21); int r= d&0x3F;
int d= dh2 + dl; int b= (d>>11)&0x3F;
int r= d&0x7F;
int b= (d>>11)&0x7F;
int g= d>>21; int g= d>>21;
dstU[i]= ((2*RU*r + GU*g + 2*BU*b)>>(RGB2YUV_SHIFT+1-2)) + 128; dstU[i]= ((2*RU*r + GU*g + 2*BU*b)>>(RGB2YUV_SHIFT+1-2)) + 128;
dstV[i]= ((2*RV*r + GV*g + 2*BV*b)>>(RGB2YUV_SHIFT+1-2)) + 128; dstV[i]= ((2*RV*r + GV*g + 2*BV*b)>>(RGB2YUV_SHIFT+1-2)) + 128;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment