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

  /external/webp/src/dsp/
yuv.h 207 static WEBP_INLINE int VP8RGBToV(int r, int g, int b, int rounding) {
227 static WEBP_INLINE int VP8RGBToV(int r, int g, int b, int rounding) {
yuv.c 194 const int tmp_v = VP8RGBToV(r, g, b, YUV_HALF << 2);
210 const int tmp_v = VP8RGBToV(r, g, b, YUV_HALF << 2);
243 v[i] = VP8RGBToV(r, g, b, YUV_HALF << 2);
  /external/webp/src/enc/
picture_tools_enc.c 162 const int V0 = VP8RGBToV(4 * red, 4 * green, 4 * blue, 4 * YUV_HALF);
picture_csp_enc.c 151 return (rg == NULL) ? VP8RGBToV(r, g, b, YUV_HALF << 2)
152 : VP8RGBToV(r, g, b, VP8RandomBits(rg, YUV_FIX + 2));
    [all...]

Completed in 75 milliseconds