Searched defs:uv_width (Results 1 - 12 of 12) sorted by relevance

/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/generic/
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;
/external/libvpx/libvpx/vpx_scale/
H A Dyv12config.h36 int uv_width; member in struct:yv12_buffer_config
/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);
H A Dio_dec.c581 const int uv_width = (io->mb_w + 1) >> 1; local
582 p->memory = WebPSafeMalloc(1ULL, (size_t)(io->mb_w + 2 * uv_width));
588 p->tmp_v = p->tmp_u + 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/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/libvpx/libvpx/vp8/decoder/
H A Dthreading.c713 int uv_width; local
731 uv_width = width >> 1;
752 sizeof(unsigned char) * (uv_width + VP8BORDERINPIXELS)));
759 sizeof(unsigned char) * (uv_width + VP8BORDERINPIXELS)));
/external/libvpx/libvpx/vp8/encoder/
H A Donyx_if.c2853 fwrite(frame->u_buffer + i * frame->uv_stride, frame->uv_width, 1, yframe);
2860 fwrite(frame->v_buffer + i * frame->uv_stride, frame->uv_width, 1, yframe);
5197 unsigned int uv_width = (y_width + 1) / 2; local
5200 int uv_samples = uv_height * uv_width;
5208 recon->uv_stride, uv_width, uv_height);
5211 recon->uv_stride, uv_width, uv_height);
5237 pp->uv_stride, uv_width, uv_height);
5240 pp->uv_stride, uv_width, uv_height);

Completed in 214 milliseconds