HomeSort by relevance Sort by last modified time
    Searched defs:y_stride (Results 1 - 25 of 41) sorted by null

1 2

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/
reconintra_arm.c 21 int y_stride,
30 int y_stride = x->dst.y_stride; local
35 vp8_build_intra_predictors_mby_neon_func(y_buffer, ypred_ptr, y_stride, mode, Up, Left);
41 int y_stride,
50 int y_stride = x->dst.y_stride; local
55 vp8_build_intra_predictors_mby_s_neon_func(y_buffer, ypred_ptr, y_stride, mode, Up, Left);
  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 52 int y_stride = ((aligned_width + 2 * border) + 31) & ~31; local
53 int yplane_size = (aligned_height + 2 * border) * y_stride;
57 * uv_stride == y_stride/2, so enforce this here. */
58 int uv_stride = y_stride >> 1;
82 ybf->y_stride = y_stride;
97 ybf->y_buffer = ybf->buffer_alloc + (border * y_stride) + border;
152 const int y_stride = ((aligned_width + 2 * border) + 31) & ~31; local
154 (uint64_t)y_stride + byte_alignment;
157 const int uv_stride = y_stride >> ss_x
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/
yv12config.c 54 int y_stride = ((aligned_width + 2 * border) + 31) & ~31; local
55 int yplane_size = (aligned_height + 2 * border) * y_stride;
59 * uv_stride == y_stride/2, so enforce this here. */
60 int uv_stride = y_stride >> 1;
84 ybf->y_stride = y_stride;
97 ybf->y_buffer = ybf->buffer_alloc + (border * y_stride) + border;
147 int y_stride = ((aligned_width + 2 * border) + 31) & ~31; local
148 int yplane_size = (aligned_height + 2 * border) * y_stride;
152 int uv_stride = y_stride >> ss_x
    [all...]
  /hardware/qcom/msm8x84/kernel-headers/media/
