/external/opencore/codecs_v2/utilities/colorconvert/src/ |
D | ccyuv420toyuv420semi.cpp | 76 int32 ColorConvertYUV420SEMI::Convert(uint8 **yuvBuf, uint8 *rgbBuf) in Convert() argument 83 OSCL_ASSERT(rgbBuf); in Convert() 91 if (((uint32)rgbBuf)&0x3 || ((uint32)yuvBuf[0])&0x3) /* address is not word align */ in Convert() 99 outYUV420SEMI = (uint32 *)rgbBuf; in Convert() 137 int32 ColorConvertYUV420SEMI::Convert(uint8 *yuvBuf, uint8 *rgbBuf) in Convert() argument 144 OSCL_ASSERT(rgbBuf); in Convert() 146 if (((uint32)rgbBuf)&0x3 || ((uint32)yuvBuf)&0x3) /* address is not word align */ in Convert() 155 return (Convert(TmpYuvBuf, rgbBuf)); in Convert()
|
D | cpvvideoblend.cpp | 301 uint8 *yuvBuf[3], *yuvBufDec[3], *rgbBuf = NULL, *temprgbBuf; in BlendOutput() local 310 rgbBuf = pDisplayOutput->pBuffer; in BlendOutput() 329 EncoderInput->Convert(yuvBuf, rgbBuf + (pos2->y * pDisplayOutput->width + pos2->x)*2); in BlendOutput() 336 … DecoderOutput->Convert(yuvBufDec, rgbBuf + (pos1->y * pDisplayOutput->width + pos1->x)*2); in BlendOutput() 346 … DecoderOutput->Convert(yuvBufDec, rgbBuf + (pos1->y * pDisplayOutput->width + pos1->x)*2); in BlendOutput() 353 EncoderInput->Convert(yuvBuf, rgbBuf + (pos2->y * pDisplayOutput->width + pos2->x)*2); in BlendOutput() 360 rgbBuf += (pos3->y * pDisplayOutput->width + pos3->x) * 2; in BlendOutput() 365 *rgbBuf++ = *temprgbBuf++; in BlendOutput() 368 rgbBuf += (Dst_pitch * 2) - (pDropDownMenu->width * 2); in BlendOutput()
|
D | cczoomrotation12.cpp | 213 int32 ColorConvert12::Convert(uint8 **yuvBuf, uint8 *rgbBuf) in Convert() argument 220 OSCL_ASSERT(rgbBuf); 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 247 OSCL_ASSERT(rgbBuf); in Convert() 252 if (((uint)rgbBuf)&0x3 || ((uint)yuvBuf)&0x3) /* address is not word align */ in Convert() 261 (*this.*mPtrYUV2RGB)(TmpYuvBuf, rgbBuf, &_mDisp, mClip, (uint8 *)(mErr_horz[0])); in Convert()
|
D | cczoomrotation32.cpp | 166 int32 ColorConvert32::Convert(uint8 **yuvBuf, uint8 *rgbBuf) in Convert() argument 173 OSCL_ASSERT(rgbBuf); 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 193 OSCL_ASSERT(rgbBuf); in Convert() 195 if (((uint32)rgbBuf)&0x3 || ((uint32)yuvBuf)&0x3) /* address is not word align */ in Convert() 203 (*this.*mPtrYUV2RGB)(TmpYuvBuf, rgbBuf, &_mDisp, (uint8 *)mClip); in Convert()
|
D | cczoomrotation24.cpp | 169 int32 ColorConvert24::Convert(uint8 **yuvBuf, uint8 *rgbBuf) in Convert() argument 176 OSCL_ASSERT(rgbBuf); 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 197 OSCL_ASSERT(rgbBuf); in Convert() 199 if (((uint)rgbBuf)&0x3 || ((uint)yuvBuf)&0x3) /* address is not word align */ in Convert() 207 (*this.*mPtrYUV2RGB)(TmpYuvBuf, rgbBuf, &_mDisp, (uint8 *)mClip); in Convert()
|
D | cczoomrotation16.cpp | 220 int32 ColorConvert16::Convert(uint8 **yuvBuf, uint8 *rgbBuf) in Convert() argument 227 OSCL_ASSERT(rgbBuf); 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 247 OSCL_ASSERT(rgbBuf); in Convert() 249 if (((uint32)rgbBuf)&0x3 || ((uint32)yuvBuf)&0x3) /* address is not word align */ in Convert() 258 (*this.*mPtrYUV2RGB)(TmpYuvBuf, rgbBuf, &_mDisp, (uint8 *)mCoefTbl); in Convert()
|
/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);
|