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

  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
convert_to_argb.cc 43 const uint8* src_uv; local
187 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
189 src_uv, aligned_src_width,
195 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
198 src_uv, aligned_src_width,
210 // src_uv = sample + (src_width + aligned_src_width * 2) * crop_y +
213 // src_uv, src_width * 3,
convert_to_i420.cc 42 const uint8* src_uv; local
221 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
223 src_uv, aligned_src_width,
231 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
234 src_uv, aligned_src_width,
250 src_uv = sample + (src_width + aligned_src_width * 2) * crop_y +
253 src_uv, src_width * 3,
  /external/chromium_org/third_party/libyuv/source/
convert_to_argb.cc 43 const uint8* src_uv; local
187 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
189 src_uv, aligned_src_width,
195 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
198 src_uv, aligned_src_width,
210 // src_uv = sample + (src_width + aligned_src_width * 2) * crop_y +
213 // src_uv, src_width * 3,
convert_to_i420.cc 42 const uint8* src_uv; local
221 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
223 src_uv, aligned_src_width,
231 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
234 src_uv, aligned_src_width,
250 src_uv = sample + (src_width + aligned_src_width * 2) * crop_y +
253 src_uv, src_width * 3,
  /external/chromium_org/third_party/libyuv/unit_test/
convert_test.cc 300 align_buffer_64(src_uv, 2 * SUBSAMPLE(kWidth, SRC_SUBSAMP_X) * \
322 src_uv[(i * 2 * SUBSAMPLE(kWidth, SRC_SUBSAMP_X)) + j + OFF] = \
338 src_uv + OFF, \
347 src_uv + OFF, \
399 free_aligned_buffer_64(src_uv); \
1173 uint8* src_uv = src_y + kWidth * kHeight; local
    [all...]
  /external/chromium_org/content/common/gpu/media/
vaapi_h264_decoder_unittest.cc 214 uint8_t* src_uv = mem_byte_ptr + image->offsets[1]; local
227 src_uv,
  /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 337 milliseconds