/external/libvpx/libvpx/vp9/ |
D | vp9_iface_common.h | 15 static void yuvconfig2image(vpx_image_t *img, const YV12_BUFFER_CONFIG *yv12, in yuvconfig2image() argument 22 if (!yv12->subsampling_y) { in yuvconfig2image() 23 if (!yv12->subsampling_x) { in yuvconfig2image() 31 if (!yv12->subsampling_x) { in yuvconfig2image() 39 img->cs = yv12->color_space; in yuvconfig2image() 40 img->range = yv12->color_range; in yuvconfig2image() 42 img->w = yv12->y_stride; in yuvconfig2image() 43 img->h = ALIGN_POWER_OF_TWO(yv12->y_height + 2 * VP9_ENC_BORDER_IN_PIXELS, 3); in yuvconfig2image() 44 img->d_w = yv12->y_crop_width; in yuvconfig2image() 45 img->d_h = yv12->y_crop_height; in yuvconfig2image() [all …]
|
/external/libvpx/libvpx/vp8/ |
D | vp8_dx_iface.c | 201 static void yuvconfig2image(vpx_image_t *img, const YV12_BUFFER_CONFIG *yv12, in yuvconfig2image() argument 208 img->w = yv12->y_stride; in yuvconfig2image() 209 img->h = (yv12->y_height + 2 * VP8BORDERINPIXELS + 15) & ~15; in yuvconfig2image() 210 img->d_w = img->r_w = yv12->y_width; in yuvconfig2image() 211 img->d_h = img->r_h = yv12->y_height; in yuvconfig2image() 214 img->planes[VPX_PLANE_Y] = yv12->y_buffer; in yuvconfig2image() 215 img->planes[VPX_PLANE_U] = yv12->u_buffer; in yuvconfig2image() 216 img->planes[VPX_PLANE_V] = yv12->v_buffer; in yuvconfig2image() 218 img->stride[VPX_PLANE_Y] = yv12->y_stride; in yuvconfig2image() 219 img->stride[VPX_PLANE_U] = yv12->uv_stride; in yuvconfig2image() [all …]
|
D | vp8_cx_iface.c | 686 YV12_BUFFER_CONFIG *yv12) { in image2yuvconfig() argument 692 yv12->y_buffer = img->planes[VPX_PLANE_Y]; in image2yuvconfig() 693 yv12->u_buffer = img->planes[VPX_PLANE_U]; in image2yuvconfig() 694 yv12->v_buffer = img->planes[VPX_PLANE_V]; in image2yuvconfig() 696 yv12->y_crop_width = y_w; in image2yuvconfig() 697 yv12->y_crop_height = y_h; in image2yuvconfig() 698 yv12->y_width = y_w; in image2yuvconfig() 699 yv12->y_height = y_h; in image2yuvconfig() 700 yv12->uv_crop_width = uv_w; in image2yuvconfig() 701 yv12->uv_crop_height = uv_h; in image2yuvconfig() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_speed_features.c | 408 const YV12_BUFFER_CONFIG *yv12 = get_ref_frame_buffer(cpi, ref_frame); in set_rt_speed_feature_framesize_independent() local 409 if (yv12 != NULL && (cpi->ref_frame_flags & flag_list[ref_frame])) { in set_rt_speed_feature_framesize_independent()
|
D | vp9_pickmode.c | 1195 const YV12_BUFFER_CONFIG *yv12 = get_ref_frame_buffer(cpi, ref_frame); in find_predictors() local 1202 if ((cpi->ref_frame_flags & flag_list[ref_frame]) && (yv12 != NULL)) { in find_predictors() 1205 vp9_setup_pred_block(xd, yv12_mb[ref_frame], yv12, mi_row, mi_col, sf, sf); in find_predictors() 1221 vp9_mv_pred(cpi, x, yv12_mb[ref_frame][0].buf, yv12->y_stride, ref_frame, in find_predictors() 2294 const YV12_BUFFER_CONFIG *yv12 = get_ref_frame_buffer(cpi, ref_frame); in vp9_pick_inter_mode_sub8x8() local 2298 if ((cpi->ref_frame_flags & flag_list[ref_frame]) && (yv12 != NULL)) { in vp9_pick_inter_mode_sub8x8() 2301 vp9_setup_pred_block(xd, yv12_mb[ref_frame], yv12, mi_row, mi_col, sf, in vp9_pick_inter_mode_sub8x8()
|
D | vp9_encodeframe.c | 1130 YV12_BUFFER_CONFIG *yv12 = get_ref_frame_buffer(cpi, LAST_FRAME); in choose_partitioning() local 1137 assert(yv12 != NULL); in choose_partitioning() 1146 if (cpi->oxcf.speed < 8 && yv12_g && yv12_g != yv12 && in choose_partitioning() 1159 yv12 = get_ref_frame_buffer(cpi, ALTREF_FRAME); in choose_partitioning() 1160 vp9_setup_pre_planes(xd, 0, yv12, mi_row, mi_col, in choose_partitioning() 1165 vp9_setup_pre_planes(xd, 0, yv12, mi_row, mi_col, in choose_partitioning()
|
D | vp9_rdopt.c | 2291 const YV12_BUFFER_CONFIG *yv12 = get_ref_frame_buffer(cpi, ref_frame); in setup_buffer_inter() local 2298 assert(yv12 != NULL); in setup_buffer_inter() 2302 vp9_setup_pred_block(xd, yv12_mb[ref_frame], yv12, mi_row, mi_col, sf, sf); in setup_buffer_inter() 2317 vp9_mv_pred(cpi, x, yv12_mb[ref_frame][0].buf, yv12->y_stride, ref_frame, in setup_buffer_inter()
|
/external/libvpx/libvpx/ |
D | CHANGELOG | 511 * For raw I420/YV12 output instead of Y4M, the --i420 or --yv12
|