/external/libvpx/libvpx/vp9/ |
vp9_iface_common.h | 21 if (yv12->uv_width == yv12->y_width) { 35 img->x_chroma_shift = yv12->uv_width < yv12->y_width; 61 yv12->y_width = img->d_w; 64 yv12->uv_width = img->x_chroma_shift == 1 ? (1 + yv12->y_width) / 2 65 : yv12->y_width; 80 yv12->alpha_width = yv12->y_width;
|
/external/libvpx/libvpx/vpx_scale/generic/ |
yv12extend.c | 60 assert(ybf->y_width - ybf->y_crop_width < 16); 62 assert(ybf->y_width - ybf->y_crop_width >= 0); 68 ybf->border + ybf->y_width - ybf->y_crop_width); 74 (ybf->border + ybf->y_width - ybf->y_crop_width + 1) / 2); 80 (ybf->border + ybf->y_width - ybf->y_crop_width + 1) / 2); 93 const int c_er = (ext_size + ybf->y_width - ybf->y_crop_width + 97 assert(ybf->y_width - ybf->y_crop_width < 16); 99 assert(ybf->y_width - ybf->y_crop_width >= 0); 105 ext_size + ybf->y_width - ybf->y_crop_width); 140 assert(src_ybc->y_width == dst_ybc->y_width) [all...] |
vpx_scale.c | 491 int dw = (hscale - 1 + src->y_width * hratio) / hscale; 495 Scale2D((unsigned char *) src->y_buffer, src->y_stride, src->y_width, src->y_height, 499 if (dw < (int)dst->y_width) 501 vpx_memset(dst->y_buffer + i * dst->y_stride + dw - 1, dst->y_buffer[i * dst->y_stride + dw - 2], dst->y_width - dw + 1); 505 vpx_memcpy(dst->y_buffer + i * dst->y_stride, dst->y_buffer + (dh - 2) * dst->y_stride, dst->y_width + 1);
|
yv12config.c | 71 ybf->y_width = aligned_width; 172 ybf->y_width = aligned_width;
|
/external/libvpx/libvpx/vp8/common/ |
setupintrarecon.c | 20 vpx_memset(ybf->y_buffer - 1 - ybf->y_stride, 127, ybf->y_width + 5); 36 vpx_memset(ybf->y_buffer - 1 - ybf->y_stride, 127, ybf->y_width + 5);
|
extend.c | 81 int er = dst->border + dst->y_width - src->y_width; 85 src->y_height, src->y_width, 113 int er = dst->border + dst->y_width - src->y_width; 126 if (srcx + srcw != src->y_width)
|
postproc.c | 322 post->y_width, q2mbl(q)); 324 post->y_width, q2mbl(q)); 374 post->y_stride, source->y_width, ylimits, 16); 401 int mb_rows = source->y_width >> 4; 417 source->y_stride, source->y_stride, source->y_width, limits, 16); 740 dest->y_width = oci->Width; 835 oci->post_proc_buffer.y_width, oci->post_proc_buffer.y_height, 859 int mb_cols = post->y_width >> 4; 880 y_ptr += post->y_stride * 16 - post->y_width; 891 int mb_cols = post->y_width >> 4 [all...] |
loopfilter.c | 385 y_ptr += post_y_stride * 16 - post->y_width; 437 y_ptr += post_y_stride * 16 - post->y_width; 548 y_ptr += post->y_stride * 16 - post->y_width; 566 int mb_cols = post->y_width >> 4; 659 y_ptr += post->y_stride * 16 - post->y_width;
|
/external/libvpx/libvpx/vp9/common/ |
vp9_extend.c | 67 const int eb_y = MAX(ALIGN_POWER_OF_TWO(src->y_width, 6) - src->y_width, 71 const int uv_width_subsampling = (src->uv_width != src->y_width); 80 const int el_a = dst->border >> (dst->alpha_width != dst->y_width); 92 src->y_width, src->y_height, 115 const int er_y = srcx + srcw != src->y_width ? 0 : 116 dst->border + dst->y_width - src->y_width;
|
vp9_postproc.c | 298 source->y_height, source->y_width, ppl); 301 post->y_width, q2mbl(q)); 304 post->y_width, q2mbl(q)); 324 const int src_widths[4] = {src->y_width, src->uv_width, src->uv_width, 350 const int src_widths[4] = {src->y_width, src->uv_width, src->uv_width, 671 cm->post_proc_buffer.y_width, 696 int mb_cols = post->y_width >> 4; 715 y_ptr += post->y_stride * 16 - post->y_width; 724 int mb_cols = post->y_width >> 4; 749 y_ptr += post->y_stride * 16 - post->y_width; [all...] |
/external/libvpx/libvpx/vpx_scale/ |
vpx_scale_asm_offsets.c | 20 DEFINE(yv12_buffer_config_y_width, offsetof(YV12_BUFFER_CONFIG, y_width));
|
yv12config.h | 26 int y_width; member in struct:yv12_buffer_config
|
/external/libvpx/libvpx/vpx_scale/mips/dspr2/ |
yv12extend_dspr2.c | 116 const int c_er = (ext_size + ybf->y_width - ybf->y_crop_width + 120 assert(ybf->y_width - ybf->y_crop_width < 16); 122 assert(ybf->y_width - ybf->y_crop_width >= 0); 128 ext_size + ybf->y_width - ybf->y_crop_width);
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
fakevideorenderer.h | 100 size_t y_width = frame->GetWidth(); local 106 for (size_t j = 0; j < y_width; ++j) {
|
/external/libvpx/libvpx/vp8/decoder/ |
onyxd_if.c | 128 cm->yv12_fb[ref_fb_idx].y_width != sd->y_width || 160 cm->yv12_fb[*ref_fb_ptr].y_width != sd->y_width || 440 sd->y_width = pbi->common.Width;
|
threading.c | 588 int lasty = yv12_fb_lst->y_width + VP8BORDERINPIXELS; 589 int lastuv = (yv12_fb_lst->y_width>>1) + (VP8BORDERINPIXELS>>1); 877 vpx_memset(pbi->mt_yabove_row[0] + VP8BORDERINPIXELS-1, 127, yv12_fb_new->y_width + 5); 878 vpx_memset(pbi->mt_uabove_row[0] + (VP8BORDERINPIXELS>>1)-1, 127, (yv12_fb_new->y_width>>1) +5); 879 vpx_memset(pbi->mt_vabove_row[0] + (VP8BORDERINPIXELS>>1)-1, 127, (yv12_fb_new->y_width>>1) +5);
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_onyxd_if.c | 78 frame->y_width, 1, yframe); 187 return a->y_height == b->y_height && a->y_width == b->y_width && 447 sd->y_width = pbi->common.width; 449 sd->uv_width = sd->y_width >> pbi->common.subsampling_x;
|
/external/libvpx/libvpx/vp8/encoder/ |
ssim.c | 186 source->y_stride, dest->y_stride, source->y_width, 217 source->y_stride, dest->y_stride, source->y_width,
|
lookahead.c | 114 int mb_cols = (src->y_width + 15) >> 4;
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_lookahead.c | 94 int mb_cols = (src->y_width + 15) >> 4;
|
vp9_picklpf.c | 60 for (j = 0; j < source->y_width; j += 16) {
|
vp9_onyx_if.c | [all...] |
/external/ganymed-ssh2/examples/ |
SwingShell.java | 664 int y_width = 30; local 666 sess.requestPTY("dumb", x_width, y_width, 0, 0, null); 669 TerminalDialog td = new TerminalDialog(loginFrame, username + "@" + hostname, sess, x_width, y_width);
|
/external/libvpx/libvpx/vpx_scale/arm/neon/ |
vp8_vpxyv12_copy_y_neon.asm | 44 ble extra_copy_needed ; y_width < 128
|
vp8_vpxyv12_copyframe_func_neon.asm | 57 ble extra_cp_needed ; y_width < 128
|