Home
last modified time | relevance | path

Searched refs:y_height (Results 1 – 25 of 64) sorted by relevance

123

/external/libvpx/libvpx/vpx_scale/generic/
Dyv12extend.c59 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 …]
Dvpx_scale.c492 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()
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/generic/
Dyv12extend.c109 assert(ybf->y_height - ybf->y_crop_height < 16); in vp8_yv12_extend_frame_borders_c()
111 assert(ybf->y_height - ybf->y_crop_height >= 0); in vp8_yv12_extend_frame_borders_c()
120 ybf->border + ybf->y_height - ybf->y_crop_height, in vp8_yv12_extend_frame_borders_c()
127 (ybf->border + ybf->y_height - ybf->y_crop_height + 1) / 2, in vp8_yv12_extend_frame_borders_c()
134 (ybf->border + ybf->y_height - ybf->y_crop_height + 1) / 2, in vp8_yv12_extend_frame_borders_c()
142 ybf->border + ybf->y_height - ybf->y_crop_height, in vp8_yv12_extend_frame_borders_c()
163 const int ss_y = ybf->uv_height < ybf->y_height; in extend_frame()
169 assert(ybf->y_height - ybf->y_crop_height < 16); in extend_frame()
171 assert(ybf->y_height - ybf->y_crop_height >= 0); in extend_frame()
179 ext_size + ybf->y_height - ybf->y_crop_height, in extend_frame()
[all …]
Dvpx_scale.c492 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()
/external/libvpx/libvpx/vp9/
Dvp9_iface_common.h20 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()
62 yv12->y_height = img->d_h; in image2yuvconfig()
66 yv12->uv_height = img->y_chroma_shift == 1 ? (1 + yv12->y_height) / 2 in image2yuvconfig()
67 : yv12->y_height; in image2yuvconfig()
81 yv12->alpha_height = yv12->y_height; in image2yuvconfig()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_extend.c69 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()
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
Dvp9_extend.c69 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()
80 src->y_width, src->y_height, in vp9_copy_and_extend_frame()
101 const int eb_y = srcy + srch != src->y_height ? 0 : in vp9_copy_and_extend_frame_with_rect()
102 dst->border + dst->y_height - src->y_height; in vp9_copy_and_extend_frame_with_rect()
/external/libvpx/libvpx/vp8/common/
Dextend.c80 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()
Dpostproc.c316 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 …]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
Dextend.c80 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()
Dpostproc.c317 vp8_mbpost_proc_across_ip(post->y_buffer, post->y_stride, post->y_height, in vp8_de_mblock()
319 vp8_mbpost_proc_down(post->y_buffer, post->y_stride, post->y_height, in vp8_de_mblock()
740 dest->y_height = oci->Height; in vp8_post_proc_frame()
741 dest->uv_height = dest->y_height / 2; in vp8_post_proc_frame()
834 oci->post_proc_buffer.y_width, oci->post_proc_buffer.y_height, in vp8_post_proc_frame()
857 int mb_rows = post->y_height >> 4; in vp8_post_proc_frame()
889 int mb_rows = post->y_height >> 4; in vp8_post_proc_frame()
934 int height = post->y_height; in vp8_post_proc_frame()
1091 int height = post->y_height; in vp8_post_proc_frame()
1163 int height = post->y_height; in vp8_post_proc_frame()
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/
Dvp9_iface_common.h36 img->h = ALIGN_POWER_OF_TWO(yv12->y_height + 2 * VP9_ENC_BORDER_IN_PIXELS, 3); in yuvconfig2image()
65 yv12->y_height = img->d_h; in image2yuvconfig()
69 yv12->uv_height = img->y_chroma_shift == 1 ? (1 + yv12->y_height) / 2 in image2yuvconfig()
70 : yv12->y_height; in image2yuvconfig()
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/mips/dspr2/
Dyv12extend_dspr2.c111 const int ss_y = ybf->uv_height < ybf->y_height; in extend_frame()
117 assert(ybf->y_height - ybf->y_crop_height < 16); in extend_frame()
119 assert(ybf->y_height - ybf->y_crop_height >= 0); in extend_frame()
125 ext_size + ybf->y_height - ybf->y_crop_height, in extend_frame()
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
Dvp9_postproc.c244 source->y_height, source->y_width, ppl); in deblock_and_de_macro_block()
246 vp9_mbpost_proc_across_ip(post->y_buffer, post->y_stride, post->y_height, in deblock_and_de_macro_block()
249 vp9_mbpost_proc_down(post->y_buffer, post->y_stride, post->y_height, in deblock_and_de_macro_block()
269 const int src_heights[3] = {src->y_height, src->uv_height, src->uv_height}; in vp9_deblock()
289 const int src_heights[3] = {src->y_height, src->uv_height, src->uv_height}; in vp9_denoise()
431 ppbuf->y_width, ppbuf->y_height, ppbuf->y_stride); in vp9_post_proc_frame()
438 dest->y_height = cm->height; in vp9_post_proc_frame()
440 dest->uv_height = dest->y_height >> cm->subsampling_y; in vp9_post_proc_frame()
/external/libvpx/libvpx/vpx_scale/mips/dspr2/
Dyv12extend_dspr2.c118 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()
/external/libvpx/libvpx/vp9/common/
Dvp9_postproc.c298 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 …]
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decoder.c79 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()
427 sd->y_height = pbi->common.height; in vp9_get_raw_frame()
429 sd->uv_height = sd->y_height >> pbi->common.subsampling_y; in vp9_get_raw_frame()
/external/libvpx/libvpx/vp8/encoder/
Dpicklpf.c35 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()
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
Dpicklpf.c35 yheight = src_ybc->y_height; in yv12_copy_partial_frame()
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()
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
Donyxd_if.c127 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()
415 sd->y_height = pbi->common.Height; in vp8dx_get_raw_frame()
/external/libvpx/libvpx/vp8/decoder/
Donyxd_if.c127 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()
441 sd->y_height = pbi->common.Height; in vp8dx_get_raw_frame()
/external/chromium_org/third_party/libjingle/source/talk/media/base/
Dfakevideorenderer.h118 size_t y_height = frame->GetHeight(); in CheckFrameColorYuv() local
122 for (size_t i = 0; i < y_height; ++i) { in CheckFrameColorYuv()
/external/libvpx/libvpx/vp8/encoder/arm/neon/
Dpicklpf_arm.c28 yheight = src_ybc->y_height; in vp8_yv12_copy_partial_frame_neon()
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/
Dvpx_scale_asm_offsets.c21 DEFINE(yv12_buffer_config_y_height, offsetof(YV12_BUFFER_CONFIG, y_height));
/external/libvpx/libvpx/vpx_scale/
Dvpx_scale_asm_offsets.c21 DEFINE(yv12_buffer_config_y_height, offsetof(YV12_BUFFER_CONFIG, y_height));

123