HomeSort by relevance Sort by last modified time
    Searched refs:uv_height (Results 1 - 25 of 29) sorted by null

1 2

  /external/libvpx/libvpx/vp8/common/
setupintrarecon.c 24 for (i = 0; i < ybf->uv_height; ++i) {
29 for (i = 0; i < ybf->uv_height; ++i) {
extend.c 79 eb = (dst->border >> 1) + dst->uv_height - src->uv_height;
83 dst->uv_stride, src->uv_height, src->uv_width, et, el,
87 dst->uv_stride, src->uv_height, src->uv_width, et, el,
postproc.c 290 dest->uv_height = dest->y_height / 2;
387 dest->uv_height = dest->y_height / 2;
  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 54 int uv_height = aligned_height >> 1; local
58 int uvplane_size = (uv_height + border) * uv_stride;
84 ybf->uv_height = uv_height;
152 const int uv_height = aligned_height >> ss_y; local
157 (uv_height + 2 * uv_border_h) * (uint64_t)uv_stride + byte_alignment;
225 ybf->uv_height = uv_height;
yv12extend.c 123 uv_border + ybf->uv_height - ybf->uv_crop_height,
128 uv_border + ybf->uv_height - ybf->uv_crop_height,
140 uv_border + ybf->uv_height - ybf->uv_crop_height,
145 uv_border + ybf->uv_height - ybf->uv_crop_height,
154 const int ss_y = ybf->uv_height < ybf->y_height;
157 const int c_eb = c_et + ybf->uv_height - ybf->uv_crop_height;
237 for (row = 0; row < src_ybc->uv_height; ++row) {
246 for (row = 0; row < src_ybc->uv_height; ++row) {
268 for (row = 0; row < src_ybc->uv_height; ++row) {
277 for (row = 0; row < src_ybc->uv_height; ++row)
    [all...]
vpx_scale.c 499 src->uv_height, (unsigned char *)dst->u_buffer, dst->uv_stride,
504 for (i = 0; i < dst->uv_height; i++)
509 if (dh / 2 < (int)dst->uv_height)
515 src->uv_height, (unsigned char *)dst->v_buffer, dst->uv_stride,
520 for (i = 0; i < dst->uv_height; i++)
525 if (dh / 2 < (int)dst->uv_height)
  /external/libvpx/libvpx/vp9/encoder/
vp9_lookahead.c 100 int uv_height = src->uv_crop_height; local
112 uv_height != buf->img.uv_crop_height;
115 uv_height > buf->img.uv_height;
vp9_extend.c 120 const int uv_height_subsampling = (src->uv_height != src->y_height);
vp9_denoiser.c 605 for (r = 0; r < yuv->uv_height; ++r) {
vp9_encoder.c     [all...]
  /external/libvpx/libvpx/vpx_scale/
yv12config.h 37 int uv_height; member in struct:yv12_buffer_config
  /external/libvpx/libvpx/vpx_scale/mips/dspr2/
yv12extend_dspr2.c 107 const int ss_y = ybf->uv_height < ybf->y_height;
110 const int c_eb = c_et + ybf->uv_height - ybf->uv_crop_height;
  /external/webrtc/talk/app/webrtc/java/jni/
native_handle_impl.cc 117 int uv_height = (height()+1)/2; local
118 size_t size = stride * (height() + uv_height);
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
SurfaceTextureHelper.java 235 int uv_height = (height+1)/2;
236 int total_height = height + uv_height;
278 GLES20.glViewport(0, height, uv_width, uv_height);
287 GLES20.glViewport(stride/8, height, uv_width, uv_height);
  /external/webp/src/enc/
picture_enc.c 96 const int uv_height = (height + 1) >> 1; local
115 uv_size = (uint64_t)uv_stride * uv_height;
122 uv_width < 0 || uv_height < 0) { // u/v param error
  /external/libvpx/libvpx/vp8/decoder/
onyxd_if.c 143 cm->yv12_fb[ref_fb_idx].uv_height != sd->uv_height ||
174 cm->yv12_fb[*ref_fb_ptr].uv_height != sd->uv_height ||
413 sd->uv_height = pbi->common.Height / 2;
  /external/libvpx/libvpx/test/
vpx_scale_test.cc 117 ref_img_.uv_crop_height, ref_img_.uv_width, ref_img_.uv_height,
120 ref_img_.uv_crop_height, ref_img_.uv_width, ref_img_.uv_height,
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 96 yv12->uv_height =
99 yv12->uv_crop_height = yv12->uv_height;
  /external/libvpx/libvpx/vp9/common/
vp9_postproc.c 212 source->uv_height, source->uv_width, ppl);
216 source->uv_height, source->uv_width, ppl);
241 const int src_heights[3] = { src->y_height, src->uv_height,
242 src->uv_height };
429 dest->uv_height = dest->y_height >> cm->subsampling_y;
vp9_reconintra.c 145 frame_height = xd->cur_buf->uv_height;
292 frame_height = xd->cur_buf->uv_height;
  /external/webp/src/dec/
buffer_dec.c 51 const int uv_height = (height + 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);
  /external/libvpx/libvpx/vp9/decoder/
vp9_decoder.c 148 a->uv_height == b->uv_height && a->uv_width == b->uv_width;
  /external/libvpx/libvpx/vp8/encoder/
onyx_if.c 5185 unsigned int uv_height = (y_height + 1) \/ 2; local
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 495 yv12->uv_height = uv_h;
  /external/libmojo/mojo/gpu/
mojo_gles2_impl_autogen.cc     [all...]

Completed in 1329 milliseconds

1 2