Searched refs:stride_y (Results 1 - 21 of 21) sorted by relevance

/external/webrtc/webrtc/modules/video_processing/util/
H A Dskin_detection.h20 const int stride_y,
H A Dskin_detection.cc46 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;
43 MbHasSkinColor(const uint8_t* y_src, const uint8_t* u_src, const uint8_t* v_src, const int stride_y, const int stride_u, const int stride_v, const int mb_row, const int mb_col) argument
/external/webrtc/webrtc/modules/video_processing/
H A Dvideo_denoiser.cc24 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
21 TrailingReduction(int mb_rows, int mb_cols, const uint8_t* y_src, int stride_y, uint8_t* y_dst) argument
[all...]
H A Dvideo_denoiser.h28 int stride_y,
/external/webrtc/webrtc/common_video/
H A Dvideo_frame.cc61 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 local
59 CreateEmptyFrame(int width, int height, int stride_y, int stride_u, int stride_v) argument
92 CreateFrame(const uint8_t* buffer_y, const uint8_t* buffer_u, const uint8_t* buffer_v, int width, int height, int stride_y, int stride_u, int stride_v) argument
104 CreateFrame(const uint8_t* buffer_y, const uint8_t* buffer_u, const uint8_t* buffer_v, int width, int height, int stride_y, int stride_u, int stride_v, VideoRotation rotation) argument
[all...]
H A Di420_video_frame_unittest.cc59 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_u
[all...]
H A Dvideo_frame_buffer.cc34 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);
32 I420Buffer(int width, int height, int stride_y, int stride_u, int stride_v) argument
/external/tensorflow/tensorflow/contrib/receptive_field/python/util/
H A Dparse_layer_parameters.py47 stride_y: Stride size for vertical direction (integer).
59 stride_y = t[1]
64 stride_y = strides_attr.list.i[1]
66 return stride_x, stride_y
262 stride_y: Stride size for vertical direction (integer).
275 stride_x, stride_y = _stride_size(node, name_to_node)
282 node, kernel_size_y, stride_y, input_resolution[0]
289 stride_y = 1
293 stride_x, stride_y = _stride_size(node, name_to_node)
300 node, kernel_size_y, stride_y, input_resolutio
[all...]
H A Dgraph_compute_order.py139 (kernel_size_x, kernel_size_y, stride_x, stride_y, _, _, total_padding_x,
144 'stride_x = %s, stride_y = %s, '
146 (kernel_size_x, kernel_size_y, stride_x, stride_y,
152 stride_y, total_padding_y)
H A Dreceptive_field.py277 (kernel_size_x, kernel_size_y, stride_x, stride_y, padding_x,
281 "stride_x = %s, stride_y = %s, "
283 (kernel_size_x, kernel_size_y, stride_x, stride_y, padding_x,
292 rf_size_input_y = _get_rf_size_node_input(stride_y, kernel_size_y,
297 stride_y, effective_strides_y[node.name])
302 stride_y, padding_y, effective_paddings_y[node.name])
/external/webrtc/webrtc/common_video/libyuv/
H A Dlibyuv_unittest.cc165 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 local
[all...]
H A Dwebrtc_libyuv.cc64 void Calc16ByteAlignedStride(int width, int* stride_y, int* stride_uv) { argument
65 *stride_y = AlignInt(width, k16ByteAlignment);
/external/webrtc/webrtc/
H A Dvideo_frame.h40 int stride_y,
52 int stride_y,
62 int stride_y,
/external/webrtc/webrtc/common_video/libyuv/include/
H A Dwebrtc_libyuv.h64 // - stride_y : Pointer to the stride of the y plane.
68 void Calc16ByteAlignedStride(int width, int* stride_y, int* stride_uv);
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/test/
H A Dvp8_impl_unittest.cc135 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/tools/frame_analyzer/
H A Dvideo_quality_analysis.cc196 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/
H A Dvideo_frame_buffer.h68 I420Buffer(int width, int height, int stride_y, int stride_u, int stride_v);
/external/webrtc/webrtc/modules/video_capture/
H A Dvideo_capture_impl.cc261 int stride_y = width; local
279 //Calc16ByteAlignedStride(target_width, &stride_y, &stride_uv);
285 stride_y,
/external/webrtc/talk/media/base/
H A Dvideoframe_unittest.h299 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];
/external/webrtc/webrtc/base/
H A Dx11windowpicker.cc575 int stride_y,
578 int len = stride_x * stride_y * 4;
569 ArgbToRgba(uint32_t* argb_data, int x, int y, int w, int h, int stride_x, int stride_y, bool has_alpha) argument
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Dsimulcast_unittest.h894 // 1. stride > width 2. stride_y != stride_uv/2
895 int stride_y = kDefaultWidth + 20; local
897 input_frame_.CreateEmptyFrame(kDefaultWidth, kDefaultHeight, stride_y,

Completed in 1101 milliseconds