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

  /external/libyuv/files/include/libyuv/
convert.h 20 const uint8* src_u, int src_stride_u,
26 const uint8* src_u, int src_stride_u,
32 const uint8* src_u, int src_stride_u,
38 const uint8* src_u, int src_stride_u,
44 const uint8* src_u, int src_stride_u,
50 const uint8* src_u, int src_stride_u,
scale.h 36 const uint8* src_u, int src_stride_u,
54 int Scale(const uint8* src_y, const uint8* src_u, const uint8* src_v,
planar_functions.h 21 const uint8* src_u, int src_stride_u,
38 const uint8* src_u, int src_stride_u,
92 const uint8* src_u, int src_stride_u,
99 const uint8* src_u, int src_stride_u,
106 const uint8* src_u, int src_stride_u,
113 const uint8* src_u, int src_stride_u,
120 const uint8* src_u, int src_stride_u,
rotate.h 33 const uint8* src_u, int src_stride_u,
  /external/libyuv/files/source/
convert.cc 36 const uint8* src_u, int src_stride_u,
40 if (src_y == NULL || src_u == NULL || src_v == NULL || dst_frame == NULL) {
53 u = src_u;
106 const uint8* src_u, int src_stride_u,
110 if (src_y == NULL || src_u == NULL || src_v == NULL || dst_frame == NULL) {
121 u = src_u;
173 const uint8* src_u, int src_stride_u,
177 if (src_y == NULL || src_u == NULL || src_v == NULL || dst_frame == NULL) {
185 src_u = src_u + (height - 1) * src_stride_u
    [all...]
planar_functions.cc 160 const uint8* src_u, int src_stride_u,
166 if (!src_y || !src_u || !src_v ||
177 src_u = src_u + (halfheight - 1) * src_stride_u;
187 I420CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight);
326 const uint8* src_u, int src_stride_u,
336 src_u = src_u + (height - 1) * src_stride_u;
350 const uint8* u0 = src_u;
351 const uint8* u1 = src_u + src_stride_u
    [all...]
rotate.cc     [all...]
scale.cc     [all...]
  /external/libyuv/files/unit_test/
scale_test.cc 43 align_buffer_16(src_u, src_uv_plane_size)
97 uint8 *ptru = src_u + (i * src_stride_uv) + j;
114 src_u + (src_stride_uv * b) + b, src_stride_uv,
152 free_aligned_buffer_16(src_u)
  /frameworks/av/media/libstagefright/colorconversion/
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...]
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;

Completed in 1406 milliseconds