Searched refs:uv_width (Results 1 - 25 of 34) sorted by relevance

12

/external/libvpx/libvpx/vp8/common/
H A Dsetupintrarecon.c23 memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
28 memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
36 memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
37 memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
H A Dextend.c80 er = (dst->border >> 1) + dst->uv_width - src->uv_width;
83 dst->uv_stride, src->uv_height, src->uv_width, et, el,
87 dst->uv_stride, src->uv_height, src->uv_width, et, el,
H A Dpostproc.c108 post->uv_stride, source->uv_width, uvlimits, 8);
112 post->uv_stride, source->uv_width, uvlimits, 8);
144 source->uv_stride, source->uv_width, limits, 8);
148 source->uv_stride, source->uv_width, limits, 8);
H A Dvp8_loopfilter.c340 u_ptr += post_uv_stride * 8 - post->uv_width;
341 v_ptr += post_uv_stride * 8 - post->uv_width;
380 u_ptr += post_uv_stride * 8 - post->uv_width;
381 v_ptr += post_uv_stride * 8 - post->uv_width;
/external/libvpx/libvpx/vpx_util/
H A Dvpx_write_yuv_frame.c30 fwrite(src, s->uv_width, 1, yuv_file);
38 fwrite(src, s->uv_width, 1, yuv_file);
/external/libvpx/libvpx/vpx_scale/generic/
H A Dvpx_scale.c498 Scale2D((unsigned char *)src->u_buffer, src->uv_stride, src->uv_width,
503 if (dw / 2 < (int)dst->uv_width)
507 dst->uv_width - dw / 2 + 1);
512 dst->u_buffer + (dh / 2 - 2) * dst->uv_stride, dst->uv_width);
514 Scale2D((unsigned char *)src->v_buffer, src->uv_stride, src->uv_width,
519 if (dw / 2 < (int)dst->uv_width)
523 dst->uv_width - dw / 2 + 1);
528 dst->v_buffer + (dh / 2 - 2) * dst->uv_stride, dst->uv_width);
H A Dyv12config.c54 int uv_width = aligned_width >> 1; local
84 ybf->uv_width = uv_width;
152 const int uv_width = aligned_width >> ss_x; local
229 ybf->uv_width = uv_width;
H A Dyv12extend.c122 uv_border + ybf->uv_width - ybf->uv_crop_width);
127 uv_border + ybf->uv_width - ybf->uv_crop_width);
134 const int ss_x = ybf->uv_width < ybf->y_width;
139 const int c_er = c_el + ybf->uv_width - ybf->uv_crop_width;
217 memcpy(dst, src, src_ybc->uv_width);
226 memcpy(dst, src, src_ybc->uv_width);
262 memcpy_short_addr(dst, src, src_ybc->uv_width);
271 memcpy_short_addr(dst, src, src_ybc->uv_width);
293 memcpy(dst, src, src_ybc->uv_width);
302 memcpy(dst, src, src_ybc->uv_width);
[all...]
/external/libvpx/libvpx/test/
H A Dvp9_scale_test.cc128 assert(ref_img_.uv_width == dst_img_.uv_width);
137 ref_img_.uv_stride, ref_img_.uv_width,
140 ref_img_.uv_stride, ref_img_.uv_width,
H A Dvpx_scale_test.h157 ref_img_.uv_crop_height, ref_img_.uv_width, ref_img_.uv_height,
160 ref_img_.uv_crop_height, ref_img_.uv_width, ref_img_.uv_height,
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_lookahead.c99 int uv_width = src->uv_crop_width; local
111 uv_width != buf->img.uv_crop_width ||
114 uv_width > buf->img.uv_width ||
/external/libvpx/libvpx/vpx_scale/
H A Dyv12config.h36 int uv_width; member in struct:yv12_buffer_config
/external/libvpx/libvpx/vpx_scale/mips/dspr2/
H A Dyv12extend_dspr2.c106 const int ss_x = ybf->uv_width < ybf->y_width;
111 const int c_er = c_el + ybf->uv_width - ybf->uv_crop_width;
/external/webrtc/talk/app/webrtc/java/jni/
H A Dnative_handle_impl.cc115 int uv_width = (width()+7) / 8; local
116 int stride = 8 * uv_width;
/external/webp/src/dec/
H A Dbuffer_dec.c50 const int uv_width = (width + 1) / 2; local
57 const uint64_t u_size = MIN_BUFFER_SIZE(uv_width, uv_height, u_stride);
58 const uint64_t v_size = MIN_BUFFER_SIZE(uv_width, uv_height, v_stride);
64 ok &= (u_stride >= uv_width);
65 ok &= (v_stride >= uv_width);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_postproc.c212 source->uv_height, source->uv_width, ppl);
216 source->uv_height, source->uv_width, ppl);
240 const int src_widths[3] = { src->y_width, src->uv_width, src->uv_width };
268 dst->uv_stride, src->uv_width, limits, 8);
272 dst->uv_stride, src->uv_width, limits, 8);
428 dest->uv_width = dest->y_width >> cm->subsampling_x;
H A Dvp9_reconintra.c144 frame_width = xd->cur_buf->uv_width;
291 frame_width = xd->cur_buf->uv_width;
/external/webp/src/enc/
H A Dpicture_enc.c94 const int uv_width = (int)(((int64_t)width + 1) >> 1); local
96 const int uv_stride = uv_width;
121 uv_width <= 0 || uv_height <= 0) { // u/v param error
H A Dpicture_tools_enc.c205 const int uv_width = (pic->width >> 1); // omit last pixel during u/v loop local
228 for (x = 0; x < uv_width; ++x) {
H A Dpicture_csp_enc.c875 const int uv_width = (width + 1) >> 1; local
879 (uint16_t*)WebPSafeMalloc(4 * uv_width, sizeof(*tmp_rgb));
931 WebPConvertRGBA32ToUV(tmp_rgb, dst_u, dst_v, uv_width);
933 ConvertRowsToUV(tmp_rgb, dst_u, dst_v, uv_width, rg);
966 WebPConvertRGBA32ToUV(tmp_rgb, dst_u, dst_v, uv_width);
968 ConvertRowsToUV(tmp_rgb, dst_u, dst_v, uv_width, rg);
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DSurfaceTextureHelper.java234 int uv_width = (width+7) / 8;
278 GLES20.glViewport(0, height, uv_width, uv_height);
287 GLES20.glViewport(stride/8, height, uv_width, uv_height);
/external/libvpx/libvpx/vp8/decoder/
H A Donyxd_if.c143 cm->yv12_fb[ref_fb_idx].uv_width != sd->uv_width) {
174 cm->yv12_fb[*ref_fb_ptr].uv_width != sd->uv_width) {
/external/libvpx/libvpx/vp9/
H A Dvp9_iface_common.h94 yv12->uv_width =
98 yv12->uv_crop_width = yv12->uv_width;
/external/webp/src/dsp/
H A Dyuv.c131 const int uv_width = src_width >> 1; local
133 for (i = 0; i < uv_width; ++i) {
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decoder.c149 a->uv_height == b->uv_height && a->uv_width == b->uv_width;

Completed in 670 milliseconds

12