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

  /external/chromium_org/third_party/mesa/src/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
  /external/clang/test/SemaCXX/
crashes.cpp 123 cc_YCbCr YCbCr();
132 cc_YCbCr cc_hsl::YCbCr()
  /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/av/media/libstagefright/codecs/avc/common/include/
avcapi_common.h 143 uint8 *YCbCr[3];
  /frameworks/av/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 561 recon->YCbCr[0] = currFS->frame.Sl;
562 recon->YCbCr[1] = currFS->frame.Scb;
563 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/av/media/libstagefright/codecs/avc/enc/
SoftAVCEncoder.cpp 838 videoInput.YCbCr[0] = inputData;
839 videoInput.YCbCr[1] = videoInput.YCbCr[0] + videoInput.height * videoInput.pitch;
840 videoInput.YCbCr[2] = videoInput.YCbCr[1] +
    [all...]

Completed in 496 milliseconds