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

  /external/libvpx/libvpx/test/
util.h 36 int64_t d = img1->planes[VPX_PLANE_Y][i * img1->stride[VPX_PLANE_Y] + j] -
37 img2->planes[VPX_PLANE_Y][i * img2->stride[VPX_PLANE_Y] + j];
encode_test_driver.cc 117 match = (memcmp(img1->planes[VPX_PLANE_Y] + i * img1->stride[VPX_PLANE_Y],
118 img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y],
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 37 img->planes[VPX_PLANE_Y] = yv12->y_buffer;
41 img->stride[VPX_PLANE_Y] = yv12->y_stride;
54 yv12->y_buffer = img->planes[VPX_PLANE_Y];
72 yv12->y_stride = img->stride[VPX_PLANE_Y];
76 yv12->border = (img->stride[VPX_PLANE_Y] - img->w) / 2;
  /external/libvpx/libvpx/vpx/src/
vpx_image.c 166 img->stride[VPX_PLANE_Y] = img->stride[VPX_PLANE_ALPHA] = s;
221 img->planes[VPX_PLANE_Y] = data + x + y * img->stride[VPX_PLANE_Y];
222 data += img->h * img->stride[VPX_PLANE_Y];
256 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y];
257 img->stride[VPX_PLANE_Y] = -img->stride[VPX_PLANE_Y];
  /external/chromium_org/media/cast/video_receiver/codecs/vp8/
vp8_decoder.cc 75 gfx::Size full_size(img->stride[VPX_PLANE_Y], img->d_h);
85 CopyPlane(VideoFrame::kYPlane, img->planes[VPX_PLANE_Y],
86 img->stride[VPX_PLANE_Y], img->d_h, decoded_frame.get());
  /external/libvpx/libvpx/vpx/
vpx_image.h 116 #define VPX_PLANE_Y 0 /**< Y (Luminance) plane */
122 #define PLANE_Y VPX_PLANE_Y
  /external/chromium_org/media/cdm/ppapi/
libvpx_cdm_video_decoder.cc 149 const int y_size = vpx_image_->stride[VPX_PLANE_Y] * vpx_image_->d_h;
164 vpx_image_->planes[VPX_PLANE_Y],
186 vpx_image_->stride[VPX_PLANE_Y]);
  /external/chromium_org/media/filters/
vpx_video_decoder.cc 352 CopyYPlane(vpx_image->planes[VPX_PLANE_Y],
353 vpx_image->stride[VPX_PLANE_Y],
368 vpx_image->stride[VPX_PLANE_Y], vpx_image->d_h, video_frame->get());
371 CopyAPlane(vpx_image_alpha->planes[VPX_PLANE_Y],
372 vpx_image->stride[VPX_PLANE_Y],
  /external/libvpx/libvpx/
vp8_multi_resolution_encoder.c 332 if (raw[0].stride[VPX_PLANE_Y] == raw[0].d_w)
391 I420Scale(raw[i-1].planes[VPX_PLANE_Y], raw[i-1].stride[VPX_PLANE_Y],
395 raw[i].planes[VPX_PLANE_Y], raw[i].stride[VPX_PLANE_Y],
vpxenc.c 929 if (*(img1->planes[VPX_PLANE_Y] +
930 (i + k) * img1->stride[VPX_PLANE_Y] + j + l) !=
931 *(img2->planes[VPX_PLANE_Y] +
932 (i + k) * img2->stride[VPX_PLANE_Y] + j + l)) {
935 yloc[2] = *(img1->planes[VPX_PLANE_Y] +
936 (i + k) * img1->stride[VPX_PLANE_Y] + j + l);
937 yloc[3] = *(img2->planes[VPX_PLANE_Y] +
938 (i + k) * img2->stride[VPX_PLANE_Y] + j + l);
    [all...]
vpxdec.c 1049 I420Scale(img->planes[VPX_PLANE_Y], img->stride[VPX_PLANE_Y],
1053 scaled_img->planes[VPX_PLANE_Y],
1054 scaled_img->stride[VPX_PLANE_Y],
    [all...]
  /external/chromium_org/media/webm/chromeos/
webm_encoder.cc 128 image.planes[VPX_PLANE_Y], image.stride[VPX_PLANE_Y],
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 298 img->planes[VPX_PLANE_Y] = yv12->y_buffer;
302 img->stride[VPX_PLANE_Y] = yv12->y_stride;
708 yv12->y_buffer = img->planes[VPX_PLANE_Y];
719 yv12->y_stride = img->stride[VPX_PLANE_Y];
722 yv12->border = (img->stride[VPX_PLANE_Y] - img->d_w) / 2;
vp8_cx_iface.c 680 yv12->y_buffer = img->planes[VPX_PLANE_Y];
691 yv12->y_stride = img->stride[VPX_PLANE_Y];
694 yv12->border = (img->stride[VPX_PLANE_Y] - img->w) / 2;
    [all...]
  /external/chromium_org/media/cast/video_sender/codecs/vp8/
vp8_encoder.cc 135 raw_image_->stride[VPX_PLANE_Y] = video_frame->stride(VideoFrame::kYPlane);

Completed in 45 milliseconds