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

  /external/libyuv/files/include/libyuv/
convert.h 21 const uint8* src_v, int src_stride_v,
27 const uint8* src_v, int src_stride_v,
33 const uint8* src_v, int src_stride_v,
39 const uint8* src_v, int src_stride_v,
45 const uint8* src_v, int src_stride_v,
51 const uint8* src_v, int src_stride_v,
scale.h 37 const uint8* src_v, int src_stride_v,
54 int Scale(const uint8* src_y, const uint8* src_u, const uint8* src_v,
planar_functions.h 22 const uint8* src_v, int src_stride_v,
39 const uint8* src_v, int src_stride_v,
93 const uint8* src_v, int src_stride_v,
100 const uint8* src_v, int src_stride_v,
107 const uint8* src_v, int src_stride_v,
114 const uint8* src_v, int src_stride_v,
121 const uint8* src_v, int src_stride_v,
rotate.h 34 const uint8* src_v, int src_stride_v,
  /external/libyuv/files/source/
convert.cc 37 const uint8* src_v, int src_stride_v,
40 if (src_y == NULL || src_u == NULL || src_v == NULL || dst_frame == NULL) {
54 v = src_v;
107 const uint8* src_v, int src_stride_v,
110 if (src_y == NULL || src_u == NULL || src_v == NULL || dst_frame == NULL) {
122 v = src_v;
174 const uint8* src_v, int src_stride_v,
177 if (src_y == NULL || src_u == NULL || src_v == NULL || dst_frame == NULL) {
186 src_v = src_v + (height - 1) * src_stride_v
    [all...]
planar_functions.cc 161 const uint8* src_v, int src_stride_v,
166 if (!src_y || !src_u || !src_v ||
178 src_v = src_v + (halfheight - 1) * src_stride_v;
188 I420CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight);
327 const uint8* src_v, int src_stride_v,
337 src_v = src_v + (height - 1) * src_stride_v;
362 const uint8* v0 = src_v;
363 const uint8* v1 = src_v + src_stride_v
    [all...]
rotate.cc     [all...]
scale.cc     [all...]
  /external/libyuv/files/unit_test/
scale_test.cc 44 align_buffer_16(src_v, src_uv_plane_size)
98 uint8 *ptrv = src_v + (i * src_stride_uv) + j;
115 src_v + (src_stride_uv * b) + b, src_stride_uv,
153 free_aligned_buffer_16(src_v)
  /frameworks/av/media/libstagefright/colorconversion/
SoftwareRenderer.cpp 169 const uint8_t *src_v = src_u + (mWidth / 2 * mHeight / 2); local
187 memcpy(dst_v, src_v, (mCropWidth + 1) / 2);
190 src_v += mWidth / 2;
ColorConverter.cpp 219 const uint8_t *src_v = local
246 signed v = (signed)src_v[x / 2] - 128;
284 src_v += src.mWidth / 2;

Completed in 956 milliseconds