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

  /frameworks/av/media/libstagefright/colorconversion/
SoftwareRenderer.cpp 200 const uint8_t *src_uv = local
221 dst_u[x] = src_uv[2 * x];
222 dst_v[x] = src_uv[2 * x + 1];
225 src_uv += mWidth;
  /external/libyuv/files/source/
convert_argb.cc 531 const uint8* src_uv, int src_stride_uv,
534 if (!src_y || !src_uv || !dst_argb ||
569 NV12ToARGBRow(src_y, src_uv, dst_argb, width);
573 src_uv += src_stride_uv;
582 const uint8* src_uv, int src_stride_uv,
585 if (!src_y || !src_uv || !dst_argb ||
620 NV21ToARGBRow(src_y, src_uv, dst_argb, width);
624 src_uv += src_stride_uv;
1015 const uint8* src_uv; local
    [all...]
convert.cc 69 static void HalfRow_SSE2(const uint8* src_uv, int src_uv_stride,
73 mov eax, [esp + 4 + 4] // src_uv
94 static void HalfRow_SSE2(const uint8* src_uv, int src_uv_stride,
106 : "+r"(src_uv), // %0
118 static void HalfRow_C(const uint8* src_uv, int src_uv_stride,
121 dst_uv[x] = (src_uv[x] + src_uv[src_uv_stride + x] + 1) >> 1;
149 void (*HalfRow)(const uint8* src_uv, int src_uv_stride,
402 const uint8* src_uv, int src_stride_uv,
407 if (!src_y || !src_uv ||
1730 const uint8* src_uv; local
    [all...]

Completed in 101 milliseconds