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

  /external/libyuv/files/include/libyuv/
rotate.h 43 const uint8* src_uv, int src_stride_uv,
planar_functions.h 47 const uint8* src_uv, int src_stride_uv,
55 const uint8* src_uv, int src_stride,
convert.h 91 const uint8* src_uv, int src_stride_uv,
  /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/
planar_functions.cc 24 static void SplitUV_NEON(const uint8* src_uv,
34 : "+r"(src_uv),
64 static void SplitUV_SSE2(const uint8* src_uv,
68 mov eax, [esp + 4 + 4] // src_uv
101 static void SplitUV_SSE2(const uint8* src_uv,
124 : "+r"(src_uv), // %0
135 static void SplitUV_C(const uint8* src_uv,
139 dst_u[0] = src_uv[0];
140 dst_v[0] = src_uv[1];
141 src_uv += 2
    [all...]
rotate.cc     [all...]
convert.cc 543 const uint8* src_uv, int src_stride_uv,
546 if (src_y == NULL || src_uv == NULL || dst_frame == NULL) {
551 const uint8* interlacedSrc = src_uv;

Completed in 210 milliseconds