/external/libvpx/libvpx/vp9/ |
H A D | vp9_iface_common.h | 20 if (yv12->uv_height == yv12->y_height) { 32 img->h = ALIGN_POWER_OF_TWO(yv12->y_height + 2 * VP9BORDERINPIXELS, 3); 36 img->y_chroma_shift = yv12->uv_height < yv12->y_height; 62 yv12->y_height = img->d_h; 66 yv12->uv_height = img->y_chroma_shift == 1 ? (1 + yv12->y_height) / 2 67 : yv12->y_height; 81 yv12->alpha_height = yv12->y_height;
|
/external/libvpx/libvpx/vpx_scale/generic/ |
H A D | yv12extend.c | 59 assert(ybf->y_height - ybf->y_crop_height < 16); 61 assert(ybf->y_height - ybf->y_crop_height >= 0); 67 ybf->border + ybf->y_height - ybf->y_crop_height, 73 (ybf->border + ybf->y_height - ybf->y_crop_height + 1) / 2, 79 (ybf->border + ybf->y_height - ybf->y_crop_height + 1) / 2, 91 const int c_eb = (ext_size + ybf->y_height - ybf->y_crop_height + 96 assert(ybf->y_height - ybf->y_crop_height < 16); 98 assert(ybf->y_height - ybf->y_crop_height >= 0); 104 ext_size + ybf->y_height - ybf->y_crop_height, 141 assert(src_ybc->y_height [all...] |
H A D | vpx_scale.c | 492 int dh = (vscale - 1 + src->y_height * vratio) / vscale; 495 Scale2D((unsigned char *) src->y_buffer, src->y_stride, src->y_width, src->y_height, 503 if (dh < (int)dst->y_height) 504 for (i = dh - 1; i < (int)dst->y_height; i++) 516 for (i = dh / 2 - 1; i < (int)dst->y_height / 2; i++) 528 for (i = dh / 2 - 1; i < (int)dst->y_height / 2; i++)
|
H A D | yv12config.c | 72 ybf->y_height = aligned_height; 173 ybf->y_height = aligned_height;
|
/external/libvpx/libvpx/vp8/encoder/arm/neon/ |
H A D | picklpf_arm.c | 28 yheight = src_ybc->y_height;
|
/external/libvpx/libvpx/vp9/common/ |
H A D | vp9_extend.c | 69 const int er_y = MAX(ALIGN_POWER_OF_TWO(src->y_height, 6) - src->y_height, 72 const int uv_height_subsampling = (src->uv_height != src->y_height); 79 const int et_a = dst->border >> (dst->alpha_height != dst->y_height); 92 src->y_width, src->y_height, 113 const int eb_y = srcy + srch != src->y_height ? 0 : 114 dst->border + dst->y_height - src->y_height;
|
H A D | vp9_postproc.c | 298 source->y_height, source->y_width, ppl); 300 vp9_mbpost_proc_across_ip(post->y_buffer, post->y_stride, post->y_height, 303 vp9_mbpost_proc_down(post->y_buffer, post->y_stride, post->y_height, 326 const int src_heights[4] = {src->y_height, src->uv_height, src->uv_height, 352 const int src_heights[4] = {src->y_height, src->uv_height, src->uv_height, 672 cm->post_proc_buffer.y_height, 695 int mb_rows = post->y_height >> 4; 723 int mb_rows = post->y_height >> 4; 766 int height = post->y_height; 909 int height = post->y_height; [all...] |
/external/libvpx/libvpx/vpx_scale/ |
H A D | vpx_scale_asm_offsets.c | 21 DEFINE(yv12_buffer_config_y_height, offsetof(YV12_BUFFER_CONFIG, y_height));
|
H A D | yv12config.h | 27 int y_height; member in struct:yv12_buffer_config
|
/external/libvpx/libvpx/vp8/common/ |
H A D | setupintrarecon.c | 21 for (i = 0; i < ybf->y_height; i++)
|
H A D | extend.c | 80 int eb = dst->border + dst->y_height - src->y_height; 85 src->y_height, src->y_width, 112 int eb = dst->border + dst->y_height - src->y_height; 124 if (srcy + srch != src->y_height)
|
H A D | postproc.c | 321 vp8_mbpost_proc_across_ip(post->y_buffer, post->y_stride, post->y_height, 323 vp8_mbpost_proc_down(post->y_buffer, post->y_stride, post->y_height, 402 int mb_cols = source->y_height >> 4; 741 dest->y_height = oci->Height; 742 dest->uv_height = dest->y_height / 2; 835 oci->post_proc_buffer.y_width, oci->post_proc_buffer.y_height, 858 int mb_rows = post->y_height >> 4; 890 int mb_rows = post->y_height >> 4; 935 int height = post->y_height; 1092 int height = post->y_height; [all...] |
H A D | loopfilter.c | 567 int mb_rows = post->y_height >> 4; 592 y_ptr = post->y_buffer + ((post->y_height >> 5) * 16) * post->y_stride; 593 mode_info_context = cm->mi + (post->y_height >> 5) * (mb_cols + 1);
|
/external/libvpx/libvpx/vp9/encoder/ |
H A D | vp9_picklpf.c | 25 const int height = src_ybc->y_height; 43 int linestocopy = (source->y_height >> (Fraction + 4)); 51 srcoffset = source->y_stride * (dest->y_height >> 5) * 16; 52 dstoffset = dest->y_stride * (dest->y_height >> 5) * 16;
|
H A D | vp9_lookahead.c | 93 int mb_rows = (src->y_height + 15) >> 4;
|
/external/libvpx/libvpx/vpx_scale/mips/dspr2/ |
H A D | yv12extend_dspr2.c | 114 const int c_eb = (ext_size + ybf->y_height - ybf->y_crop_height + 119 assert(ybf->y_height - ybf->y_crop_height < 16); 121 assert(ybf->y_height - ybf->y_crop_height >= 0); 127 ext_size + ybf->y_height - ybf->y_crop_height,
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
H A D | fakevideorenderer.h | 93 size_t y_height = frame->GetHeight(); local 97 for (size_t i = 0; i < y_height; ++i) {
|
/external/libvpx/libvpx/vp8/encoder/ |
H A D | picklpf.c | 35 yheight = src_ybc->y_height; 67 linestocopy = (source->y_height >> 4) / PARTIAL_FRAME_FRACTION; 72 srcoffset = source->y_stride * ((dest->y_height >> 5) * 16); 73 dstoffset = dest->y_stride * ((dest->y_height >> 5) * 16);
|
H A D | ssim.c | 187 source->y_height); 218 source->y_height);
|
H A D | lookahead.c | 113 int mb_rows = (src->y_height + 15) >> 4;
|
/external/libvpx/libvpx/vp8/decoder/ |
H A D | onyxd_if.c | 127 if(cm->yv12_fb[ref_fb_idx].y_height != sd->y_height || 159 if(cm->yv12_fb[*ref_fb_ptr].y_height != sd->y_height || 441 sd->y_height = pbi->common.Height;
|
/external/libvpx/libvpx/vp9/decoder/ |
H A D | vp9_onyxd_if.c | 76 for (i = 0; i < frame->y_height; i++) 187 return a->y_height == b->y_height && a->y_width == b->y_width && 448 sd->y_height = pbi->common.height; 450 sd->uv_height = sd->y_height >> pbi->common.subsampling_y;
|
/external/chromium_org/media/base/ |
H A D | video_frame.cc | 294 size_t y_height = RoundUp(coded_size_.height(), kFrameSizeAlignment * 2); local 298 ? y_height / 2 299 : y_height; 300 size_t y_bytes = y_height * y_stride;
|
/external/libvpx/libvpx/vp8/ |
H A D | vp8_dx_iface.c | 293 img->h = (yv12->y_height + 2 * VP8BORDERINPIXELS + 15) & ~15; 295 img->d_h = yv12->y_height; 715 yv12->y_height = img->d_h; 717 yv12->uv_height = yv12->y_height / 2;
|
H A D | vp8_cx_iface.c | 687 yv12->y_height = img->d_h; 689 yv12->uv_height = (1 + yv12->y_height) / 2; 1065 sd.y_height + 2*VP8BORDERINPIXELS, 1070 sd.y_width, sd.y_height); 1083 ctx->preview_img.d_h = sd.y_height; 1088 ctx->preview_img.h = sd.y_height;
|