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

1 2 3

  /external/libvpx/libvpx/vp8/common/
setupintrarecon.c 24 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);
37 memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
38 memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
extend.c 91 er = (dst->border >> 1) + dst->uv_width - src->uv_width;
95 src->uv_height, src->uv_width,
100 src->uv_height, src->uv_width,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
setupintrarecon.c 24 vpx_memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
28 vpx_memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
37 vpx_memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
38 vpx_memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
extend.c 91 er = (dst->border >> 1) + dst->uv_width - src->uv_width;
95 src->uv_height, src->uv_width,
100 src->uv_height, src->uv_width,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/
vpx_scale_asm_offsets.c 23 DEFINE(yv12_buffer_config_uv_width, offsetof(YV12_BUFFER_CONFIG, uv_width));
yv12config.h 34 int uv_width; member in struct:yv12_buffer_config
  /external/libvpx/libvpx/vpx_scale/generic/
vpx_scale.c 508 Scale2D((unsigned char *) src->u_buffer, src->uv_stride, src->uv_width, src->uv_height,
512 if (dw / 2 < (int)dst->uv_width)
514 memset(dst->u_buffer + i * dst->uv_stride + dw / 2 - 1, dst->u_buffer[i * dst->uv_stride + dw / 2 - 2], dst->uv_width - dw / 2 + 1);
518 memcpy(dst->u_buffer + i * dst->uv_stride, dst->u_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width);
520 Scale2D((unsigned char *) src->v_buffer, src->uv_stride, src->uv_width, src->uv_height,
524 if (dw / 2 < (int)dst->uv_width)
526 memset(dst->v_buffer + i * dst->uv_stride + dw / 2 - 1, dst->v_buffer[i * dst->uv_stride + dw / 2 - 2], dst->uv_width - dw / 2 + 1);
530 memcpy(dst->v_buffer + i * dst->uv_stride, dst->v_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width);
yv12config.c 54 int uv_width = aligned_width >> 1; local
86 ybf->uv_width = uv_width;
155 const int uv_width = aligned_width >> ss_x; local
242 ybf->uv_width = uv_width;
yv12extend.c 130 uv_border + ybf->uv_width - ybf->uv_crop_width);
137 uv_border + ybf->uv_width - ybf->uv_crop_width);
151 uv_border + ybf->uv_width - ybf->uv_crop_width);
157 uv_border + ybf->uv_width - ybf->uv_crop_width);
164 const int ss_x = ybf->uv_width < ybf->y_width;
169 const int c_er = c_el + ybf->uv_width - ybf->uv_crop_width;
252 memcpy_short_addr(dst, src, src_ybc->uv_width);
261 memcpy_short_addr(dst, src, src_ybc->uv_width);
283 memcpy(dst, src, src_ybc->uv_width);
292 memcpy(dst, src, src_ybc->uv_width);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/
vpx_scale.c 507 Scale2D((unsigned char *) src->u_buffer, src->uv_stride, src->uv_width, src->uv_height,
511 if (dw / 2 < (int)dst->uv_width)
513 vpx_memset(dst->u_buffer + i * dst->uv_stride + dw / 2 - 1, dst->u_buffer[i * dst->uv_stride + dw / 2 - 2], dst->uv_width - dw / 2 + 1);
517 vpx_memcpy(dst->u_buffer + i * dst->uv_stride, dst->u_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width);
519 Scale2D((unsigned char *) src->v_buffer, src->uv_stride, src->uv_width, src->uv_height,
523 if (dw / 2 < (int)dst->uv_width)
525 vpx_memset(dst->v_buffer + i * dst->uv_stride + dw / 2 - 1, dst->v_buffer[i * dst->uv_stride + dw / 2 - 2], dst->uv_width - dw / 2 + 1);
529 vpx_memcpy(dst->v_buffer + i * dst->uv_stride, dst->v_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width);
yv12config.c 56 int uv_width = aligned_width >> 1; local
86 ybf->uv_width = uv_width;
150 const int uv_width = aligned_width >> ss_x; local
251 ybf->uv_width = uv_width;
yv12extend.c 91 const int c_er = c_ext_size + ybf->uv_width - ybf->uv_crop_width;
149 vpx_memcpy(dst, src, src_ybc->uv_width);
158 vpx_memcpy(dst, src, src_ybc->uv_width);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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;
65 yv12->uv_width = img->x_chroma_shift == 1 ? (1 + yv12->y_width) / 2
  /external/libvpx/libvpx/vp9/encoder/
vp9_lookahead.c 106 int uv_width = src->uv_crop_width; local
119 uv_width != buf->img.uv_crop_width ||
123 uv_width > buf->img.uv_width ||
  /external/libvpx/libvpx/vpx_scale/
yv12config.h 36 int uv_width; member in struct:yv12_buffer_config
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
ssim.c 190 source->uv_stride, dest->uv_stride, source->uv_width,
194 source->uv_stride, dest->uv_stride, source->uv_width,
221 source->uv_stride, dest->uv_stride, source->uv_width,
225 source->uv_stride, dest->uv_stride, source->uv_width,
  /external/webp/src/dec/
buffer.c 50 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/
vp9_iface_common.h 94 yv12->uv_width = img->x_chroma_shift == 1 ? (1 + yv12->y_width) / 2
98 yv12->uv_crop_width = yv12->uv_width;
  /external/libvpx/libvpx/vpx_scale/mips/dspr2/
yv12extend_dspr2.c 110 const int ss_x = ybf->uv_width < ybf->y_width;
115 const int c_er = c_el + ybf->uv_width - ybf->uv_crop_width;
  /external/webrtc/talk/app/webrtc/java/jni/
native_handle_impl.cc 115 int uv_width = (width()+7) / 8; local
116 int stride = 8 * uv_width;
  /external/webp/src/enc/
picture.c 94 const int uv_width = (width + 1) >> 1; local
96 const int uv_stride = uv_width;
121 uv_width < 0 || uv_height < 0) { // u/v param error
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_extend.c 71 const int uv_width_subsampling = (src->uv_width != src->y_width);
97 src->uv_width, src->uv_height,
102 src->uv_width, src->uv_height,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decoder.c 89 frame->uv_width, 1, yframe);
97 frame->uv_width, 1, yframe);
182 a->uv_height == b->uv_height && a->uv_width == b->uv_width;
431 sd->uv_width = sd->y_width >> pbi->common.subsampling_x;
  /external/libvpx/libvpx/vp9/common/
vp9_postproc.c 409 source->uv_height, source->uv_width,
414 source->uv_height, source->uv_width,
429 source->uv_height, source->uv_width, ppl);
432 source->uv_height, source->uv_width, ppl);
447 source->uv_height, source->uv_width, ppl);
450 source->uv_height, source->uv_width, ppl);
462 const int src_widths[3] = {src->y_width, src->uv_width, src->uv_width};
498 const int src_widths[3] = {src->y_width, src->uv_width, src->uv_width};
    [all...]
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
SurfaceTextureHelper.java 234 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);

Completed in 456 milliseconds

1 2 3