Home
last modified time | relevance | path

Searched refs:VPX_PLANE_Y (Results 1 – 10 of 10) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dutil.h35 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()
Dencode_test_driver.cc117 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/
Dvp9_iface_common.h37 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/
Dvpx_image.c166 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/
Dvpx_image.h116 #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/
Dvp8_multi_resolution_encoder.c318 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/
Dvpxenc.c489 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 …]
Dvpxdec.c125 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/
Dvp8_dx_iface.c300 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()
Dvp8_cx_iface.c682 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()