Home
last modified time | relevance | path

Searched refs:uv_width (Results 1 – 22 of 22) sorted by relevance

/external/libvpx/libvpx/vp8/common/
Dsetupintrarecon.c24 vpx_memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5); in vp8_setup_intra_recon()
28 vpx_memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5); in vp8_setup_intra_recon()
37 vpx_memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5); in vp8_setup_intra_recon_top_line()
38 vpx_memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5); in vp8_setup_intra_recon_top_line()
Dextend.c91 er = (dst->border >> 1) + dst->uv_width - src->uv_width; in vp8_copy_and_extend_frame()
95 src->uv_height, src->uv_width, in vp8_copy_and_extend_frame()
100 src->uv_height, src->uv_width, in vp8_copy_and_extend_frame()
Dasm_com_offsets.c28 DEFINE(yv12_buffer_config_uv_width, offsetof(YV12_BUFFER_CONFIG, uv_width));
Dloopfilter.c387 u_ptr += post_uv_stride * 8 - post->uv_width; in vp8_loop_filter_frame()
388 v_ptr += post_uv_stride * 8 - post->uv_width; in vp8_loop_filter_frame()
439 u_ptr += post_uv_stride * 8 - post->uv_width; in vp8_loop_filter_frame()
440 v_ptr += post_uv_stride * 8 - post->uv_width; in vp8_loop_filter_frame()
Dpostproc.c378 post->uv_stride, source->uv_width, uvlimits, 8); in vp8_deblock()
382 post->uv_stride, source->uv_width, uvlimits, 8); in vp8_deblock()
421 source->uv_stride, source->uv_stride, source->uv_width, limits, 8); in vp8_de_noise()
425 source->uv_stride, source->uv_stride, source->uv_width, limits, 8); in vp8_de_noise()
/external/libvpx/libvpx/vpx_scale/generic/
Dyv12config.c48 int uv_width = width >> 1; in vp8_yv12_alloc_frame_buffer() local
70 ybf->uv_width = uv_width; in vp8_yv12_alloc_frame_buffer()
Dvpxscale.c568 Scale2D((unsigned char *) src->u_buffer, src->uv_stride, src->uv_width, src->uv_height, in vp8_scale_frame()
572 if (dw / 2 < (int)dst->uv_width) in vp8_scale_frame()
574 …v_stride + dw / 2 - 1, dst->u_buffer[i * dst->uv_stride + dw / 2 - 2], dst->uv_width - dw / 2 + 1); in vp8_scale_frame()
578 …py(dst->u_buffer + i * dst->uv_stride, dst->u_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width); in vp8_scale_frame()
580 Scale2D((unsigned char *) src->v_buffer, src->uv_stride, src->uv_width, src->uv_height, in vp8_scale_frame()
584 if (dw / 2 < (int)dst->uv_width) in vp8_scale_frame()
586 …v_stride + dw / 2 - 1, dst->v_buffer[i * dst->uv_stride + dw / 2 - 2], dst->uv_width - dw / 2 + 1); in vp8_scale_frame()
590 …py(dst->v_buffer + i * dst->uv_stride, dst->v_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width); in vp8_scale_frame()
920 duck_memcpy(dst_data_pointer, src_data_pointer, src_yuv_config->uv_width); in center_image()
930 duck_memcpy(dst_data_pointer, src_data_pointer, src_yuv_config->uv_width); in center_image()
[all …]
Dyv12extend.c76 plane_width = ybf->uv_width; in vp8_yv12_extend_frame_borders_c()
232 vpx_memcpy(dest, source, src_ybc->uv_width); in vp8_yv12_copy_frame_c()
241 vpx_memcpy(dest, source, src_ybc->uv_width); in vp8_yv12_copy_frame_c()
Dbicubic_scaler.c552 dst->uv_width = new_width / 2; in bicubic_scale_frame()
556 dst->uv_stride = dst->uv_width; in bicubic_scale_frame()
562 bicubic_scale(src->uv_width, src->uv_height, src->uv_stride, in bicubic_scale_frame()
566 bicubic_scale(src->uv_width, src->uv_height, src->uv_stride, in bicubic_scale_frame()
/external/webp/examples/
Ddwebp.c114 const int uv_width = (width + 1) / 2; in main() local
123 ok &= (fwrite(u + y * uv_stride, uv_width, 1, fout) == 1); in main()
124 ok &= (fwrite(v + y * uv_stride, uv_width, 1, fout) == 1); in main()
/external/libvpx/libvpx/vp8/encoder/
Dssim.c190 source->uv_stride, dest->uv_stride, source->uv_width, in vp8_calc_ssim()
194 source->uv_stride, dest->uv_stride, source->uv_width, in vp8_calc_ssim()
221 source->uv_stride, dest->uv_stride, source->uv_width, in vp8_calc_ssimg()
225 source->uv_stride, dest->uv_stride, source->uv_width, in vp8_calc_ssimg()
Donyx_if.c2554 fwrite(src, s->uv_width, 1, yuv_file); in vp8_write_yuv_frame()
2564 fwrite(src, s->uv_width, 1, yuv_file); in vp8_write_yuv_frame()
2942 fwrite(frame->u_buffer + i * frame->uv_stride, frame->uv_width, 1, yframe);
2949 fwrite(frame->v_buffer + i * frame->uv_stride, frame->uv_width, 1, yframe);
5242 int uv_samples = orig->uv_height * orig->uv_width ; in vp8_get_compressed_data()
5250 recon->u_buffer, recon->uv_stride, orig->uv_width, orig->uv_height); in vp8_get_compressed_data()
5253 recon->v_buffer, recon->uv_stride, orig->uv_width, orig->uv_height); in vp8_get_compressed_data()
5277 pp->u_buffer, pp->uv_stride, orig->uv_width, orig->uv_height); in vp8_get_compressed_data()
5280 pp->v_buffer, pp->uv_stride, orig->uv_width, orig->uv_height); in vp8_get_compressed_data()
/external/libvpx/libvpx/vp8/decoder/
Donyxd_if.c147 cm->yv12_fb[ref_fb_idx].uv_width != sd->uv_width){ in vp8dx_get_reference()
179 cm->yv12_fb[*ref_fb_ptr].uv_width != sd->uv_width){ in vp8dx_set_reference()
Dthreading.c787 int uv_width; in vp8mt_alloc_temp_buffers() local
802 uv_width = width >>1; in vp8mt_alloc_temp_buffers()
814 …M_ERROR(pbi->mt_uabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (uv_width + VP8BORDERINPIXE… in vp8mt_alloc_temp_buffers()
818 …M_ERROR(pbi->mt_vabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (uv_width + VP8BORDERINPIXE… in vp8mt_alloc_temp_buffers()
Ddecodframe.c465 plane_width = ybf->uv_width; in yv12_extend_frame_left_right_c()
/external/libvpx/libvpx/vpx_scale/
Dyv12config.h47 int uv_width; member
/external/webp/src/enc/
Dpicture.c48 const int uv_width = HALVE(width); in WebPPictureAlloc() local
50 const int uv_stride = uv_width; in WebPPictureAlloc()
64 uv0_stride = uv_width; in WebPPictureAlloc()
86 uv_width < 0 || uv_height < 0) { // u/v param error in WebPPictureAlloc()
582 const int uv_width = HALVE(picture->width); in MakeGray() local
585 memset(picture->u + y * picture->uv_stride, 128, uv_width); in MakeGray()
586 memset(picture->v + y * picture->uv_stride, 128, uv_width); in MakeGray()
/external/webp/src/dec/
Dio.c560 const int uv_width = (io->mb_w + 1) >> 1; in CustomSetup() local
561 p->memory = malloc(io->mb_w + 2 * uv_width); in CustomSetup()
567 p->tmp_v = p->tmp_u + uv_width; in CustomSetup()
Dvp8l.c471 const int uv_width = width >> 1; in ConvertToYUVA() local
473 for (i = 0; i < uv_width; ++i) { in ConvertToYUVA()
/external/libvpx/libvpx/vpx_scale/arm/neon/
Dvp8_vpxyv12_copyframe_func_neon.asm100 mov r5, r5, lsr #1 ;src uv_width
/external/libvpx/libvpx/vp8/
Dvp8_dx_iface.c698 yv12->uv_width = yv12->y_width / 2; in image2yuvconfig()
Dvp8_cx_iface.c689 yv12->uv_width = (1 + yv12->y_width) / 2; in image2yuvconfig()