HomeSort by relevance Sort by last modified time
    Searched defs:yuv (Results 1 - 5 of 5) sorted by null

  /external/opencore/codecs_v2/utilities/colorconvert/src/
ccrgb24toyuv420.cpp 163 int32 ccrgb24toyuv(uint8 *rgb24, uint8 *yuv[], uint32 *param, uint8 *table[]);
171 uint8 *yuv[3]; local
185 yuv[0] = yuv420;
186 yuv[1] = yuv420 + size16;
187 yuv[2] = yuv[1] + (size16 >> 2);
189 return ccrgb24toyuv(rgb24, yuv, param, table);
218 int32 ccrgb24toyuv(uint8 *rgb24, uint8 *yuv[], uint32 *param, uint8 *table[])
239 /* do padding if input RGB size(height) is different from the output YUV size(height_16) */
250 tempY = yuv[0] + offset
    [all...]
ccrgb12toyuv420.cpp 162 int32 ccrgb12toyuv(uint8 *rgb12, uint8 *yuv[], uint32 *param, uint8 *table[]);
170 uint8 *yuv[3]; local
184 yuv[0] = yuv420;
185 yuv[1] = yuv420 + size16;
186 yuv[2] = yuv[1] + (size16 >> 2);
188 return ccrgb12toyuv(rgb12, yuv, param, table);
216 int32 ccrgb12toyuv(uint8 *rgb12, uint8 *yuv[], uint32 *param, uint8 *table[])
246 /* do padding if input RGB size(height) is different from the output YUV size(height_16) */
258 tempY = (uint32 *)yuv[0] + (offset >> 2)
    [all...]
ccrgb16toyuv420.cpp 173 int32 ccrgb16toyuv(uint8 *rgb16, uint8 *yuv[], uint32 *param, uint8 *table[]);
174 int32 ccrgb16toyuv_wo_colorkey(uint8 *rgb16, uint8 *yuv[], uint32 *param, uint8 *table[]);
182 uint8 *yuv[3]; local
200 yuv[0] = yuv420;
201 yuv[1] = yuv420 + size16;
202 yuv[2] = yuv[1] + (size16 >> 2);
206 return ccrgb16toyuv(rgb16, yuv, param, table);
210 return ccrgb16toyuv_wo_colorkey(rgb16, yuv, param, table);
217 int32 ccrgb16toyuv(uint8 *rgb16, uint8 *yuv[], uint32 *param, uint8 *table[]
    [all...]
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 72 uint8_t* yuv, int* offsets) {
84 uint8_t* yPlanar = yuv + offsets[0];
85 uint8_t* vuPlanar = yuv + offsets[1]; //width * height;
145 uint8_t* yuv, int* offsets) {
161 uint8_t* yuvOffset = yuv + offsets[0];
186 void Yuv422IToJpegEncoder::deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows,
189 uint8_t* yuvSeg = yuv + (rowIndex + row) * fStrides[0];
217 jbyte* yuv = env->GetByteArrayElements(inYuv, NULL); local
226 encoder->encode(strm, yuv, width, height, imgOffsets, jpegQuality);
229 env->ReleaseByteArrayElements(inYuv, yuv, 0)
    [all...]
  /prebuilt/sdk/8/
android.jar 

Completed in 376 milliseconds