/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/ |
D | yv12extend.c | 59 assert(ybf->y_height - ybf->y_crop_height < 16); in vp8_yv12_extend_frame_borders_c() 61 assert(ybf->y_height - ybf->y_crop_height >= 0); in vp8_yv12_extend_frame_borders_c() 67 ybf->border + ybf->y_height - ybf->y_crop_height, in vp8_yv12_extend_frame_borders_c() 73 (ybf->border + ybf->y_height - ybf->y_crop_height + 1) / 2, in vp8_yv12_extend_frame_borders_c() 79 (ybf->border + ybf->y_height - ybf->y_crop_height + 1) / 2, in vp8_yv12_extend_frame_borders_c() 93 assert(ybf->y_height - ybf->y_crop_height < 16); in extend_frame() 95 assert(ybf->y_height - ybf->y_crop_height >= 0); in extend_frame() 101 ext_size + ybf->y_height - ybf->y_crop_height, in extend_frame() 136 assert(src_ybc->y_height == dst_ybc->y_height); in vp8_yv12_copy_frame_c() 139 for (row = 0; row < src_ybc->y_height; ++row) { in vp8_yv12_copy_frame_c() [all …]
|
D | vpx_scale.c | 492 int dh = (vscale - 1 + src->y_height * vratio) / vscale; in vpx_scale_frame() 495 Scale2D((unsigned char *) src->y_buffer, src->y_stride, src->y_width, src->y_height, in vpx_scale_frame() 503 if (dh < (int)dst->y_height) in vpx_scale_frame() 504 for (i = dh - 1; i < (int)dst->y_height; i++) in vpx_scale_frame() 516 for (i = dh / 2 - 1; i < (int)dst->y_height / 2; i++) in vpx_scale_frame() 528 for (i = dh / 2 - 1; i < (int)dst->y_height / 2; i++) in vpx_scale_frame()
|
D | yv12config.c | 83 ybf->y_height = aligned_height; in vp8_yv12_realloc_frame_buffer() 246 ybf->y_height = aligned_height; in vp9_realloc_frame_buffer()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/ |
D | vp9_iface_common.h | 20 if (yv12->uv_height == yv12->y_height) { in yuvconfig2image() 32 img->h = ALIGN_POWER_OF_TWO(yv12->y_height + 2 * VP9_ENC_BORDER_IN_PIXELS, 3); in yuvconfig2image() 36 img->y_chroma_shift = yv12->uv_height < yv12->y_height; in yuvconfig2image() 63 yv12->y_height = img->d_h; in image2yuvconfig() 67 yv12->uv_height = img->y_chroma_shift == 1 ? (1 + yv12->y_height) / 2 in image2yuvconfig() 68 : yv12->y_height; in image2yuvconfig() 82 yv12->alpha_height = yv12->y_height; in image2yuvconfig()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_extend.c | 69 const int er_y = MAX(ALIGN_POWER_OF_TWO(src->y_height, 6) - src->y_height, in vp9_copy_and_extend_frame() 72 const int uv_height_subsampling = (src->uv_height != src->y_height); in vp9_copy_and_extend_frame() 79 const int et_a = dst->border >> (dst->alpha_height != dst->y_height); in vp9_copy_and_extend_frame() 92 src->y_width, src->y_height, in vp9_copy_and_extend_frame() 113 const int eb_y = srcy + srch != src->y_height ? 0 : in vp9_copy_and_extend_frame_with_rect() 114 dst->border + dst->y_height - src->y_height; in vp9_copy_and_extend_frame_with_rect()
|
D | vp9_lookahead.c | 98 int mb_rows = (src->y_height + 15) >> 4; in vp9_lookahead_push()
|
D | vp9_onyx_if.c | 1698 const int heights[3] = {a->y_height, a->uv_height, a->uv_height}; in calc_psnr() 1812 int h = s->y_height; in vp9_write_yuv_frame() 1981 for (i = 0; i < frame->y_height; i++) in write_cx_frame_to_file() 2555 cm->mi_rows * MI_SIZE != cpi->un_scaled_source->y_height) { 2566 cm->mi_rows * MI_SIZE != cpi->unscaled_last_source->y_height) { 2909 const int subsampling_y = sd->uv_height < sd->y_height; 3335 dest->y_height = cm->height; 3487 for (i = 0; i < source->y_height; i += 16) {
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
D | extend.c | 80 int eb = dst->border + dst->y_height - src->y_height; in vp8_copy_and_extend_frame() 85 src->y_height, src->y_width, in vp8_copy_and_extend_frame() 112 int eb = dst->border + dst->y_height - src->y_height; in vp8_copy_and_extend_frame_with_rect() 124 if (srcy + srch != src->y_height) in vp8_copy_and_extend_frame_with_rect()
|
D | postproc.c | 316 vp8_mbpost_proc_across_ip(post->y_buffer, post->y_stride, post->y_height, in vp8_de_mblock() 318 vp8_mbpost_proc_down(post->y_buffer, post->y_stride, post->y_height, in vp8_de_mblock() 397 int mb_cols = source->y_height >> 4; in vp8_de_noise() 736 dest->y_height = oci->Height; in vp8_post_proc_frame() 737 dest->uv_height = dest->y_height / 2; in vp8_post_proc_frame() 830 oci->post_proc_buffer.y_width, oci->post_proc_buffer.y_height, in vp8_post_proc_frame() 853 int mb_rows = post->y_height >> 4; in vp8_post_proc_frame() 885 int mb_rows = post->y_height >> 4; in vp8_post_proc_frame() 930 int height = post->y_height; in vp8_post_proc_frame() 1087 int height = post->y_height; in vp8_post_proc_frame() [all …]
|
D | setupintrarecon.c | 21 for (i = 0; i < ybf->y_height; i++) in vp8_setup_intra_recon()
|
D | loopfilter.c | 568 int mb_rows = post->y_height >> 4; in vp8_loop_filter_partial_frame() 593 y_ptr = post->y_buffer + ((post->y_height >> 5) * 16) * post->y_stride; in vp8_loop_filter_partial_frame() 594 mode_info_context = cm->mi + (post->y_height >> 5) * (mb_cols + 1); in vp8_loop_filter_partial_frame()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/mips/dspr2/ |
D | yv12extend_dspr2.c | 118 assert(ybf->y_height - ybf->y_crop_height < 16); in extend_frame() 120 assert(ybf->y_height - ybf->y_crop_height >= 0); in extend_frame() 126 ext_size + ybf->y_height - ybf->y_crop_height, in extend_frame()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
D | vp9_postproc.c | 298 source->y_height, source->y_width, ppl); in deblock_and_de_macro_block() 300 vp9_mbpost_proc_across_ip(post->y_buffer, post->y_stride, post->y_height, in deblock_and_de_macro_block() 303 vp9_mbpost_proc_down(post->y_buffer, post->y_stride, post->y_height, in deblock_and_de_macro_block() 326 const int src_heights[4] = {src->y_height, src->uv_height, src->uv_height, in vp9_deblock() 352 const int src_heights[4] = {src->y_height, src->uv_height, src->uv_height, in vp9_denoise() 643 ppbuf->y_width, ppbuf->y_height, ppbuf->y_stride); in vp9_post_proc_frame() 663 int mb_rows = ppbuf->y_height >> 4; in vp9_post_proc_frame() 690 int mb_rows = ppbuf->y_height >> 4; in vp9_post_proc_frame() 731 int height = ppbuf->y_height; in vp9_post_proc_frame() 873 int height = ppbuf->y_height; in vp9_post_proc_frame() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
D | vp9_decoder.c | 79 for (i = 0; i < frame->y_height; i++) in write_dx_frame_to_file() 181 return a->y_height == b->y_height && a->y_width == b->y_width && in equal_dimensions() 430 sd->y_height = pbi->common.height; in vp9_get_raw_frame() 432 sd->uv_height = sd->y_height >> pbi->common.subsampling_y; in vp9_get_raw_frame()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | picklpf.c | 35 yheight = src_ybc->y_height; in vp8_yv12_copy_partial_frame_c() 67 linestocopy = (source->y_height >> 4) / PARTIAL_FRAME_FRACTION; in calc_partial_ssl_err() 72 srcoffset = source->y_stride * ((dest->y_height >> 5) * 16); in calc_partial_ssl_err() 73 dstoffset = dest->y_stride * ((dest->y_height >> 5) * 16); in calc_partial_ssl_err()
|
D | ssim.c | 187 source->y_height); in vp8_calc_ssim() 218 source->y_height); in vp8_calc_ssimg()
|
D | lookahead.c | 113 int mb_rows = (src->y_height + 15) >> 4; in vp8_lookahead_push()
|
D | onyx_if.c | 1716 (uint32_t)(cm->yv12_fb[cm->lst_fb_idx].y_height) || in vp8_change_config() 2174 lst_yv12->y_width * lst_yv12->y_height; in vp8_remove_compressor() 2196 lst_yv12->y_width * lst_yv12->y_height; in vp8_remove_compressor() 2616 int h = s->y_height; in vp8_write_yuv_frame() 3016 for (i = 0; i < frame->y_height; i++) 3888 src += cpi->Source->y_stride * (cpi->Source->y_height - 1); in encode_frame_to_data_rate() 4851 if (sd->y_width != cpi->oxcf.Width || sd->y_height != cpi->oxcf.Height) in vp8_receive_raw_frame() 5277 int y_samples = orig->y_height * orig->y_width ; in vp8_get_compressed_data() 5283 recon->y_buffer, recon->y_stride, orig->y_width, orig->y_height); in vp8_get_compressed_data() 5310 pp->y_buffer, pp->y_stride, orig->y_width, orig->y_height); in vp8_get_compressed_data() [all …]
|
D | firstpass.c | 324 i = source->y_height; in simple_weight() 337 sum_weights /= (source->y_height * source->y_width); in simple_weight() 3093 if ((lst_yv12->y_width * lst_yv12->y_height) > (320 * 240)) in find_next_key_frame() 3094 kf_boost += 2 * (lst_yv12->y_width * lst_yv12->y_height) / (320 * 240); in find_next_key_frame() 3095 else if ((lst_yv12->y_width * lst_yv12->y_height) < (320 * 240)) in find_next_key_frame() 3096 kf_boost -= 4 * (320 * 240) / (lst_yv12->y_width * lst_yv12->y_height); in find_next_key_frame()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/ |
D | onyxd_if.c | 127 if(cm->yv12_fb[ref_fb_idx].y_height != sd->y_height || in vp8dx_get_reference() 159 if(cm->yv12_fb[*ref_fb_ptr].y_height != sd->y_height || in vp8dx_set_reference() 443 sd->y_height = pbi->common.Height; in vp8dx_get_raw_frame()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/neon/ |
D | picklpf_arm.c | 28 yheight = src_ybc->y_height; in vp8_yv12_copy_partial_frame_neon()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/ |
D | vpx_scale_asm_offsets.c | 21 DEFINE(yv12_buffer_config_y_height, offsetof(YV12_BUFFER_CONFIG, y_height));
|
D | yv12config.h | 29 int y_height; member
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/ |
D | vp8_dx_iface.c | 295 img->h = (yv12->y_height + 2 * VP8BORDERINPIXELS + 15) & ~15; in yuvconfig2image() 297 img->d_h = yv12->y_height; in yuvconfig2image() 717 yv12->y_height = img->d_h; in image2yuvconfig() 719 yv12->uv_height = yv12->y_height / 2; in image2yuvconfig()
|
D | vp8_cx_iface.c | 689 yv12->y_height = img->d_h; in image2yuvconfig() 691 yv12->uv_height = (1 + yv12->y_height) / 2; in image2yuvconfig() 1082 ctx->preview_img.d_h = sd.y_height; in vp8e_get_preview() 1087 ctx->preview_img.h = sd.y_height; in vp8e_get_preview()
|