Searched refs:yuvBuf (Results 1 – 9 of 9) sorted by relevance
/external/opencore/codecs_v2/utilities/colorconvert/src/ |
D | ccyuv420toyuv420semi.cpp | 76 int32 ColorConvertYUV420SEMI::Convert(uint8 **yuvBuf, uint8 *rgbBuf) in Convert() argument 79 OSCL_ASSERT(yuvBuf); in Convert() 80 OSCL_ASSERT(yuvBuf[0]); in Convert() 81 OSCL_ASSERT(yuvBuf[1]); in Convert() 82 OSCL_ASSERT(yuvBuf[2]); in Convert() 91 if (((uint32)rgbBuf)&0x3 || ((uint32)yuvBuf[0])&0x3) /* address is not word align */ in Convert() 96 inY = (uint32*) yuvBuf[0]; in Convert() 97 inCb = yuvBuf[1]; in Convert() 98 inCr = yuvBuf[2]; in Convert() 137 int32 ColorConvertYUV420SEMI::Convert(uint8 *yuvBuf, uint8 *rgbBuf) in Convert() argument [all …]
|
D | cpvvideoblend.cpp | 301 uint8 *yuvBuf[3], *yuvBufDec[3], *rgbBuf = NULL, *temprgbBuf; in BlendOutput() local 326 yuvBuf[0] = pToEncode->pBuffer; in BlendOutput() 327 yuvBuf[1] = yuvBuf[0] + srcFrameSizeEnc; in BlendOutput() 328 yuvBuf[2] = yuvBuf[1] + srcFrameSizeEnc / 4; in BlendOutput() 329 EncoderInput->Convert(yuvBuf, rgbBuf + (pos2->y * pDisplayOutput->width + pos2->x)*2); in BlendOutput() 350 yuvBuf[0] = pToEncode->pBuffer; in BlendOutput() 351 yuvBuf[1] = yuvBuf[0] + srcFrameSizeEnc; in BlendOutput() 352 yuvBuf[2] = yuvBuf[1] + srcFrameSizeEnc / 4; in BlendOutput() 353 EncoderInput->Convert(yuvBuf, rgbBuf + (pos2->y * pDisplayOutput->width + pos2->x)*2); in BlendOutput()
|
D | ccyuv420semiplnrtoyuv420plnr.cpp | 112 uint8 *yuvBuf[3] = {NULL, NULL, NULL }; in Convert() local 117 yuvBuf[0] = outyuvBuf; in Convert() 118 yuvBuf[1] = (outyuvBuf + outYsize); in Convert() 119 yuvBuf[2] = (outyuvBuf + outYsize + (outYsize >> 2)); in Convert() 121 return (Convert(inyuvBuf, yuvBuf)); in Convert()
|
D | cczoomrotation12.cpp | 213 int32 ColorConvert12::Convert(uint8 **yuvBuf, uint8 *rgbBuf) in Convert() argument 216 OSCL_ASSERT(yuvBuf); in Convert() 217 OSCL_ASSERT(yuvBuf[0]); in Convert() 218 OSCL_ASSERT(yuvBuf[1]); in Convert() 219 OSCL_ASSERT(yuvBuf[2]); in Convert() 223 if (((uint)rgbBuf)&0x3 || ((uint)yuvBuf[0])&0x3) /* address is not word align */ in Convert() 237 (*this.*mPtrYUV2RGB)(yuvBuf, rgbBuf, &_mDisp, mClip, (uint8 *)(mErr_horz[0])); in Convert() 243 int32 ColorConvert12::Convert(uint8 *yuvBuf, uint8 *rgbBuf) in Convert() argument 246 OSCL_ASSERT(yuvBuf); in Convert() 252 if (((uint)rgbBuf)&0x3 || ((uint)yuvBuf)&0x3) /* address is not word align */ in Convert() [all …]
|
D | cczoomrotation32.cpp | 166 int32 ColorConvert32::Convert(uint8 **yuvBuf, uint8 *rgbBuf) in Convert() argument 169 OSCL_ASSERT(yuvBuf); in Convert() 170 OSCL_ASSERT(yuvBuf[0]); in Convert() 171 OSCL_ASSERT(yuvBuf[1]); in Convert() 172 OSCL_ASSERT(yuvBuf[2]); in Convert() 175 if (((uint32)rgbBuf)&0x3 || ((uint32)yuvBuf[0])&0x3) /* address is not word align */ in Convert() 180 (*this.*mPtrYUV2RGB)(yuvBuf, rgbBuf, &_mDisp, (uint8 *)mClip); in Convert() 186 int32 ColorConvert32::Convert(uint8 *yuvBuf, uint8 *rgbBuf) in Convert() argument 192 OSCL_ASSERT(yuvBuf); in Convert() 195 if (((uint32)rgbBuf)&0x3 || ((uint32)yuvBuf)&0x3) /* address is not word align */ in Convert() [all …]
|
D | cczoomrotation24.cpp | 169 int32 ColorConvert24::Convert(uint8 **yuvBuf, uint8 *rgbBuf) in Convert() argument 172 OSCL_ASSERT(yuvBuf); in Convert() 173 OSCL_ASSERT(yuvBuf[0]); in Convert() 174 OSCL_ASSERT(yuvBuf[1]); in Convert() 175 OSCL_ASSERT(yuvBuf[2]); in Convert() 179 if (((uint)rgbBuf)&0x3 || ((uint)yuvBuf[0])&0x3) /* address is not word align */ in Convert() 184 (*this.*mPtrYUV2RGB)(yuvBuf, rgbBuf, &_mDisp, (uint8 *)mClip); in Convert() 190 int32 ColorConvert24::Convert(uint8 *yuvBuf, uint8 *rgbBuf) in Convert() argument 196 OSCL_ASSERT(yuvBuf); in Convert() 199 if (((uint)rgbBuf)&0x3 || ((uint)yuvBuf)&0x3) /* address is not word align */ in Convert() [all …]
|
D | cczoomrotation16.cpp | 220 int32 ColorConvert16::Convert(uint8 **yuvBuf, uint8 *rgbBuf) in Convert() argument 223 OSCL_ASSERT(yuvBuf); in Convert() 224 OSCL_ASSERT(yuvBuf[0]); in Convert() 225 OSCL_ASSERT(yuvBuf[1]); in Convert() 226 OSCL_ASSERT(yuvBuf[2]); in Convert() 229 if (((uint32)rgbBuf)&0x3 || ((uint32)yuvBuf[0])&0x3) /* address is not word align */ in Convert() 234 (*this.*mPtrYUV2RGB)(yuvBuf, rgbBuf, &_mDisp, (uint8 *)mCoefTbl); in Convert() 240 int32 ColorConvert16::Convert(uint8 *yuvBuf, uint8 *rgbBuf) in Convert() argument 246 OSCL_ASSERT(yuvBuf); in Convert() 249 if (((uint32)rgbBuf)&0x3 || ((uint32)yuvBuf)&0x3) /* address is not word align */ in Convert() [all …]
|
/external/opencore/codecs_v2/utilities/colorconvert/include/ |
D | ccyuv420toyuv420semi.h | 39 int32 Convert(uint8 *yuvBuf, uint8 *rgbBuf); 40 int32 Convert(uint8 **yuvBuf, uint8 *rgbBuf);
|
D | cczoomrotation32.h | 43 int32 Convert(uint8 *yuvBuf, uint8 *rgbBuf); 44 int32 Convert(uint8 **yuvBuf, uint8 *rgbBuf);
|