HomeSort by relevance Sort by last modified time
    Searched refs:YCbCr (Results 1 - 8 of 8) sorted by null

  /external/mesa3d/docs/
MESA_ycbcr_texture.spec 34 This extension supports texture images stored in the YCbCr format.
35 There is no support for converting YCbCr images to RGB or vice versa
36 during pixel transfer. The texture's YCbCr colors are converted to
41 A YCbCr pixel (texel) is a 16-bit unsigned short with two components.
120 indicate that the image data is in YCbCr format. type must
127 YCbCr, not RGB. Queries of the texture's red, green and blue component
128 sizes will return zero. The YCbCr colors are converted to RGB during
201 3 September 2003 - further clarify when YCbCr->RGB conversion takes place
  /frameworks/base/media/libstagefright/codecs/avc/common/include/
avcapi_common.h 143 uint8 *YCbCr[3];
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
residual.cpp 43 pSrc = currInput->YCbCr[0] + offset1;
78 pSrc = currInput->YCbCr[1] + ((offset1 + x_position) >> 2);
112 pSrc = currInput->YCbCr[2] + ((offset1 + x_position) >> 2);
avcenc_api.cpp 569 recon->YCbCr[0] = currFS->frame.Sl;
570 recon->YCbCr[1] = currFS->frame.Scb;
571 recon->YCbCr[2] = currFS->frame.Scr;
intra_est.cpp 39 uint8 *orgY = currInput->YCbCr[0] + y_pos * orgPitch + x_pos;
69 orgY_2 = currInput->YCbCr[1] + offset + (y_pos >> 2) * (orgPitch - picPitch);
83 orgY_2 = currInput->YCbCr[2] + offset + (y_pos >> 2) * (orgPitch - picPitch);
143 orgY = currInput->YCbCr[0] + y_pos * orgPitch + x_pos;
647 org8 = currInput->YCbCr[0] + y * org_pitch + x;
    [all...]
slice.cpp 184 orgL = currInput->YCbCr[0] + offset;
188 orgCb = currInput->YCbCr[1] + offset;
189 orgCr = currInput->YCbCr[2] + offset;
motion_est.cpp 354 cur = currInput->YCbCr[0] + offset;
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/
AVCEncoder.cpp 527 videoInput.YCbCr[0] = inputData;
528 videoInput.YCbCr[1] = videoInput.YCbCr[0] + videoInput.height * videoInput.pitch;
529 videoInput.YCbCr[2] = videoInput.YCbCr[1] +

Completed in 270 milliseconds