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

  /external/libvpx/libvpx/third_party/libyuv/source/
convert_to_argb.cc 42 const uint8* src_uv; local
156 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
158 src_uv, aligned_src_width,
164 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
167 src_uv, aligned_src_width,
convert_to_i420.cc 41 const uint8* src_uv; local
186 src_uv = sample + (src_width * src_height) +
189 src_uv, aligned_src_width,
197 src_uv = sample + (src_width * src_height) +
201 src_uv, aligned_src_width,
  /external/libyuv/files/source/
convert_to_argb.cc 42 const uint8* src_uv; local
156 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
158 src_uv, aligned_src_width,
164 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
167 src_uv, aligned_src_width,
convert_to_i420.cc 41 const uint8* src_uv; local
185 src_uv = sample + (src_width * src_height) +
188 src_uv, aligned_src_width,
196 src_uv = sample + (src_width * src_height) +
200 src_uv, aligned_src_width,
  /external/libyuv/files/unit_test/
convert_test.cc 291 align_buffer_page_end(src_uv, 2 * SUBSAMPLE(kWidth, SRC_SUBSAMP_X) * \
312 src_uv[(i * 2 * SUBSAMPLE(kWidth, SRC_SUBSAMP_X)) + j + OFF] = \
328 src_uv + OFF, \
337 src_uv + OFF, \
389 free_aligned_buffer_page_end(src_uv); \
1364 uint8* src_uv = src_y + kWidth * kHeight; local
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_video_toolbox_decoder.cc 62 const uint8_t* src_uv = reinterpret_cast<const uint8_t*>( local
66 src_y, src_y_stride, src_uv, src_uv_stride,
  /frameworks/av/media/libstagefright/colorconversion/
SoftwareRenderer.cpp 282 const uint8_t *src_uv = (const uint8_t *)data local
303 dst_u[x] = src_uv[2 * x];
304 dst_v[x] = src_uv[2 * x + 1];
307 src_uv += mWidth;
  /hardware/intel/img/psb_video/src/x11/
psb_x11.c 225 uint8_t *src_uv = surface_data + psb_surface->stride * (obj_surface->height + srcy / 2); local
239 int u = *(src_uv + x);
240 int v = *(src_uv + x + 1);
249 src_uv += psb_surface->stride;
  /hardware/intel/img/psb_video/src/
psb_output.c 911 unsigned char *src_y, *src_uv, *dst_y, *dst_uv; local
921 src_uv = surface_data + ((height + 0x1f) & (~0x1f)) * width;
928 src_y, src_uv, \
936 src_uv = surface_data + ((height + 2*32 + 63)/64*64) * ((width + 2*32 + 63)/64*64);
941 src_y, src_uv, \
959 src_uv = surface_data + psb_surface->stride * obj_surface->height + (y / 2) * psb_surface->stride + x;;
961 memcpy(dst_uv, src_uv, width);
963 src_uv += psb_surface->stride;
1056 unsigned char *source_y, *src_uv, *dst_y, *dst_uv; local
    [all...]

Completed in 510 milliseconds