Mercurial > mplayer.hg
changeset 20946:bb4c952bc52c
forgotten 2 converters (yeah svn up, svn di svn ci isnt enough i should actually look at the code after svn up not just the diff ...)
author | michael |
---|---|
date | Thu, 16 Nov 2006 14:49:04 +0000 |
parents | 92150c16e737 |
children | 6baefa24946f |
files | libswscale/swscale_template.c |
diffstat | 1 files changed, 11 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/libswscale/swscale_template.c Thu Nov 16 14:44:00 2006 +0000 +++ b/libswscale/swscale_template.c Thu Nov 16 14:49:04 2006 +0000 @@ -2090,8 +2090,8 @@ static inline void RENAME(bgr16ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) { + int i; assert(src1==src2); - int i; for(i=0; i<width; i++) { int d0= ((uint32_t*)src1)[i]; @@ -2224,13 +2224,13 @@ static inline void RENAME(rgb16ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) { int i; + assert(src1 == src2); for(i=0; i<width; i++) { int d0= ((uint32_t*)src1)[i]; - int d1= ((uint32_t*)src2)[i]; - int dl= (d0&0x07E0F81F) + (d1&0x07E0F81F); - int dh= ((d0>>5)&0x07C0F83F) + ((d1>>5)&0x07C0F83F); + int dl= (d0&0x07E0F81F); + int dh= ((d0>>5)&0x07C0F83F); int dh2= (dh>>11) + (dh<<21); int d= dh2 + dl; @@ -2238,8 +2238,8 @@ int r= d&0x7F; int b= (d>>11)&0x7F; int g= d>>21; - dstU[i]= ((2*RU*r + GU*g + 2*BU*b)>>(RGB2YUV_SHIFT+2-2)) + 128; - dstV[i]= ((2*RV*r + GV*g + 2*BV*b)>>(RGB2YUV_SHIFT+2-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; } } @@ -2260,13 +2260,13 @@ static inline void RENAME(rgb15ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) { int i; + assert(src1 == src2); for(i=0; i<width; i++) { int d0= ((uint32_t*)src1)[i]; - int d1= ((uint32_t*)src2)[i]; - int dl= (d0&0x03E07C1F) + (d1&0x03E07C1F); - int dh= ((d0>>5)&0x03E0F81F) + ((d1>>5)&0x03E0F81F); + int dl= (d0&0x03E07C1F); + int dh= ((d0>>5)&0x03E0F81F); int dh2= (dh>>11) + (dh<<21); int d= dh2 + dl; @@ -2274,8 +2274,8 @@ int g= d&0x7F; int r= (d>>10)&0x7F; int b= d>>21; - dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+2-3)) + 128; - dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+2-3)) + 128; + dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+1-3)) + 128; + dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+1-3)) + 128; } }