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

  /external/libvpx/libvpx/vpx/src/
vpx_image.c 167 img->stride[VPX_PLANE_U] = img->stride[VPX_PLANE_V] = s >> xcs;
225 img->planes[VPX_PLANE_U] = data
227 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
228 data += (img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
237 img->planes[VPX_PLANE_U] = data
239 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
259 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1)
260 * img->stride[VPX_PLANE_U];
261 img->stride[VPX_PLANE_U] = -img->stride[VPX_PLANE_U];
    [all...]
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 38 img->planes[VPX_PLANE_U] = yv12->u_buffer;
42 img->stride[VPX_PLANE_U] = yv12->uv_stride;
55 yv12->u_buffer = img->planes[VPX_PLANE_U];
73 yv12->uv_stride = img->stride[VPX_PLANE_U];
  /external/libvpx/libvpx/vpx/
vpx_image.h 117 #define VPX_PLANE_U 1 /**< U (Chroma) plane */
123 #define PLANE_U VPX_PLANE_U
  /external/chromium_org/media/cdm/ppapi/
libvpx_cdm_video_decoder.cc 151 const int u_size = vpx_image_->stride[VPX_PLANE_U] * uv_rows;
167 vpx_image_->planes[VPX_PLANE_U],
188 vpx_image_->stride[VPX_PLANE_U]);
  /external/libvpx/libvpx/test/
encode_test_driver.cc 123 match = (memcmp(img1->planes[VPX_PLANE_U] + i * img1->stride[VPX_PLANE_U],
124 img2->planes[VPX_PLANE_U] + i * img2->stride[VPX_PLANE_U],
  /external/libvpx/libvpx/
vp8_multi_resolution_encoder.c 116 ptr = img->planes[img->fmt==VPX_IMG_FMT_YV12? VPX_PLANE_V : VPX_PLANE_U];
119 ptr = img->planes[img->fmt==VPX_IMG_FMT_YV12?VPX_PLANE_U : VPX_PLANE_V];
392 raw[i-1].planes[VPX_PLANE_U], raw[i-1].stride[VPX_PLANE_U],
396 raw[i].planes[VPX_PLANE_U], raw[i].stride[VPX_PLANE_U],
vpxenc.c 183 ptr = img->planes[img->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_V : VPX_PLANE_U];
186 ptr = img->planes[img->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_U : VPX_PLANE_V];
    [all...]
vpxdec.c 1050 img->planes[VPX_PLANE_U], img->stride[VPX_PLANE_U],
1055 scaled_img->planes[VPX_PLANE_U],
1056 scaled_img->stride[VPX_PLANE_U],
    [all...]
vp9_spatial_scalable_encoder.c 136 ptr = img->planes[VPX_PLANE_U];
  /external/chromium_org/media/filters/
vpx_video_decoder.cc 350 CopyUPlane(vpx_image->planes[VPX_PLANE_U],
351 vpx_image->stride[VPX_PLANE_U],
  /external/chromium_org/media/webm/chromeos/
webm_encoder.cc 129 image.planes[VPX_PLANE_U], image.stride[VPX_PLANE_U],
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 299 img->planes[VPX_PLANE_U] = yv12->u_buffer;
303 img->stride[VPX_PLANE_U] = yv12->uv_stride;
709 yv12->u_buffer = img->planes[VPX_PLANE_U];
720 yv12->uv_stride = img->stride[VPX_PLANE_U];
vp8_cx_iface.c 681 yv12->u_buffer = img->planes[VPX_PLANE_U];
692 yv12->uv_stride = img->stride[VPX_PLANE_U];
    [all...]

Completed in 4047 milliseconds