HomeSort by relevance Sort by last modified time
    Searched full:stride_y (Results 1 - 25 of 25) sorted by null

  /external/webrtc/webrtc/modules/video_processing/
video_denoiser.cc 24 int stride_y,
29 uint8_t* mb_dst = y_dst + (mb_row << 4) * stride_y + (mb_col << 4);
30 const uint8_t* mb_src = y_src + (mb_row << 4) * stride_y + (mb_col << 4);
43 filter_->CopyMem16x16(mb_src, stride_y, mb_dst, stride_y);
55 filter_->CopyMem16x16(mb_src, stride_y, mb_dst, stride_y);
63 int stride_y = frame.stride(kYPlane); local
73 stride_y, stride_u, stride_v);
95 const uint8_t* mb_src = y_src + (mb_row << 4) * stride_y + (mb_col << 4)
    [all...]
video_denoiser.h 28 int stride_y,
  /external/webrtc/webrtc/common_video/
video_frame.cc 61 int stride_y,
67 RTC_DCHECK_GE(stride_y, width);
81 height == video_frame_buffer_->height() && stride_y == stride(kYPlane) &&
88 width, height, stride_y, stride_u, stride_v);
97 int stride_y,
100 return CreateFrame(buffer_y, buffer_u, buffer_v, width, height, stride_y,
109 int stride_y,
114 const int expected_size_y = height * stride_y;
117 CreateEmptyFrame(width, height, stride_y, stride_u, stride_v);
129 const int stride_y = width local
    [all...]
i420_video_frame_unittest.cc 59 int stride_y = frame.stride(kYPlane); local
63 EXPECT_EQ(ExpectedSize(stride_y, height, kYPlane),
75 int stride_y = 15; local
83 stride_y, stride_u, stride_v));
100 width + 5, height + 5, stride_y + 5,
109 stride_y, stride_u, stride_v));
121 int stride_y = 15; local
139 stride_y, stride_u, stride_v, kRotation));
192 int stride_y = 15; local
197 stride_y, stride_uv, stride_uv))
    [all...]
video_frame_buffer.cc 34 int stride_y,
39 stride_y_(stride_y),
43 stride_y * height + (stride_u + stride_v) * ((height + 1) / 2),
47 RTC_DCHECK_GE(stride_y, width);
  /external/webrtc/webrtc/common_video/libyuv/
libyuv_unittest.cc 165 int stride_y = 0; local
167 Calc16ByteAlignedStride(width_, &stride_y, &stride_uv);
168 res_i420_frame.CreateEmptyFrame(width_, height_, stride_y,
281 int stride_y = 0; local
283 Calc16ByteAlignedStride(width_, &stride_y, &stride_uv);
285 stride_y, stride_uv, stride_uv));
306 int stride_y; local
308 Calc16ByteAlignedStride(rotated_width, &stride_y, &stride_uv);
311 stride_y,
333 int stride_y = 0 local
    [all...]
webrtc_libyuv.cc 64 void Calc16ByteAlignedStride(int width, int* stride_y, int* stride_uv) {
65 *stride_y = AlignInt(width, k16ByteAlignment);
  /external/webrtc/webrtc/modules/video_processing/util/
skin_detection.cc 46 const int stride_y,
51 const uint8_t* y = y_src + ((mb_row << 4) + 8) * stride_y + (mb_col << 4) + 8;
55 uint8_t y_avg = (*y + *(y + 1) + *(y + stride_y) + *(y + stride_y + 1)) >> 2;
skin_detection.h 20 const int stride_y,
  /frameworks/rs/cpu_ref/
rsCpuIntrinsic3DLUT.cpp 81 const size_t stride_y = cp->mLUT->mHal.drvState.lod[0].stride; local
82 const size_t stride_z = stride_y * cp->mLUT->mHal.drvState.lod[0].dimY;
84 //ALOGE("strides %zu %zu", stride_y, stride_z);
91 bp, stride_y, stride_z,
109 const uchar *bp2 = bp + (coord1.x * 4) + (coord1.y * stride_y) + (coord1.z * stride_z);
111 const uchar4 *pt_10 = (const uchar4 *)&bp2[stride_y];
113 const uchar4 *pt_11 = (const uchar4 *)&bp2[stride_y + stride_z];
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/test/
vp8_impl_unittest.cc 135 int stride_y = 0; local
136 Calc16ByteAlignedStride(codec_inst_.width, &stride_y, &stride_uv);
137 EXPECT_EQ(stride_y, 176);
141 stride_y, stride_uv, stride_uv);
  /external/webrtc/webrtc/
video_frame.h 40 int stride_y,
52 int stride_y,
62 int stride_y,
  /external/webrtc/webrtc/modules/video_capture/
video_capture_impl.cc 261 int stride_y = width; local
279 //Calc16ByteAlignedStride(target_width, &stride_y, &stride_uv);
285 stride_y,
  /external/webrtc/webrtc/common_video/libyuv/include/
webrtc_libyuv.h 64 // - stride_y : Pointer to the stride of the y plane.
68 void Calc16ByteAlignedStride(int width, int* stride_y, int* stride_uv);
  /external/webrtc/webrtc/tools/frame_analyzer/
video_quality_analysis.cc 196 int stride_y = width; local
213 result = libyuv::I420Ssim(src_y_a, stride_y, src_u_a, stride_uv,
214 src_v_a, stride_uv, src_y_b, stride_y,
  /external/webrtc/webrtc/common_video/include/
video_frame_buffer.h 68 I420Buffer(int width, int height, int stride_y, int stride_u, int stride_v);
  /external/webrtc/talk/media/base/
videoframe_unittest.h 299 int stride_y = frame->GetYPitch(); local
305 frame->GetYPlane()[stride_y * y + x] = quad1[y1_pos];
307 frame->GetYPlane()[stride_y * y + x + 1] = quad1[y2_pos];
343 int stride_y = frame->GetYPitch(); local
358 frame->GetYPlane()[stride_y * y + x] = yuv[0][0];
360 frame->GetYPlane()[stride_y * y + x + 1] = yuv[1][0];
363 frame->GetYPlane()[stride_y * (y + 1) + x] = yuv[2][0];
365 frame->GetYPlane()[stride_y * (y + 1) + x + 1] = yuv[3][0];
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
simulcast_unittest.h 895 int stride_y = kDefaultWidth + 20; local
    [all...]
  /hardware/ti/omap4-aah/domx/omx_proxy_component/omx_camera/src/
omx_proxy_camera.c 405 OMX_U32 stride_Y = 0, stride_UV = 0;
425 ret = ion_alloc_tiler(pCompPrv->ion_fd, MAX_VTC_WIDTH_WITH_VNF, MAX_VTC_HEIGHT_WITH_VNF, TILER_PIXEL_FMT_8BIT, OMAP_ION_HEAP_TILER_MASK, &handle, (size_t *)&stride_Y);
480 &handle, &stride_Y);
  /external/webrtc/webrtc/base/
x11windowpicker.cc 575 int stride_y,
578 int len = stride_x * stride_y * 4;
  /bionic/libc/kernel/uapi/drm/
i915_drm.h 659 __u16 stride_Y;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/drm/
i915_drm.h 779 __u16 stride_Y; /* stride for packed formats */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/drm/
i915_drm.h 803 __u16 stride_Y; /* stride for packed formats */
  /external/kernel-headers/original/uapi/drm/
i915_drm.h 993 __u16 stride_Y; /* stride for packed formats */
    [all...]
  /external/libdrm/include/drm/
i915_drm.h     [all...]

Completed in 300 milliseconds