OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rgbBuf
(Results
1 - 8
of
8
) sorted by null
/external/opencore/codecs_v2/utilities/colorconvert/include/
ccyuv420toyuv420semi.h
39
int32 Convert(uint8 *yuvBuf, uint8 *
rgbBuf
);
40
int32 Convert(uint8 **yuvBuf, uint8 *
rgbBuf
);
cczoomrotation32.h
43
int32 Convert(uint8 *yuvBuf, uint8 *
rgbBuf
);
44
int32 Convert(uint8 **yuvBuf, uint8 *
rgbBuf
);
/external/opencore/codecs_v2/utilities/colorconvert/src/
ccyuv420toyuv420semi.cpp
76
int32 ColorConvertYUV420SEMI::Convert(uint8 **yuvBuf, uint8 *
rgbBuf
)
83
OSCL_ASSERT(
rgbBuf
);
91
if (((uint32)
rgbBuf
)&0x3 || ((uint32)yuvBuf[0])&0x3) /* address is not word align */
99
outYUV420SEMI = (uint32 *)
rgbBuf
;
137
int32 ColorConvertYUV420SEMI::Convert(uint8 *yuvBuf, uint8 *
rgbBuf
)
144
OSCL_ASSERT(
rgbBuf
);
146
if (((uint32)
rgbBuf
)&0x3 || ((uint32)yuvBuf)&0x3) /* address is not word align */
155
return (Convert(TmpYuvBuf,
rgbBuf
));
cpvvideoblend.cpp
301
uint8 *yuvBuf[3], *yuvBufDec[3], *
rgbBuf
= NULL, *temprgbBuf;
310
rgbBuf
= pDisplayOutput->pBuffer;
329
EncoderInput->Convert(yuvBuf,
rgbBuf
+ (pos2->y * pDisplayOutput->width + pos2->x)*2);
336
DecoderOutput->Convert(yuvBufDec,
rgbBuf
+ (pos1->y * pDisplayOutput->width + pos1->x)*2);
346
DecoderOutput->Convert(yuvBufDec,
rgbBuf
+ (pos1->y * pDisplayOutput->width + pos1->x)*2);
353
EncoderInput->Convert(yuvBuf,
rgbBuf
+ (pos2->y * pDisplayOutput->width + pos2->x)*2);
360
rgbBuf
+= (pos3->y * pDisplayOutput->width + pos3->x) * 2;
365
*
rgbBuf
++ = *temprgbBuf++;
368
rgbBuf
+= (Dst_pitch * 2) - (pDropDownMenu->width * 2);
cczoomrotation12.cpp
213
int32 ColorConvert12::Convert(uint8 **yuvBuf, uint8 *
rgbBuf
)
220
OSCL_ASSERT(
rgbBuf
);
223
if (((uint)
rgbBuf
)&0x3 || ((uint)yuvBuf[0])&0x3) /* address is not word align */
237
(*this.*mPtrYUV2RGB)(yuvBuf,
rgbBuf
, &_mDisp, mClip, (uint8 *)(mErr_horz[0]));
243
int32 ColorConvert12::Convert(uint8 *yuvBuf, uint8 *
rgbBuf
)
247
OSCL_ASSERT(
rgbBuf
);
252
if (((uint)
rgbBuf
)&0x3 || ((uint)yuvBuf)&0x3) /* address is not word align */
261
(*this.*mPtrYUV2RGB)(TmpYuvBuf,
rgbBuf
, &_mDisp, mClip, (uint8 *)(mErr_horz[0]));
[
all
...]
cczoomrotation24.cpp
169
int32 ColorConvert24::Convert(uint8 **yuvBuf, uint8 *
rgbBuf
)
176
OSCL_ASSERT(
rgbBuf
);
179
if (((uint)
rgbBuf
)&0x3 || ((uint)yuvBuf[0])&0x3) /* address is not word align */
184
(*this.*mPtrYUV2RGB)(yuvBuf,
rgbBuf
, &_mDisp, (uint8 *)mClip);
190
int32 ColorConvert24::Convert(uint8 *yuvBuf, uint8 *
rgbBuf
)
197
OSCL_ASSERT(
rgbBuf
);
199
if (((uint)
rgbBuf
)&0x3 || ((uint)yuvBuf)&0x3) /* address is not word align */
207
(*this.*mPtrYUV2RGB)(TmpYuvBuf,
rgbBuf
, &_mDisp, (uint8 *)mClip);
[
all
...]
cczoomrotation32.cpp
166
int32 ColorConvert32::Convert(uint8 **yuvBuf, uint8 *
rgbBuf
)
173
OSCL_ASSERT(
rgbBuf
);
175
if (((uint32)
rgbBuf
)&0x3 || ((uint32)yuvBuf[0])&0x3) /* address is not word align */
180
(*this.*mPtrYUV2RGB)(yuvBuf,
rgbBuf
, &_mDisp, (uint8 *)mClip);
186
int32 ColorConvert32::Convert(uint8 *yuvBuf, uint8 *
rgbBuf
)
193
OSCL_ASSERT(
rgbBuf
);
195
if (((uint32)
rgbBuf
)&0x3 || ((uint32)yuvBuf)&0x3) /* address is not word align */
203
(*this.*mPtrYUV2RGB)(TmpYuvBuf,
rgbBuf
, &_mDisp, (uint8 *)mClip);
[
all
...]
cczoomrotation16.cpp
220
int32 ColorConvert16::Convert(uint8 **yuvBuf, uint8 *
rgbBuf
)
227
OSCL_ASSERT(
rgbBuf
);
229
if (((uint32)
rgbBuf
)&0x3 || ((uint32)yuvBuf[0])&0x3) /* address is not word align */
234
(*this.*mPtrYUV2RGB)(yuvBuf,
rgbBuf
, &_mDisp, (uint8 *)mCoefTbl);
240
int32 ColorConvert16::Convert(uint8 *yuvBuf, uint8 *
rgbBuf
)
247
OSCL_ASSERT(
rgbBuf
);
249
if (((uint32)
rgbBuf
)&0x3 || ((uint32)yuvBuf)&0x3) /* address is not word align */
258
(*this.*mPtrYUV2RGB)(TmpYuvBuf,
rgbBuf
, &_mDisp, (uint8 *)mCoefTbl);
[
all
...]
Completed in 481 milliseconds