HomeSort by relevance Sort by last modified time
    Searched defs:uv_width (Results 1 - 18 of 18) sorted by null

  /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/generic/
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;
  /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;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/
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;
  /external/libvpx/libvpx/vpx_scale/
yv12config.h 36 int uv_width; member in struct:yv12_buffer_config
  /external/webp/src/dsp/
yuv.c 181 const int uv_width = src_width >> 1; local
183 for (i = 0; i < uv_width; ++i) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/
yv12config.h 34 int uv_width; member in struct:yv12_buffer_config
  /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);
io.c 543 const int uv_width = (io->mb_w + 1) >> 1; local
544 p->memory = WebPSafeMalloc(1ULL, (size_t)(io->mb_w + 2 * uv_width));
550 p->tmp_v = p->tmp_u + 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
picture_tools.c 158 const int uv_width = (pic->width >> 1); // omit last pixel during u/v loop local
181 for (x = 0; x < uv_width; ++x) {
picture_csp.c 878 const int uv_width = (width + 1) >> 1; local
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
threading.c 782 int uv_width; local
797 uv_width = width >>1;
809 CHECK_MEM_ERROR(pbi->mt_uabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (uv_width + VP8BORDERINPIXELS)));
813 CHECK_MEM_ERROR(pbi->mt_vabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (uv_width + VP8BORDERINPIXELS)));
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
threading.c 779 int uv_width; local
794 uv_width = width >>1;
806 CHECK_MEM_ERROR(pbi->mt_uabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (uv_width + VP8BORDERINPIXELS)));
810 CHECK_MEM_ERROR(pbi->mt_vabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (uv_width + VP8BORDERINPIXELS)));
  /external/opencv3/3rdparty/libwebp/dec/
io.c 562 const int uv_width = (io->mb_w + 1) >> 1; local
563 p->memory = malloc(io->mb_w + 2 * uv_width);
569 p->tmp_v = p->tmp_u + uv_width;
vp8l.c 473 const int uv_width = width >> 1; local
475 for (i = 0; i < uv_width; ++i) {
    [all...]
  /external/opencv3/3rdparty/libwebp/enc/
picture.c 50 const int uv_width = HALVE(width); local
52 const int uv_stride = uv_width;
66 uv0_stride = uv_width;
88 uv_width < 0 || uv_height < 0) { // u/v param error
583 const int uv_width = HALVE(picture->width); local
586 memset(picture->u + y * picture->uv_stride, 128, uv_width);
587 memset(picture->v + y * picture->uv_stride, 128, uv_width);
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
onyx_if.c 5646 unsigned int uv_width = (y_width + 1) \/ 2; local
    [all...]

Completed in 280 milliseconds