# HG changeset patch # User michael # Date 1013128920 0 # Node ID 395b1233b8569e1c12a0cc1740a7be130e193c68 # Parent aec989adea32a0c226a1f7ce48c4151ea840ba11 bgr16 input support diff -r aec989adea32 -r 395b1233b856 postproc/swscale.c --- a/postproc/swscale.c Thu Feb 07 22:10:32 2002 +0000 +++ b/postproc/swscale.c Fri Feb 08 00:42:00 2002 +0000 @@ -17,7 +17,7 @@ */ /* - supported Input formats: YV12, I420, IYUV, YUY2, BGR32, BGR24, RGB32, RGB24, Y8, Y800 + supported Input formats: YV12, I420, IYUV, YUY2, BGR32, BGR24, BGR16, RGB32, RGB24, Y8, Y800 supported output formats: YV12, I420, IYUV, BGR15, BGR16, BGR24, BGR32 (grayscale soon too) BGR15/16 support dithering @@ -87,7 +87,7 @@ #define isPacked(x) ((x)==IMGFMT_YUY2 || ((x)&IMGFMT_BGR_MASK)==IMGFMT_BGR || ((x)&IMGFMT_RGB_MASK)==IMGFMT_RGB) #define isGray(x) ((x)==IMGFMT_Y800) #define isSupportedIn(x) ((x)==IMGFMT_YV12 || (x)==IMGFMT_I420 || (x)==IMGFMT_YUY2 \ - || (x)==IMGFMT_BGR32|| (x)==IMGFMT_BGR24\ + || (x)==IMGFMT_BGR32|| (x)==IMGFMT_BGR24|| (x)==IMGFMT_BGR16\ || (x)==IMGFMT_RGB32|| (x)==IMGFMT_RGB24\ || (x)==IMGFMT_Y800) #define isSupportedOut(x) ((x)==IMGFMT_YV12 || (x)==IMGFMT_I420 \ diff -r aec989adea32 -r 395b1233b856 postproc/swscale_template.c --- a/postproc/swscale_template.c Thu Feb 07 22:10:32 2002 +0000 +++ b/postproc/swscale_template.c Fri Feb 08 00:42:00 2002 +0000 @@ -1666,6 +1666,55 @@ #endif } +static inline void RENAME(bgr16ToY)(uint8_t *dst, uint8_t *src, int width) +{ + int i; + for(i=0; i>5)&0x3F; + int r= (d>>11)&0x1F; + + dst[i]= ((2*RY*r + GY*g + 2*BY*b)>>(RGB2YUV_SHIFT-2)) + 16; + } +} + +static inline void RENAME(bgr16ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) +{ + int i; + for(i=0; i>5)&0x3F; + int r0= (d0>>11)&0x1F; + + int d1= src1[i*4+2] + (src1[i*4+3]<<8); + int b1= d1&0x1F; + int g1= (d1>>5)&0x3F; + int r1= (d1>>11)&0x1F; + + int d2= src2[i*4] + (src2[i*4+1]<<8); + int b2= d2&0x1F; + int g2= (d2>>5)&0x3F; + int r2= (d2>>11)&0x1F; + + int d3= src2[i*4+2] + (src2[i*4+3]<<8); + int b3= d3&0x1F; + int g3= (d3>>5)&0x3F; + int r3= (d3>>11)&0x1F; + + int b= b0 + b1 + b2 + b3; + int g= g0 + g1 + g2 + g3; + int r= r0 + r1 + r2 + r3; + + 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; + } +} + static inline void RENAME(rgb32ToY)(uint8_t *dst, uint8_t *src, int width) { int i; @@ -1903,6 +1952,11 @@ RENAME(bgr24ToY)(formatConvBuffer, src, srcW); src= formatConvBuffer; } + else if(srcFormat==IMGFMT_BGR16) + { + RENAME(bgr16ToY)(formatConvBuffer, src, srcW); + src= formatConvBuffer; + } else if(srcFormat==IMGFMT_RGB32) { RENAME(rgb32ToY)(formatConvBuffer, src, srcW); @@ -2060,6 +2114,12 @@ src1= formatConvBuffer; src2= formatConvBuffer+2048; } + else if(srcFormat==IMGFMT_BGR16) + { + RENAME(bgr16ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); + src1= formatConvBuffer; + src2= formatConvBuffer+2048; + } else if(srcFormat==IMGFMT_RGB32) { RENAME(rgb32ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW);