Lines Matching refs:dst_height
28 int dst_height, in I420TestRotate() argument
42 if (dst_height < 1) { in I420TestRotate()
43 dst_height = 1; in I420TestRotate()
53 int dst_i420_y_size = dst_width * dst_height; in I420TestRotate()
54 int dst_i420_uv_size = ((dst_width + 1) / 2) * ((dst_height + 1) / 2); in I420TestRotate()
147 int dst_height, in I422TestRotate() argument
161 if (dst_height < 1) { in I422TestRotate()
162 dst_height = 1; in I422TestRotate()
172 int dst_i422_y_size = dst_width * dst_height; in I422TestRotate()
173 int dst_i422_uv_size = ((dst_width + 1) / 2) * dst_height; in I422TestRotate()
235 int dst_height, in I444TestRotate() argument
249 if (dst_height < 1) { in I444TestRotate()
250 dst_height = 1; in I444TestRotate()
260 int dst_i444_y_size = dst_width * dst_height; in I444TestRotate()
261 int dst_i444_uv_size = dst_width * dst_height; in I444TestRotate()
352 int dst_height, in NV12TestRotate() argument
366 if (dst_height < 1) { in NV12TestRotate()
367 dst_height = 1; in NV12TestRotate()
378 int dst_i420_y_size = dst_width * dst_height; in NV12TestRotate()
379 int dst_i420_uv_size = ((dst_width + 1) / 2) * ((dst_height + 1) / 2); in NV12TestRotate()
606 int dst_height, in I010TestRotate() argument
620 if (dst_height < 1) { in I010TestRotate()
621 dst_height = 1; in I010TestRotate()
631 int dst_i010_y_size = dst_width * dst_height; in I010TestRotate()
632 int dst_i010_uv_size = ((dst_width + 1) / 2) * ((dst_height + 1) / 2); in I010TestRotate()
694 int dst_height, in I210TestRotate() argument
708 if (dst_height < 1) { in I210TestRotate()
709 dst_height = 1; in I210TestRotate()
719 int dst_i210_y_size = dst_width * dst_height; in I210TestRotate()
720 int dst_i210_uv_size = ((dst_width + 1) / 2) * dst_height; in I210TestRotate()
782 int dst_height, in I410TestRotate() argument
796 if (dst_height < 1) { in I410TestRotate()
797 dst_height = 1; in I410TestRotate()
807 int dst_i410_y_size = dst_width * dst_height; in I410TestRotate()
808 int dst_i410_uv_size = dst_width * dst_height; in I410TestRotate()