HomeSort by relevance Sort by last modified time
    Searched refs:VPX_PLANE_V (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;
254 img->planes[VPX_PLANE_V] = data
256 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
258 img->planes[VPX_PLANE_V] = data
260 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
261 data += (img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
288 img->planes[VPX_PLANE_V] += (signed)((img->d_h >> img->y_chroma_shift) - 1)
289 * img->stride[VPX_PLANE_V];
290 img->stride[VPX_PLANE_V] = -img->stride[VPX_PLANE_V];
    [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;
229 img->planes[VPX_PLANE_V] = data
231 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
233 img->planes[VPX_PLANE_V] = data
235 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
236 data += (img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
263 img->planes[VPX_PLANE_V] += (signed)((img->d_h >> img->y_chroma_shift) - 1)
264 * img->stride[VPX_PLANE_V];
265 img->stride[VPX_PLANE_V] = -img->stride[VPX_PLANE_V];
    [all...]
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 43 img->planes[VPX_PLANE_V] = yv12->v_buffer;
47 img->stride[VPX_PLANE_V] = yv12->uv_stride;
60 yv12->v_buffer = img->planes[VPX_PLANE_V];
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vpx_image.h 118 #define VPX_PLANE_V 2 /**< V (Chroma) plane */
124 #define PLANE_V VPX_PLANE_V
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
vp9_iface_common.h 39 img->planes[VPX_PLANE_V] = yv12->v_buffer;
43 img->stride[VPX_PLANE_V] = yv12->uv_stride;
57 yv12->v_buffer = img->planes[VPX_PLANE_V];
  /external/libvpx/libvpx/vpx/
vpx_image.h 122 #define VPX_PLANE_V 2 /**< V (Chroma) plane */
128 #define PLANE_V VPX_PLANE_V
  /external/libvpx/libvpx/test/
encode_test_driver.cc 130 match = (memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V],
131 img2->planes[VPX_PLANE_V] + i * img2->stride[VPX_PLANE_V],
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
encode_test_driver.cc 127 match = (memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V],
128 img2->planes[VPX_PLANE_V] + i * img2->stride[VPX_PLANE_V],
  /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];
361 raw[i-1].planes[VPX_PLANE_V], raw[i-1].stride[VPX_PLANE_V],
365 raw[i].planes[VPX_PLANE_V], raw[i].stride[VPX_PLANE_V],
  /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];
379 raw[i-1].planes[VPX_PLANE_V], raw[i-1].stride[VPX_PLANE_V],
383 raw[i].planes[VPX_PLANE_V], raw[i].stride[VPX_PLANE_V],
  /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 521 if (*(img1->planes[VPX_PLANE_V] +
522 (i + k) * img1->stride[VPX_PLANE_V] + j + l) !=
523 *(img2->planes[VPX_PLANE_V] +
524 (i + k) * img2->stride[VPX_PLANE_V] + j + l)) {
527 vloc[2] = *(img1->planes[VPX_PLANE_V] +
528 (i + k) * img1->stride[VPX_PLANE_V] + j + l);
529 vloc[3] = *(img2->planes[VPX_PLANE_V] +
530 (i + k) * img2->stride[VPX_PLANE_V] + j + l);
564 match &= (memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V],
    [all...]
vpxdec.c 132 src->planes[VPX_PLANE_V], src->stride[VPX_PLANE_V],
136 dst->planes[VPX_PLANE_V], dst->stride[VPX_PLANE_V],
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 156 const uint8_t *srcV = (const uint8_t *)mImg->planes[VPX_PLANE_V];
159 size_t srcVStride = mImg->stride[VPX_PLANE_V];
  /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 540 if (*(img1->planes[VPX_PLANE_V] +
541 (i + k) * img1->stride[VPX_PLANE_V] + j + l) !=
542 *(img2->planes[VPX_PLANE_V] +
543 (i + k) * img2->stride[VPX_PLANE_V] + j + l)) {
546 vloc[2] = *(img1->planes[VPX_PLANE_V] +
547 (i + k) * img1->stride[VPX_PLANE_V] + j + l);
548 vloc[3] = *(img2->planes[VPX_PLANE_V] +
549 (i + k) * img2->stride[VPX_PLANE_V] + j + l);
583 match &= (memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V],
    [all...]
vpxdec.c 127 src->planes[VPX_PLANE_V], src->stride[VPX_PLANE_V],
131 dst->planes[VPX_PLANE_V], dst->stride[VPX_PLANE_V],
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 268 img->planes[VPX_PLANE_V] = yv12->v_buffer;
272 img->stride[VPX_PLANE_V] = yv12->uv_stride;
572 yv12->v_buffer = img->planes[VPX_PLANE_V];
vp8_cx_iface.c 740 yv12->v_buffer = img->planes[VPX_PLANE_V];
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
vp8_dx_iface.c 302 img->planes[VPX_PLANE_V] = yv12->v_buffer;
306 img->stride[VPX_PLANE_V] = yv12->uv_stride;
712 yv12->v_buffer = img->planes[VPX_PLANE_V];
vp8_cx_iface.c 684 yv12->v_buffer = img->planes[VPX_PLANE_V];
    [all...]

Completed in 604 milliseconds