Searched refs:y_dst_stride (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/tests/checkasm/ |
D | vf_colorspace.c | 99 int y_src_stride = W << !!idepth, y_dst_stride = W << !!odepth; in check_yuv2yuv() local 100 int uv_src_stride = y_src_stride >> ss_w, uv_dst_stride = y_dst_stride >> ss_w; in check_yuv2yuv() 103 call_ref(dst0, (ptrdiff_t[3]) { y_dst_stride, uv_dst_stride, uv_dst_stride }, in check_yuv2yuv() 106 call_new(dst1, (ptrdiff_t[3]) { y_dst_stride, uv_dst_stride, uv_dst_stride }, in check_yuv2yuv() 109 if (memcmp(dst0[0], dst1[0], y_dst_stride * H) || in check_yuv2yuv() 243 int y_dst_stride = W << !!odepth; in check_rgb2yuv() local 244 int uv_dst_stride = y_dst_stride >> ss_w; in check_rgb2yuv() 247 call_ref(dst0, (ptrdiff_t[3]) { y_dst_stride, uv_dst_stride, uv_dst_stride }, in check_rgb2yuv() 249 call_new(dst1, (ptrdiff_t[3]) { y_dst_stride, uv_dst_stride, uv_dst_stride }, in check_rgb2yuv() 251 if (memcmp(dst0[0], dst1[0], H * y_dst_stride) || in check_rgb2yuv()
|