msm_media_info.h 36 * Y_Stride : Width aligned to 128
40 * Total size = align((Y_Stride * Y_Scanlines
72 * Y_Stride : Width aligned to 128
76 * Total size = align((Y_Stride * Y_Scanlines
128 * Y_Stride : Width aligned to 128
133 * View_2 begin at: Y_Stride * Y_Scanlines + UV_Stride * UV_Scanlines
134 * Total size = align((2*(Y_Stride * Y_Scanlines)
237 unsigned int y_plane, uv_plane, y_stride, local
242 y_stride = VENUS_Y_STRIDE(color_fmt, width);
250 y_plane = y_stride * y_sclines
274 unsigned int y_plane, uv_plane, y_stride, local
    [all...]
  /hardware/qcom/msm8x84/original-kernel-headers/media/
msm_media_info.h 36 * Y_Stride : Width aligned to 128
40 * Total size = align((Y_Stride * Y_Scanlines
72 * Y_Stride : Width aligned to 128
76 * Total size = align((Y_Stride * Y_Scanlines
128 * Y_Stride : Width aligned to 128
133 * View_2 begin at: Y_Stride * Y_Scanlines + UV_Stride * UV_Scanlines
134 * Total size = align((2*(Y_Stride * Y_Scanlines)
237 unsigned int y_plane, uv_plane, y_stride, local
242 y_stride = VENUS_Y_STRIDE(color_fmt, width);
250 y_plane = y_stride * y_sclines
274 unsigned int y_plane, uv_plane, y_stride, local
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
convert_jpeg.cc 25 int y_stride; member in struct:libyuv::I420Buffers
42 dest->y, dest->y_stride,
46 dest->y += rows * dest->y_stride;
60 dest->y, dest->y_stride,
64 dest->y += rows * dest->y_stride;
78 dest->y, dest->y_stride,
82 dest->y += rows * dest->y_stride;
96 dest->y, dest->y_stride,
100 dest->y += rows * dest->y_stride;
112 dest->y, dest->y_stride,
    [all...]
  /external/libvpx/libvpx/vpx_scale/
yv12config.h 34 int y_stride; member in struct:yv12_buffer_config
  /external/libyuv/files/source/
convert_jpeg.cc 26 int y_stride; member in struct:libyuv::I420Buffers
43 dest->y, dest->y_stride,
47 dest->y += rows * dest->y_stride;
61 dest->y, dest->y_stride,
65 dest->y += rows * dest->y_stride;
79 dest->y, dest->y_stride,
83 dest->y += rows * dest->y_stride;
97 dest->y, dest->y_stride,
101 dest->y += rows * dest->y_stride;
113 dest->y, dest->y_stride,
    [all...]
  /external/opencv3/3rdparty/libwebp/dec/
decode_vp8.h 59 int y_stride; // row stride for luma member in struct:VP8Io
  /external/webp/src/dec/
decode_vp8.h 59 int y_stride; // row stride for luma member in struct:VP8Io
buffer.c 52 const int y_stride = abs(buf->y_stride); local
56 const uint64_t y_size = MIN_BUFFER_SIZE(width, height, y_stride);
63 ok &= (y_stride >= width);
124 buf->y_stride = stride;
158 buf->y += (H - 1) * buf->y_stride;
159 buf->y_stride = -buf->y_stride;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/
yv12config.h 32 int y_stride; member in struct:yv12_buffer_config
  /external/libvpx/libvpx/vp9/common/
vp9_mfqe.c 72 static void apply_ifactor(const uint8_t *y, int y_stride, uint8_t *yd,
78 vp9_filter_by_weight16x16(y, y_stride, yd, yd_stride, weight);
82 filter_by_weight32x32(y, y_stride, yd, yd_stride, weight);
86 filter_by_weight64x64(y, y_stride, yd, yd_stride, weight);
134 int y_stride, int uv_stride, uint8_t *yd, uint8_t *ud,
138 copy_mem16x16(y, y_stride, yd, yd_stride);
142 copy_mem32x32(y, y_stride, yd, yd_stride);
146 copy_mem64x64(y, y_stride, yd, yd_stride);
165 const uint8_t *v, int y_stride, int uv_stride,
174 vdiff = (vpx_variance16x16(y, y_stride, yd, yd_stride, &sse) + 128) >> 8
366 const uint32_t y_stride = show->y_stride; local
    [all...]
  /external/webp/src/enc/
picture.c 57 picture->y_stride = picture->uv_stride = 0;
93 const int y_stride = width; local
113 y_size = (uint64_t)y_stride * height;
132 picture->y_stride = y_stride;
  /hardware/qcom/msm8994/kernel-headers/media/
msm_media_info.h 40 * Y_Stride : Width aligned to 128
45 * Total size = align((Y_Stride * Y_Scanlines
77 * Y_Stride : Width aligned to 128
82 * Total size = align((Y_Stride * Y_Scanlines
134 * Y_Stride : Width aligned to 128
139 * View_2 begin at: Y_Stride * Y_Scanlines + UV_Stride * UV_Scanlines
141 * Total size = align((2*(Y_Stride * Y_Scanlines)
214 * Y_Stride = align(Width, 128)
218 * Y_UBWC_Plane_size = align(Y_Stride * Y_Scanlines, 4096)
302 * Y_Stride = align(Width * 4/3, 128
530 unsigned int y_plane, uv_plane, y_stride, local
589 unsigned int y_plane, uv_plane, y_stride, local
    [all...]
  /hardware/qcom/msm8994/original-kernel-headers/media/
msm_media_info.h 40 * Y_Stride : Width aligned to 128
45 * Total size = align((Y_Stride * Y_Scanlines
77 * Y_Stride : Width aligned to 128
82 * Total size = align((Y_Stride * Y_Scanlines
134 * Y_Stride : Width aligned to 128
139 * View_2 begin at: Y_Stride * Y_Scanlines + UV_Stride * UV_Scanlines
141 * Total size = align((2*(Y_Stride * Y_Scanlines)
214 * Y_Stride = align(Width, 128)
218 * Y_UBWC_Plane_size = align(Y_Stride * Y_Scanlines, 4096)
302 * Y_Stride = align(Width * 4/3, 128
530 unsigned int y_plane, uv_plane, y_stride, local
589 unsigned int y_plane, uv_plane, y_stride, local
    [all...]
  /hardware/qcom/msm8996/kernel-headers/media/
msm_media_info.h 44 * Y_Stride : Width aligned to 128
49 * Total size = align((Y_Stride * Y_Scanlines
51 * + max(Extradata, Y_Stride * 8), 4096)
82 * Y_Stride : Width aligned to 128
87 * Total size = align((Y_Stride * Y_Scanlines
89 * + max(Extradata, Y_Stride * 8), 4096)
140 * Y_Stride : Width aligned to 128
145 * View_2 begin at: Y_Stride * Y_Scanlines + UV_Stride * UV_Scanlines
147 * Total size = align((2*(Y_Stride * Y_Scanlines)
220 * Y_Stride = align(Width, 128
714 unsigned int y_plane, uv_plane, y_stride, local
797 unsigned int y_plane, uv_plane, y_stride, local
    [all...]
  /hardware/qcom/msm8996/original-kernel-headers/media/
msm_media_info.h 44 * Y_Stride : Width aligned to 128
49 * Total size = align((Y_Stride * Y_Scanlines
51 * + max(Extradata, Y_Stride * 8), 4096)
82 * Y_Stride : Width aligned to 128
87 * Total size = align((Y_Stride * Y_Scanlines
89 * + max(Extradata, Y_Stride * 8), 4096)
140 * Y_Stride : Width aligned to 128
145 * View_2 begin at: Y_Stride * Y_Scanlines + UV_Stride * UV_Scanlines
147 * Total size = align((2*(Y_Stride * Y_Scanlines)
220 * Y_Stride = align(Width, 128
714 unsigned int y_plane, uv_plane, y_stride, local
797 unsigned int y_plane, uv_plane, y_stride, local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
denoising.c 591 filter_xd->dst.y_stride,
627 int mc_avg_y_stride = denoiser->yv12_mc_running_avg.y_stride;
630 int avg_y_stride = denoiser->yv12_running_avg[INTRA_FRAME].y_stride;
675 denoiser->yv12_running_avg[INTRA_FRAME].y_stride);
698 int y_stride = denoiser->yv12_running_avg[INTRA_FRAME].y_stride; local
722 NULL, NULL, y_stride, uv_stride, &lfi);
734 NULL, NULL, y_stride, uv_stride, &lfi);
742 y_stride, x->thismb, 16);
mcomp.c 196 #define PRE(r,c) (y + (((r)>>2) * y_stride + ((c)>>2) -(offset)))
200 #define DIST(r,c) vfp->svf( PRE(r,c), y_stride, SP(c),SP(r), z,b->src_stride,&sse)
236 int y_stride; local
238 int pre_stride = x->e_mbd.pre.y_stride;
252 y_stride = 32;
255 vfp->copymem(y_0 - buf_c1 - pre_stride*buf_r1, pre_stride, xd->y_buf, y_stride, 16+buf_r1+buf_r2);
256 y = xd->y_buf + y_stride*buf_r1 +buf_c1;
259 y_stride = pre_stride;
262 offset = (bestmv->as_mv.row) * y_stride + bestmv->as_mv.col;
269 besterr = vfp->vf(y, y_stride, z, b->src_stride, sse1)
380 int y_stride; local
691 int y_stride; local
    [all...]
  /external/libvpx/libvpx/vp8/common/
postproc.c 317 vp8_mbpost_proc_across_ip(post->y_buffer, post->y_stride, post->y_height,
319 vp8_mbpost_proc_down(post->y_buffer, post->y_stride, post->y_height,
368 source->y_buffer + 16 * mbr * source->y_stride,
369 post->y_buffer + 16 * mbr * post->y_stride, source->y_stride,
370 post->y_stride, source->y_width, ylimits, 16);
412 source->y_buffer + 16 * mbr * source->y_stride,
413 source->y_buffer + 16 * mbr * source->y_stride,
414 source->y_stride, source->y_stride, source->y_width, limits, 16)
939 int y_stride = oci->post_proc_buffer.y_stride; local
1098 int y_stride = oci->post_proc_buffer.y_stride; local
1170 int y_stride = oci->post_proc_buffer.y_stride; local
    [all...]
  /external/opencv3/3rdparty/libwebp/webp/
decode.h 185 int y_stride; // luma stride member in struct:WebPYUVABuffer
  /external/webp/include/webp/
decode.h 188 int y_stride; // luma stride member in struct:WebPYUVABuffer
  /external/webp/src/webp/
decode.h 188 int y_stride; // luma stride member in struct:WebPYUVABuffer
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
postproc.c 316 vp8_mbpost_proc_across_ip(post->y_buffer, post->y_stride, post->y_height,
318 vp8_mbpost_proc_down(post->y_buffer, post->y_stride, post->y_height,
367 source->y_buffer + 16 * mbr * source->y_stride,
368 post->y_buffer + 16 * mbr * post->y_stride, source->y_stride,
369 post->y_stride, source->y_width, ylimits, 16);
410 source->y_buffer + 16 * mbr * source->y_stride,
411 source->y_buffer + 16 * mbr * source->y_stride,
412 source->y_stride, source->y_stride, source->y_width, limits, 16)
932 int y_stride = oci->post_proc_buffer.y_stride; local
1091 int y_stride = oci->post_proc_buffer.y_stride; local
1163 int y_stride = oci->post_proc_buffer.y_stride; local
    [all...]

Completed in 577 milliseconds

1 2