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

  /external/libvpx/libvpx/vpx/src/
vpx_image.c 144 img->stride[VPX_PLANE_U] = img->stride[VPX_PLANE_V] = stride_in_bytes >> xcs;
200 img->planes[VPX_PLANE_V] =
202 (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
204 img->planes[VPX_PLANE_V] =
206 (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
207 data += (img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
232 img->planes[VPX_PLANE_V] += (signed)((img->d_h >> img->y_chroma_shift) - 1) *
233 img->stride[VPX_PLANE_V];
234 img->stride[VPX_PLANE_V] = -img->stride[VPX_PLANE_V];
    [all...]
  /external/libvpx/libvpx/examples/
vp9cx_set_ref.c 95 match &= (memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V],
96 img2->planes[VPX_PLANE_V] + i * img2->stride[VPX_PLANE_V],
174 if (*(img1->planes[VPX_PLANE_V] +
175 (i + k) * img1->stride[VPX_PLANE_V] + j + l) !=
176 *(img2->planes[VPX_PLANE_V] +
177 (i + k) * img2->stride[VPX_PLANE_V] + j + l)) {
180 vloc[2] = *(img1->planes[VPX_PLANE_V] +
181 (i + k) * img1->stride[VPX_PLANE_V] + j + l)
    [all...]
vp8_multi_resolution_encoder.c 95 ptr = img->planes[img->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_V
100 : VPX_PLANE_V];
554 raw[i - 1].planes[VPX_PLANE_V], raw[i - 1].stride[VPX_PLANE_V],
557 raw[i].stride[VPX_PLANE_U], raw[i].planes[VPX_PLANE_V],
558 raw[i].stride[VPX_PLANE_V], raw[i].d_w, raw[i].d_h, 1);
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 52 img->planes[VPX_PLANE_V] = yv12->v_buffer;
56 img->stride[VPX_PLANE_V] = yv12->uv_stride;
66 img->planes[VPX_PLANE_V] = (uint8_t *)CONVERT_TO_SHORTPTR(yv12->v_buffer);
70 img->stride[VPX_PLANE_V] = 2 * yv12->uv_stride;
85 yv12->v_buffer = img->planes[VPX_PLANE_V];
  /external/libvpx/libvpx/test/
encode_test_driver.cc 149 match = (memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V],
150 img2->planes[VPX_PLANE_V] + i * img2->stride[VPX_PLANE_V],
  /external/libvpx/libvpx/vpx/
vpx_image.h 114 #define VPX_PLANE_V 2 /**< V (Chroma) plane */
  /external/libvpx/libvpx/
vpxdec.c 139 (uint16_t *)src->planes[VPX_PLANE_V], src->stride[VPX_PLANE_V] / 2,
142 dst->stride[VPX_PLANE_U] / 2, (uint16_t *)dst->planes[VPX_PLANE_V],
143 dst->stride[VPX_PLANE_V] / 2, dst->d_w, dst->d_h, mode);
150 src->planes[VPX_PLANE_V], src->stride[VPX_PLANE_V], src->d_w,
153 dst->planes[VPX_PLANE_V], dst->stride[VPX_PLANE_V], dst->d_w,
865 const int PLANES_YUV[] = { VPX_PLANE_Y, VPX_PLANE_U, VPX_PLANE_V };
866 const int PLANES_YVU[] = { VPX_PLANE_Y, VPX_PLANE_V, VPX_PLANE_U }
    [all...]
vpxenc.c 676 plane1 = (uint16_t *)img1->planes[VPX_PLANE_V];
677 plane2 = (uint16_t *)img2->planes[VPX_PLANE_V];
678 stride1 = img1->stride[VPX_PLANE_V] / 2;
679 stride2 = img2->stride[VPX_PLANE_V] / 2;
774 if (*(img1->planes[VPX_PLANE_V] +
775 (i + k) * img1->stride[VPX_PLANE_V] + j + l) !=
776 *(img2->planes[VPX_PLANE_V] +
777 (i + k) * img2->stride[VPX_PLANE_V] + j + l)) {
780 vloc[2] = *(img1->planes[VPX_PLANE_V] +
781 (i + k) * img1->stride[VPX_PLANE_V] + j + l)
    [all...]
tools_common.c 97 yuv_frame->planes[yuv_frame->fmt == VPX_IMG_FMT_YV12 ? VPX_PLANE_V
103 : VPX_PLANE_V];
y4minput.c     [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
vp8_impl.cc 747 raw_images_[0].planes[VPX_PLANE_V] =
752 raw_images_[0].stride[VPX_PLANE_V] = input_image.stride(kVPlane);
761 raw_images_[i - 1].planes[VPX_PLANE_V],
762 raw_images_[i - 1].stride[VPX_PLANE_V], raw_images_[i - 1].d_w,
765 raw_images_[i].stride[VPX_PLANE_U], raw_images_[i].planes[VPX_PLANE_V],
766 raw_images_[i].stride[VPX_PLANE_V], raw_images_[i].d_w,
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/dec/
SoftVPX.cpp 175 const uint8_t *srcV = (const uint8_t *)mImg->planes[VPX_PLANE_V];
178 size_t srcVStride = mImg->stride[VPX_PLANE_V];
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 215 img->planes[VPX_PLANE_V] = yv12->v_buffer;
219 img->stride[VPX_PLANE_V] = yv12->uv_stride;
486 yv12->v_buffer = img->planes[VPX_PLANE_V];
vp8_cx_iface.c 694 yv12->v_buffer = img->planes[VPX_PLANE_V];
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
vp9_impl.cc 505 raw_->planes[VPX_PLANE_V] = const_cast<uint8_t*>(input_image.buffer(kVPlane));
508 raw_->stride[VPX_PLANE_V] = input_image.stride(kVPlane);
    [all...]
  /hardware/google/av/media/codecs/vpx/
C2SoftVpxDec.cpp 474 size_t srcVStride = img->stride[VPX_PLANE_V];
477 const uint8_t *srcV = (const uint8_t *)img->planes[VPX_PLANE_V];

Completed in 348 milliseconds