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

1 2

  /external/libvpx/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/chromium_org/media/cdm/ppapi/external_clear_key/
fake_cdm_video_decoder.cc 59 int y_stride = (width + kAlignment - 1) / kAlignment * kAlignment + kPadding; local
65 int v_offset = y_stride * y_rows + kPlanePadding;
77 decoded_frame->SetStride(cdm::VideoFrame::kYPlane, y_stride);
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/generic/
yv12config.c 55 int y_stride = ((aligned_width + 2 * border) + 31) & ~31; local
56 int yplane_size = (aligned_height + 2 * border) * y_stride;
60 * uv_stride == y_stride/2, so enforce this here. */
61 int uv_stride = y_stride >> 1;
85 ybf->y_stride = y_stride;
100 ybf->y_buffer = ybf->buffer_alloc + (border * y_stride) + border;
153 const int y_stride = ((aligned_width + 2 * border) + 31) & ~31; local
155 (uint64_t)y_stride;
158 const int uv_stride = y_stride >> ss_x
    [all...]
  /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;
95 ybf->y_buffer = ybf->buffer_alloc + (border * y_stride) + border;
144 const int y_stride = ((aligned_width + 2 * border) + 31) & ~31; local
145 const int yplane_size = (aligned_height + 2 * border) * y_stride;
148 const int uv_stride = y_stride >> ss_x
    [all...]
  /external/chromium_org/third_party/libvpx/source/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/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/
yv12config.h 33 int y_stride; member in struct:yv12_buffer_config
  /external/chromium_org/third_party/libwebp/dec/
buffer.c 45 const int y_stride = abs(buf->y_stride); local
49 const uint64_t y_size = (uint64_t)y_stride * height;
56 ok &= (y_stride >= width);
116 buf->y_stride = stride;
150 buf->y += (H - 1) * buf->y_stride;
151 buf->y_stride = -buf->y_stride;
decode_vp8.h 59 int y_stride; // row stride for luma member in struct:VP8Io
  /external/chromium_org/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 32 int y_stride; member in struct:yv12_buffer_config
  /external/chromium_org/media/base/
video_frame.cc 337 int32 y_stride,
356 frame->strides_[kYPlane] = y_stride;
662 size_t y_stride = RoundUp(row_bytes(VideoFrame::kYPlane), local
676 size_t y_bytes = y_height * y_stride;
696 strides_[VideoFrame::kYPlane] = y_stride;
701 strides_[VideoFrame::kAPlane] = y_stride;
  /external/chromium_org/remoting/codec/
video_encoder_vpx.cc 180 const int y_stride = ((image->w - 1) & ~15) + 16; local
181 const int uv_unaligned_stride = y_stride >> image->x_chroma_shift;
194 const int buffer_size = y_stride * y_rows + 2*uv_stride * uv_rows;
204 image->planes[1] = image->planes[0] + y_stride * y_rows;
206 image->stride[0] = y_stride;
385 const int y_stride = image_->stride[0]; local
401 y_data + yuv_offset, y_stride,
413 int y_offset = y_stride * rect.top() + rect.left();
416 y_data + y_offset, y_stride,
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoframe.cc 341 int y_stride = GetYPitch(); local
347 sample, sample_size, y, y_stride, u, u_stride, v, v_stride, horiz_crop,
  /external/chromium_org/third_party/libwebp/enc/
picture.c 56 picture->y_stride = picture->uv_stride = 0;
92 const int y_stride = width; local
112 y_size = (uint64_t)y_stride * height;
131 picture->y_stride = y_stride;
  /external/chromium_org/content/renderer/pepper/
pepper_media_stream_video_track_host.cc 343 int32 y_stride = plugin_frame_size_.width(); local
363 y_stride,
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
denoising.c 591 filter_xd->dst.y_stride,
621 int mc_avg_y_stride = denoiser->yv12_mc_running_avg.y_stride;
624 int avg_y_stride = denoiser->yv12_running_avg[INTRA_FRAME].y_stride;
668 denoiser->yv12_running_avg[INTRA_FRAME].y_stride);
691 int y_stride = denoiser->yv12_running_avg[INTRA_FRAME].y_stride; local
715 NULL, NULL, y_stride, uv_stride, &lfi);
727 NULL, NULL, y_stride, uv_stride, &lfi);
735 y_stride, x->thismb, 16);
mcomp.c 193 #define PRE(r,c) (y + (((r)>>2) * y_stride + ((c)>>2) -(offset)))
197 #define DIST(r,c) vfp->svf( PRE(r,c), y_stride, SP(c),SP(r), z,b->src_stride,&sse)
233 int y_stride; local
235 int pre_stride = x->e_mbd.pre.y_stride;
249 y_stride = 32;
252 vfp->copymem(y_0 - buf_c1 - pre_stride*buf_r1, pre_stride, xd->y_buf, y_stride, 16+buf_r1+buf_r2);
253 y = xd->y_buf + y_stride*buf_r1 +buf_c1;
256 y_stride = pre_stride;
259 offset = (bestmv->as_mv.row) * y_stride + bestmv->as_mv.col;
266 besterr = vfp->vf(y, y_stride, z, b->src_stride, sse1)
377 int y_stride; local
688 int y_stride; local
    [all...]
  /external/libyuv/files/source/
convert.cc 1517 int y_stride; member in struct:libyuv::I420Buffers
    [all...]
  /external/chromium_org/third_party/libvpx/source/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)
936 int y_stride = oci->post_proc_buffer.y_stride; local
1095 int y_stride = oci->post_proc_buffer.y_stride; local
1167 int y_stride = oci->post_proc_buffer.y_stride; local
    [all...]
  /external/chromium_org/third_party/libwebp/webp/
decode.h 185 int y_stride; // luma stride member in struct:WebPYUVABuffer
encode.h 296 int y_stride, uv_stride; // luma/chroma strides. member in struct:WebPPicture
  /external/libvpx/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...]
  /external/libvpx/libvpx/vp8/encoder/
mcomp.c 192 #define PRE(r,c) (y + (((r)>>2) * y_stride + ((c)>>2) -(offset)))
196 #define DIST(r,c) vfp->svf( PRE(r,c), y_stride, SP(c),SP(r), z,b->src_stride,&sse)
232 int y_stride; local
234 int pre_stride = x->e_mbd.pre.y_stride;
248 y_stride = 32;
251 vfp->copymem(y_0 - buf_c1 - pre_stride*buf_r1, pre_stride, xd->y_buf, y_stride, 16+buf_r1+buf_r2);
252 y = xd->y_buf + y_stride*buf_r1 +buf_c1;
255 y_stride = pre_stride;
258 offset = (bestmv->as_mv.row) * y_stride + bestmv->as_mv.col;
265 besterr = vfp->vf(y, y_stride, z, b->src_stride, sse1)
376 int y_stride; local
687 int y_stride; local
    [all...]
  /external/chromium_org/content/common/gpu/client/
gl_helper_unittest.cc 1414 int32 y_stride = truth_frame->stride(media::VideoFrame::kYPlane); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_sample_aos.c 984 LLVMValueRef x_stride, y_stride, z_stride; local
1163 LLVMValueRef x_stride, y_stride, z_stride; local
    [all...]

Completed in 1083 milliseconds

1 2