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

  /development/tools/emulator/system/camera/
Converters.h 193 #define YUV2GO(C, D, E) clamp((298 * (C) - 100 * (D) - 208 * (E) + 128) >> 8)
211 const uint16_t g = (YUV2GO(y,u,v) >> 2) & 0x3f;
224 rgb.g = YUV2GO(y,u,v) & 0xff;
  /external/qemu/android/camera/
camera-format-converters.c 198 #define YUV2GO(C, D, E) clamp((298 * (C) - 100 * (D) - 208 * (E) + 128) >> 8)
216 const uint16_t g = YUV2GO(y,u,v) >> 2;
229 rgb.g = YUV2GO(y,u,v);
241 *g = (uint8_t)YUV2GO(y,u,v);
276 *g = YUV2GO(y,u,v);
    [all...]

Completed in 271 milliseconds