Searched refs:VPX_PLANE_Y (Results 1 – 10 of 10) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
D | util.h | 35 int64_t d = img1->planes[VPX_PLANE_Y][i * img1->stride[VPX_PLANE_Y] + j] - in compute_psnr() 36 img2->planes[VPX_PLANE_Y][i * img2->stride[VPX_PLANE_Y] + j]; in compute_psnr()
|
D | encode_test_driver.cc | 117 match = (memcmp(img1->planes[VPX_PLANE_Y] + i * img1->stride[VPX_PLANE_Y], in compare_img() 118 img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y], in compare_img()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/ |
D | vp9_iface_common.h | 37 img->planes[VPX_PLANE_Y] = yv12->y_buffer; in yuvconfig2image() 41 img->stride[VPX_PLANE_Y] = yv12->y_stride; in yuvconfig2image() 55 yv12->y_buffer = img->planes[VPX_PLANE_Y]; in image2yuvconfig() 73 yv12->y_stride = img->stride[VPX_PLANE_Y]; in image2yuvconfig() 77 yv12->border = (img->stride[VPX_PLANE_Y] - img->w) / 2; in image2yuvconfig()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/ |
D | vpx_image.c | 166 img->stride[VPX_PLANE_Y] = img->stride[VPX_PLANE_ALPHA] = s; in img_alloc_helper() 221 img->planes[VPX_PLANE_Y] = data + x + y * img->stride[VPX_PLANE_Y]; in vpx_img_set_rect() 222 data += img->h * img->stride[VPX_PLANE_Y]; in vpx_img_set_rect() 256 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y]; in vpx_img_flip() 257 img->stride[VPX_PLANE_Y] = -img->stride[VPX_PLANE_Y]; in vpx_img_flip()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/ |
D | vpx_image.h | 116 #define VPX_PLANE_Y 0 /**< Y (Luminance) plane */ macro 122 #define PLANE_Y VPX_PLANE_Y
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
D | vp8_multi_resolution_encoder.c | 318 if (raw[0].stride[VPX_PLANE_Y] == raw[0].d_w) in main() 377 I420Scale(raw[i-1].planes[VPX_PLANE_Y], raw[i-1].stride[VPX_PLANE_Y], in main() 381 raw[i].planes[VPX_PLANE_Y], raw[i].stride[VPX_PLANE_Y], in main()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
D | vpxenc.c | 489 if (*(img1->planes[VPX_PLANE_Y] + in find_mismatch() 490 (i + k) * img1->stride[VPX_PLANE_Y] + j + l) != in find_mismatch() 491 *(img2->planes[VPX_PLANE_Y] + in find_mismatch() 492 (i + k) * img2->stride[VPX_PLANE_Y] + j + l)) { in find_mismatch() 495 yloc[2] = *(img1->planes[VPX_PLANE_Y] + in find_mismatch() 496 (i + k) * img1->stride[VPX_PLANE_Y] + j + l); in find_mismatch() 497 yloc[3] = *(img2->planes[VPX_PLANE_Y] + in find_mismatch() 498 (i + k) * img2->stride[VPX_PLANE_Y] + j + l); in find_mismatch() 573 match &= (memcmp(img1->planes[VPX_PLANE_Y] + i * img1->stride[VPX_PLANE_Y], in compare_img() 574 img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y], in compare_img() [all …]
|
D | vpxdec.c | 125 return I420Scale(src->planes[VPX_PLANE_Y], src->stride[VPX_PLANE_Y], in vpx_image_scale() 129 dst->planes[VPX_PLANE_Y], dst->stride[VPX_PLANE_Y], in vpx_image_scale() 842 const int PLANES_YUV[] = {VPX_PLANE_Y, VPX_PLANE_U, VPX_PLANE_V}; in main_loop() 843 const int PLANES_YVU[] = {VPX_PLANE_Y, VPX_PLANE_V, VPX_PLANE_U}; in main_loop()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/ |
D | vp8_dx_iface.c | 300 img->planes[VPX_PLANE_Y] = yv12->y_buffer; in yuvconfig2image() 304 img->stride[VPX_PLANE_Y] = yv12->y_stride; in yuvconfig2image() 710 yv12->y_buffer = img->planes[VPX_PLANE_Y]; in image2yuvconfig() 721 yv12->y_stride = img->stride[VPX_PLANE_Y]; in image2yuvconfig() 724 yv12->border = (img->stride[VPX_PLANE_Y] - img->d_w) / 2; in image2yuvconfig()
|
D | vp8_cx_iface.c | 682 yv12->y_buffer = img->planes[VPX_PLANE_Y]; in image2yuvconfig() 693 yv12->y_stride = img->stride[VPX_PLANE_Y]; in image2yuvconfig() 696 yv12->border = (img->stride[VPX_PLANE_Y] - img->w) / 2; in image2yuvconfig() 1073 ctx->preview_img.planes[VPX_PLANE_Y] = sd.y_buffer; in vp8e_get_preview() 1083 ctx->preview_img.stride[VPX_PLANE_Y] = sd.y_stride; in vp8e_get_preview()
|