Home
last modified time | relevance | path

Searched refs:yv12 (Results 1 – 7 of 7) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
Dvp9_iface_common.h13 static void yuvconfig2image(vpx_image_t *img, const YV12_BUFFER_CONFIG *yv12, in yuvconfig2image() argument
20 if (yv12->uv_height == yv12->y_height) { in yuvconfig2image()
21 if (yv12->uv_width == yv12->y_width) { in yuvconfig2image()
31 img->w = yv12->y_stride; in yuvconfig2image()
32 img->h = ALIGN_POWER_OF_TWO(yv12->y_height + 2 * VP9_ENC_BORDER_IN_PIXELS, 3); in yuvconfig2image()
33 img->d_w = yv12->y_crop_width; in yuvconfig2image()
34 img->d_h = yv12->y_crop_height; in yuvconfig2image()
35 img->x_chroma_shift = yv12->uv_width < yv12->y_width; in yuvconfig2image()
36 img->y_chroma_shift = yv12->uv_height < yv12->y_height; in yuvconfig2image()
37 img->planes[VPX_PLANE_Y] = yv12->y_buffer; in yuvconfig2image()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
Dvp8_dx_iface.c286 const YV12_BUFFER_CONFIG *yv12, in yuvconfig2image() argument
294 img->w = yv12->y_stride; in yuvconfig2image()
295 img->h = (yv12->y_height + 2 * VP8BORDERINPIXELS + 15) & ~15; in yuvconfig2image()
296 img->d_w = yv12->y_width; in yuvconfig2image()
297 img->d_h = yv12->y_height; in yuvconfig2image()
300 img->planes[VPX_PLANE_Y] = yv12->y_buffer; in yuvconfig2image()
301 img->planes[VPX_PLANE_U] = yv12->u_buffer; in yuvconfig2image()
302 img->planes[VPX_PLANE_V] = yv12->v_buffer; in yuvconfig2image()
304 img->stride[VPX_PLANE_Y] = yv12->y_stride; in yuvconfig2image()
305 img->stride[VPX_PLANE_U] = yv12->uv_stride; in yuvconfig2image()
[all …]
Dvp8_cx_iface.c679 YV12_BUFFER_CONFIG *yv12) in image2yuvconfig() argument
682 yv12->y_buffer = img->planes[VPX_PLANE_Y]; in image2yuvconfig()
683 yv12->u_buffer = img->planes[VPX_PLANE_U]; in image2yuvconfig()
684 yv12->v_buffer = img->planes[VPX_PLANE_V]; in image2yuvconfig()
686 yv12->y_crop_width = img->d_w; in image2yuvconfig()
687 yv12->y_crop_height = img->d_h; in image2yuvconfig()
688 yv12->y_width = img->d_w; in image2yuvconfig()
689 yv12->y_height = img->d_h; in image2yuvconfig()
690 yv12->uv_width = (1 + yv12->y_width) / 2; in image2yuvconfig()
691 yv12->uv_height = (1 + yv12->y_height) / 2; in image2yuvconfig()
[all …]
/hardware/intel/common/libva/test/videoprocess/
Dprocess.cfg2 # This application will firstly loads frames(yv12 format in file) to one type of
4 #(NV12/YV12/I420 surface) will be stored to frames(yv12 format in file).
12 SRC_FILE_NAME: /root/clips/YUV/bus_cif.yv12
18 DST_FILE_NAME: ./bus_cif_deinterlacing.yv12
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_encodeframe.c119 const YV12_BUFFER_CONFIG *yv12 = get_ref_frame_buffer(cpi, LAST_FRAME); in get_sby_perpixel_diff_variance() local
120 int offset = (mi_row * MI_SIZE) * yv12->y_stride + (mi_col * MI_SIZE); in get_sby_perpixel_diff_variance()
124 yv12->y_buffer + offset, in get_sby_perpixel_diff_variance()
125 yv12->y_stride, in get_sby_perpixel_diff_variance()
486 const YV12_BUFFER_CONFIG *yv12 = get_ref_frame_buffer(cpi, LAST_FRAME); in choose_partitioning() local
501 vp9_setup_pre_planes(xd, 0, yv12, mi_row, mi_col, sf); in choose_partitioning()
Dvp9_rdopt.c2327 const YV12_BUFFER_CONFIG *yv12 = get_ref_frame_buffer(cpi, ref_frame); in vp9_setup_buffer_inter() local
2335 setup_pred_block(xd, yv12_mb[ref_frame], yv12, mi_row, mi_col, sf, sf); in vp9_setup_buffer_inter()
2349 mv_pred(cpi, x, yv12_mb[ref_frame][0].buf, yv12->y_stride, in vp9_setup_buffer_inter()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
DCHANGELOG425 * For raw I420/YV12 output instead of Y4M, the --i420 or --yv12