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

  /external/libvpx/libvpx/vpx/src/
vpx_image.c 192 img->stride[VPX_PLANE_U] = img->stride[VPX_PLANE_V] = s >> xcs;
250 img->planes[VPX_PLANE_U] = data
252 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
253 data += (img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
262 img->planes[VPX_PLANE_U] = data
264 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
284 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1)
285 * img->stride[VPX_PLANE_U];
286 img->stride[VPX_PLANE_U] = -img->stride[VPX_PLANE_U];
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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 42 img->planes[VPX_PLANE_U] = yv12->u_buffer;
46 img->stride[VPX_PLANE_U] = yv12->uv_stride;
59 yv12->u_buffer = img->planes[VPX_PLANE_U];
73 yv12->uv_stride = img->stride[VPX_PLANE_U];
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
vp9_iface_common.h 38 img->planes[VPX_PLANE_U] = yv12->u_buffer;
42 img->stride[VPX_PLANE_U] = yv12->uv_stride;
56 yv12->u_buffer = img->planes[VPX_PLANE_U];
74 yv12->uv_stride = img->stride[VPX_PLANE_U];
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vpx_image.h 117 #define VPX_PLANE_U 1 /**< U (Chroma) plane */
123 #define PLANE_U VPX_PLANE_U
  /external/libvpx/libvpx/vpx/
vpx_image.h 121 #define VPX_PLANE_U 1 /**< U (Chroma) plane */
127 #define PLANE_U VPX_PLANE_U
  /external/libvpx/libvpx/test/
encode_test_driver.cc 126 match = (memcmp(img1->planes[VPX_PLANE_U] + i * img1->stride[VPX_PLANE_U],
127 img2->planes[VPX_PLANE_U] + i * img2->stride[VPX_PLANE_U],
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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/examples/
vp8_multi_resolution_encoder.c 84 ptr = img->planes[img->fmt==VPX_IMG_FMT_YV12? VPX_PLANE_V : VPX_PLANE_U];
87 ptr = img->planes[img->fmt==VPX_IMG_FMT_YV12?VPX_PLANE_U : VPX_PLANE_V];
360 raw[i-1].planes[VPX_PLANE_U], raw[i-1].stride[VPX_PLANE_U],
364 raw[i].planes[VPX_PLANE_U], raw[i].stride[VPX_PLANE_U],
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
vp8_multi_resolution_encoder.c 102 ptr = img->planes[img->fmt==VPX_IMG_FMT_YV12? VPX_PLANE_V : VPX_PLANE_U];
105 ptr = img->planes[img->fmt==VPX_IMG_FMT_YV12?VPX_PLANE_U : VPX_PLANE_V];
378 raw[i-1].planes[VPX_PLANE_U], raw[i-1].stride[VPX_PLANE_U],
382 raw[i].planes[VPX_PLANE_U], raw[i].stride[VPX_PLANE_U],
  /external/libvpx/libvpx/
tools_common.c 101 yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_V : VPX_PLANE_U];
105 yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_U : VPX_PLANE_V];
vpxenc.c 496 if (*(img1->planes[VPX_PLANE_U] +
497 (i + k) * img1->stride[VPX_PLANE_U] + j + l) !=
498 *(img2->planes[VPX_PLANE_U] +
499 (i + k) * img2->stride[VPX_PLANE_U] + j + l)) {
502 uloc[2] = *(img1->planes[VPX_PLANE_U] +
503 (i + k) * img1->stride[VPX_PLANE_U] + j + l);
504 uloc[3] = *(img2->planes[VPX_PLANE_U] +
505 (i + k) * img2->stride[VPX_PLANE_U] + j + l);
559 match &= (memcmp(img1->planes[VPX_PLANE_U] + i * img1->stride[VPX_PLANE_U],
    [all...]
vpxdec.c 131 src->planes[VPX_PLANE_U], src->stride[VPX_PLANE_U],
135 dst->planes[VPX_PLANE_U], dst->stride[VPX_PLANE_U],
861 const int PLANES_YUV[] = {VPX_PLANE_Y, VPX_PLANE_U, VPX_PLANE_V};
862 const int PLANES_YVU[] = {VPX_PLANE_Y, VPX_PLANE_V, VPX_PLANE_U};
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/dec/
SoftVPX.cpp 155 const uint8_t *srcU = (const uint8_t *)mImg->planes[VPX_PLANE_U];
158 size_t srcUStride = mImg->stride[VPX_PLANE_U];
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
tools_common.c 100 yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_V : VPX_PLANE_U];
104 yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_U : VPX_PLANE_V];
vpxenc.c 515 if (*(img1->planes[VPX_PLANE_U] +
516 (i + k) * img1->stride[VPX_PLANE_U] + j + l) !=
517 *(img2->planes[VPX_PLANE_U] +
518 (i + k) * img2->stride[VPX_PLANE_U] + j + l)) {
521 uloc[2] = *(img1->planes[VPX_PLANE_U] +
522 (i + k) * img1->stride[VPX_PLANE_U] + j + l);
523 uloc[3] = *(img2->planes[VPX_PLANE_U] +
524 (i + k) * img2->stride[VPX_PLANE_U] + j + l);
578 match &= (memcmp(img1->planes[VPX_PLANE_U] + i * img1->stride[VPX_PLANE_U],
    [all...]
vpxdec.c 126 src->planes[VPX_PLANE_U], src->stride[VPX_PLANE_U],
130 dst->planes[VPX_PLANE_U], dst->stride[VPX_PLANE_U],
842 const int PLANES_YUV[] = {VPX_PLANE_Y, VPX_PLANE_U, VPX_PLANE_V};
843 const int PLANES_YVU[] = {VPX_PLANE_Y, VPX_PLANE_V, VPX_PLANE_U};
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 267 img->planes[VPX_PLANE_U] = yv12->u_buffer;
271 img->stride[VPX_PLANE_U] = yv12->uv_stride;
571 yv12->u_buffer = img->planes[VPX_PLANE_U];
582 yv12->uv_stride = img->stride[VPX_PLANE_U];
vp8_cx_iface.c 739 yv12->u_buffer = img->planes[VPX_PLANE_U];
750 yv12->uv_stride = img->stride[VPX_PLANE_U];
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
vp8_dx_iface.c 301 img->planes[VPX_PLANE_U] = yv12->u_buffer;
305 img->stride[VPX_PLANE_U] = yv12->uv_stride;
711 yv12->u_buffer = img->planes[VPX_PLANE_U];
722 yv12->uv_stride = img->stride[VPX_PLANE_U];
vp8_cx_iface.c 683 yv12->u_buffer = img->planes[VPX_PLANE_U];
694 yv12->uv_stride = img->stride[VPX_PLANE_U];
    [all...]

Completed in 360 milliseconds