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

  /frameworks/av/media/libstagefright/colorconversion/
SoftwareRenderer.cpp 168 const uint8_t *src_u = (const uint8_t *)data + mWidth * mHeight; local
169 const uint8_t *src_v = src_u + (mWidth / 2 * mHeight / 2);
186 memcpy(dst_u, src_u, (mCropWidth + 1) / 2);
189 src_u += mWidth / 2;
ColorConverter.cpp 215 const uint8_t *src_u = local
220 src_u + (src.mWidth / 2) * (src.mHeight / 2);
245 signed u = (signed)src_u[x / 2] - 128;
283 src_u += src.mWidth / 2;
309 const uint8_t *src_u = local
318 signed u = (signed)src_u[x & ~1] - 128;
319 signed v = (signed)src_u[(x & ~1) + 1] - 128;
356 src_u += src.mWidth;
383 const uint8_t *src_u = local
392 signed v = (signed)src_u[x & ~1] - 128
454 const uint8_t *src_u = local
    [all...]
  /external/libyuv/files/source/
convert_argb.cc 53 const uint8* src_u, int src_stride_u,
57 if (!src_y || !src_u || !src_v ||
86 I444ToARGBRow(src_y, src_u, src_v, dst_argb, width);
89 src_u += src_stride_u;
98 const uint8* src_u, int src_stride_u,
102 if (!src_y || !src_u || !src_v ||
138 I422ToARGBRow(src_y, src_u, src_v, dst_argb, width);
141 src_u += src_stride_u;
150 const uint8* src_u, int src_stride_u,
154 if (!src_y || !src_u || !src_v |
1195 const uint8* src_u; local
1220 const uint8* src_u; local
1244 const uint8* src_u; local
1263 const uint8* src_u = sample + src_width * abs_src_height + local
    [all...]
convert.cc 32 const uint8* src_u, int src_stride_u,
38 if (!src_y || !src_u || !src_v ||
48 src_u = src_u + (halfheight - 1) * src_stride_u;
60 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight);
127 const uint8* src_u, int src_stride_u,
133 if (!src_y || !src_u || !src_v ||
142 src_u = src_u + (height - 1) * src_stride_u;
154 IS_ALIGNED(src_u, 16) && IS_ALIGNED(src_stride_u, 16) &
1962 const uint8* src_u; local
1989 const uint8* src_u; local
2015 const uint8* src_u; local
2036 const uint8* src_u = sample + src_width * abs_src_height + local
    [all...]
scale.cc 3064 const uint8* src_u = src + src_width * src_height; local
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
scale.c 3867 const uint8* const src_u = src + src_width * src_height; local
    [all...]

Completed in 554 milliseconds