• Home
  • Raw
  • Download

Lines Matching refs:height

34                int height) {  in CopyPlane()  argument
38 if (height < 0) { in CopyPlane()
39 height = -height; in CopyPlane()
40 dst_y = dst_y + (height - 1) * dst_stride_y; in CopyPlane()
45 width *= height; in CopyPlane()
46 height = 1; in CopyPlane()
80 for (y = 0; y < height; ++y) { in CopyPlane()
95 int height) { in CopyPlane_16() argument
100 width *= height; in CopyPlane_16()
101 height = 1; in CopyPlane_16()
126 for (y = 0; y < height; ++y) { in CopyPlane_16()
148 int height) { in I422Copy() argument
150 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I422Copy()
154 if (height < 0) { in I422Copy()
155 height = -height; in I422Copy()
156 src_y = src_y + (height - 1) * src_stride_y; in I422Copy()
157 src_u = src_u + (height - 1) * src_stride_u; in I422Copy()
158 src_v = src_v + (height - 1) * src_stride_v; in I422Copy()
165 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I422Copy()
167 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, height); in I422Copy()
168 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, height); in I422Copy()
187 int height) { in I444Copy() argument
188 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I444Copy()
192 if (height < 0) { in I444Copy()
193 height = -height; in I444Copy()
194 src_y = src_y + (height - 1) * src_stride_y; in I444Copy()
195 src_u = src_u + (height - 1) * src_stride_u; in I444Copy()
196 src_v = src_v + (height - 1) * src_stride_v; in I444Copy()
203 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Copy()
205 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Copy()
206 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, width, height); in I444Copy()
217 int height) { in I400ToI400() argument
218 if (!src_y || !dst_y || width <= 0 || height == 0) { in I400ToI400()
222 if (height < 0) { in I400ToI400()
223 height = -height; in I400ToI400()
224 src_y = src_y + (height - 1) * src_stride_y; in I400ToI400()
227 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I400ToI400()
242 int height) { in I420ToI400() argument
247 if (!src_y || !dst_y || width <= 0 || height == 0) { in I420ToI400()
251 if (height < 0) { in I420ToI400()
252 height = -height; in I420ToI400()
253 src_y = src_y + (height - 1) * src_stride_y; in I420ToI400()
257 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420ToI400()
271 int height) { in SplitUVPlane() argument
276 if (height < 0) { in SplitUVPlane()
277 height = -height; in SplitUVPlane()
278 dst_u = dst_u + (height - 1) * dst_stride_u; in SplitUVPlane()
279 dst_v = dst_v + (height - 1) * dst_stride_v; in SplitUVPlane()
286 width *= height; in SplitUVPlane()
287 height = 1; in SplitUVPlane()
325 for (y = 0; y < height; ++y) { in SplitUVPlane()
342 int height) { in MergeUVPlane() argument
348 if (height < 0) { in MergeUVPlane()
349 height = -height; in MergeUVPlane()
350 dst_uv = dst_uv + (height - 1) * dst_stride_uv; in MergeUVPlane()
356 width *= height; in MergeUVPlane()
357 height = 1; in MergeUVPlane()
393 for (y = 0; y < height; ++y) { in MergeUVPlane()
408 int height) { in MirrorPlane() argument
412 if (height < 0) { in MirrorPlane()
413 height = -height; in MirrorPlane()
414 src_y = src_y + (height - 1) * src_stride_y; in MirrorPlane()
459 for (y = 0; y < height; ++y) { in MirrorPlane()
477 int height) { in YUY2ToI422() argument
483 if (!src_yuy2 || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in YUY2ToI422()
487 if (height < 0) { in YUY2ToI422()
488 height = -height; in YUY2ToI422()
489 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI422()
495 width * height <= 32768) { in YUY2ToI422()
496 width *= height; in YUY2ToI422()
497 height = 1; in YUY2ToI422()
541 for (y = 0; y < height; ++y) { in YUY2ToI422()
563 int height) { in UYVYToI422() argument
569 if (!src_uyvy || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in UYVYToI422()
573 if (height < 0) { in UYVYToI422()
574 height = -height; in UYVYToI422()
575 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy; in UYVYToI422()
581 width * height <= 32768) { in UYVYToI422()
582 width *= height; in UYVYToI422()
583 height = 1; in UYVYToI422()
627 for (y = 0; y < height; ++y) { in UYVYToI422()
645 int height) { in YUY2ToY() argument
649 if (!src_yuy2 || !dst_y || width <= 0 || height == 0) { in YUY2ToY()
653 if (height < 0) { in YUY2ToY()
654 height = -height; in YUY2ToY()
655 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToY()
660 width *= height; in YUY2ToY()
661 height = 1; in YUY2ToY()
697 for (y = 0; y < height; ++y) { in YUY2ToY()
712 int height) { in I400Mirror() argument
713 if (!src_y || !dst_y || width <= 0 || height == 0) { in I400Mirror()
717 if (height < 0) { in I400Mirror()
718 height = -height; in I400Mirror()
719 src_y = src_y + (height - 1) * src_stride_y; in I400Mirror()
723 MirrorPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I400Mirror()
742 int height) { in I420Mirror() argument
744 int halfheight = (height + 1) >> 1; in I420Mirror()
746 height == 0) { in I420Mirror()
750 if (height < 0) { in I420Mirror()
751 height = -height; in I420Mirror()
752 halfheight = (height + 1) >> 1; in I420Mirror()
753 src_y = src_y + (height - 1) * src_stride_y; in I420Mirror()
762 MirrorPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Mirror()
776 int height) { in ARGBMirror() argument
780 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBMirror()
784 if (height < 0) { in ARGBMirror()
785 height = -height; in ARGBMirror()
786 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBMirror()
823 for (y = 0; y < height; ++y) { in ARGBMirror()
861 int height) { in ARGBBlend() argument
865 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBBlend()
869 if (height < 0) { in ARGBBlend()
870 height = -height; in ARGBBlend()
871 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in ARGBBlend()
877 width *= height; in ARGBBlend()
878 height = 1; in ARGBBlend()
882 for (y = 0; y < height; ++y) { in ARGBBlend()
902 int height) { in BlendPlane() argument
907 if (!src_y0 || !src_y1 || !alpha || !dst_y || width <= 0 || height == 0) { in BlendPlane()
911 if (height < 0) { in BlendPlane()
912 height = -height; in BlendPlane()
913 dst_y = dst_y + (height - 1) * dst_stride_y; in BlendPlane()
920 width *= height; in BlendPlane()
921 height = 1; in BlendPlane()
942 for (y = 0; y < height; ++y) { in BlendPlane()
976 int height) { in I420Blend() argument
986 !alpha || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in I420Blend()
991 if (height < 0) { in I420Blend()
992 height = -height; in I420Blend()
993 dst_y = dst_y + (height - 1) * dst_stride_y; in I420Blend()
999 dst_y, dst_stride_y, width, height); in I420Blend()
1056 for (y = 0; y < height; y += 2) { in I420Blend()
1058 if (y == (height - 1)) { in I420Blend()
1086 int height) { in ARGBMultiply() argument
1090 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBMultiply()
1094 if (height < 0) { in ARGBMultiply()
1095 height = -height; in ARGBMultiply()
1096 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in ARGBMultiply()
1102 width *= height; in ARGBMultiply()
1103 height = 1; in ARGBMultiply()
1140 for (y = 0; y < height; ++y) { in ARGBMultiply()
1158 int height) { in ARGBAdd() argument
1162 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBAdd()
1166 if (height < 0) { in ARGBAdd()
1167 height = -height; in ARGBAdd()
1168 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in ARGBAdd()
1174 width *= height; in ARGBAdd()
1175 height = 1; in ARGBAdd()
1217 for (y = 0; y < height; ++y) { in ARGBAdd()
1235 int height) { in ARGBSubtract() argument
1239 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBSubtract()
1243 if (height < 0) { in ARGBSubtract()
1244 height = -height; in ARGBSubtract()
1245 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in ARGBSubtract()
1251 width *= height; in ARGBSubtract()
1252 height = 1; in ARGBSubtract()
1289 for (y = 0; y < height; ++y) { in ARGBSubtract()
1308 int height) { in I422ToRGBAMatrix() argument
1314 if (!src_y || !src_u || !src_v || !dst_rgba || width <= 0 || height == 0) { in I422ToRGBAMatrix()
1318 if (height < 0) { in I422ToRGBAMatrix()
1319 height = -height; in I422ToRGBAMatrix()
1320 dst_rgba = dst_rgba + (height - 1) * dst_stride_rgba; in I422ToRGBAMatrix()
1365 for (y = 0; y < height; ++y) { in I422ToRGBAMatrix()
1386 int height) { in I422ToRGBA() argument
1389 &kYuvI601Constants, width, height); in I422ToRGBA()
1403 int height) { in I422ToBGRA() argument
1408 width, height); in I422ToBGRA()
1420 int height) { in NV12ToRGB565() argument
1425 if (!src_y || !src_uv || !dst_rgb565 || width <= 0 || height == 0) { in NV12ToRGB565()
1429 if (height < 0) { in NV12ToRGB565()
1430 height = -height; in NV12ToRGB565()
1431 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565; in NV12ToRGB565()
1467 for (y = 0; y < height; ++y) { in NV12ToRGB565()
1485 int height) { in RAWToRGB24() argument
1489 if (!src_raw || !dst_rgb24 || width <= 0 || height == 0) { in RAWToRGB24()
1493 if (height < 0) { in RAWToRGB24()
1494 height = -height; in RAWToRGB24()
1495 src_raw = src_raw + (height - 1) * src_stride_raw; in RAWToRGB24()
1500 width *= height; in RAWToRGB24()
1501 height = 1; in RAWToRGB24()
1529 for (y = 0; y < height; ++y) { in RAWToRGB24()
1541 int height, in SetPlane() argument
1545 if (height < 0) { in SetPlane()
1546 height = -height; in SetPlane()
1547 dst_y = dst_y + (height - 1) * dst_stride_y; in SetPlane()
1552 width *= height; in SetPlane()
1553 height = 1; in SetPlane()
1579 for (y = 0; y < height; ++y) { in SetPlane()
1596 int height, in I420Rect() argument
1601 int halfheight = (height + 1) >> 1; in I420Rect()
1605 if (!dst_y || !dst_u || !dst_v || width <= 0 || height == 0 || x < 0 || in I420Rect()
1611 SetPlane(start_y, dst_stride_y, width, height, value_y); in I420Rect()
1624 int height, in ARGBRect() argument
1628 if (!dst_argb || width <= 0 || height == 0 || dst_x < 0 || dst_y < 0) { in ARGBRect()
1631 if (height < 0) { in ARGBRect()
1632 height = -height; in ARGBRect()
1633 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in ARGBRect()
1639 width *= height; in ARGBRect()
1640 height = 1; in ARGBRect()
1667 for (y = 0; y < height; ++y) { in ARGBRect()
1693 int height) { in ARGBAttenuate() argument
1697 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBAttenuate()
1700 if (height < 0) { in ARGBAttenuate()
1701 height = -height; in ARGBAttenuate()
1702 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBAttenuate()
1707 width *= height; in ARGBAttenuate()
1708 height = 1; in ARGBAttenuate()
1744 for (y = 0; y < height; ++y) { in ARGBAttenuate()
1759 int height) { in ARGBUnattenuate() argument
1763 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBUnattenuate()
1766 if (height < 0) { in ARGBUnattenuate()
1767 height = -height; in ARGBUnattenuate()
1768 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBUnattenuate()
1773 width *= height; in ARGBUnattenuate()
1774 height = 1; in ARGBUnattenuate()
1795 for (y = 0; y < height; ++y) { in ARGBUnattenuate()
1810 int height) { in ARGBGrayTo() argument
1814 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBGrayTo()
1817 if (height < 0) { in ARGBGrayTo()
1818 height = -height; in ARGBGrayTo()
1819 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBGrayTo()
1824 width *= height; in ARGBGrayTo()
1825 height = 1; in ARGBGrayTo()
1844 for (y = 0; y < height; ++y) { in ARGBGrayTo()
1859 int height) { in ARGBGray() argument
1864 if (!dst_argb || width <= 0 || height <= 0 || dst_x < 0 || dst_y < 0) { in ARGBGray()
1869 width *= height; in ARGBGray()
1870 height = 1; in ARGBGray()
1889 for (y = 0; y < height; ++y) { in ARGBGray()
1903 int height) { in ARGBSepia() argument
1907 if (!dst_argb || width <= 0 || height <= 0 || dst_x < 0 || dst_y < 0) { in ARGBSepia()
1912 width *= height; in ARGBSepia()
1913 height = 1; in ARGBSepia()
1932 for (y = 0; y < height; ++y) { in ARGBSepia()
1948 int height) { in ARGBColorMatrix() argument
1953 if (!src_argb || !dst_argb || !matrix_argb || width <= 0 || height == 0) { in ARGBColorMatrix()
1956 if (height < 0) { in ARGBColorMatrix()
1957 height = -height; in ARGBColorMatrix()
1958 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBColorMatrix()
1963 width *= height; in ARGBColorMatrix()
1964 height = 1; in ARGBColorMatrix()
1977 for (y = 0; y < height; ++y) { in ARGBColorMatrix()
1994 int height) { in RGBColorMatrix() argument
1997 if (!dst_argb || !matrix_rgb || width <= 0 || height <= 0 || dst_x < 0 || in RGBColorMatrix()
2019 dst_stride_argb, &matrix_argb[0], width, height); in RGBColorMatrix()
2031 int height) { in ARGBColorTable() argument
2036 if (!dst_argb || !table_argb || width <= 0 || height <= 0 || dst_x < 0 || in ARGBColorTable()
2042 width *= height; in ARGBColorTable()
2043 height = 1; in ARGBColorTable()
2051 for (y = 0; y < height; ++y) { in ARGBColorTable()
2067 int height) { in RGBColorTable() argument
2072 if (!dst_argb || !table_argb || width <= 0 || height <= 0 || dst_x < 0 || in RGBColorTable()
2078 width *= height; in RGBColorTable()
2079 height = 1; in RGBColorTable()
2087 for (y = 0; y < height; ++y) { in RGBColorTable()
2112 int height) { in ARGBQuantize() argument
2117 if (!dst_argb || width <= 0 || height <= 0 || dst_x < 0 || dst_y < 0 || in ARGBQuantize()
2123 width *= height; in ARGBQuantize()
2124 height = 1; in ARGBQuantize()
2137 for (y = 0; y < height; ++y) { in ARGBQuantize()
2152 int height) { in ARGBComputeCumulativeSum() argument
2158 if (!dst_cumsum || !src_argb || width <= 0 || height <= 0) { in ARGBComputeCumulativeSum()
2167 for (y = 0; y < height; ++y) { in ARGBComputeCumulativeSum()
2188 int height, in ARGBBlur() argument
2201 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBBlur()
2204 if (height < 0) { in ARGBBlur()
2205 height = -height; in ARGBBlur()
2206 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBBlur()
2209 if (radius > height) { in ARGBBlur()
2210 radius = height; in ARGBBlur()
2235 for (y = 0; y < height; ++y) { in ARGBBlur()
2237 int bot_y = ((y + radius) < height) ? (y + radius) : (height - 1); in ARGBBlur()
2252 if ((y + radius) < height) { in ARGBBlur()
2296 int height, in ARGBShade() argument
2301 if (!src_argb || !dst_argb || width <= 0 || height == 0 || value == 0u) { in ARGBShade()
2304 if (height < 0) { in ARGBShade()
2305 height = -height; in ARGBShade()
2306 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBShade()
2311 width *= height; in ARGBShade()
2312 height = 1; in ARGBShade()
2331 for (y = 0; y < height; ++y) { in ARGBShade()
2348 int height, in InterpolatePlane() argument
2354 if (!src0 || !src1 || !dst || width <= 0 || height == 0) { in InterpolatePlane()
2358 if (height < 0) { in InterpolatePlane()
2359 height = -height; in InterpolatePlane()
2360 dst = dst + (height - 1) * dst_stride; in InterpolatePlane()
2365 width *= height; in InterpolatePlane()
2366 height = 1; in InterpolatePlane()
2410 for (y = 0; y < height; ++y) { in InterpolatePlane()
2428 int height, in ARGBInterpolate() argument
2432 width * 4, height, interpolation); in ARGBInterpolate()
2456 int height, in I420Interpolate() argument
2459 int halfheight = (height + 1) >> 1; in I420Interpolate()
2461 !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in I420Interpolate()
2465 dst_stride_y, width, height, interpolation); in I420Interpolate()
2481 int height) { in ARGBShuffle() argument
2485 if (!src_bgra || !dst_argb || width <= 0 || height == 0) { in ARGBShuffle()
2489 if (height < 0) { in ARGBShuffle()
2490 height = -height; in ARGBShuffle()
2491 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in ARGBShuffle()
2496 width *= height; in ARGBShuffle()
2497 height = 1; in ARGBShuffle()
2541 for (y = 0; y < height; ++y) { in ARGBShuffle()
2555 int height, in ARGBSobelize() argument
2569 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBSobelize()
2573 if (height < 0) { in ARGBSobelize()
2574 height = -height; in ARGBSobelize()
2575 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBSobelize()
2652 for (y = 0; y < height; ++y) { in ARGBSobelize()
2654 if (y < (height - 1)) { in ARGBSobelize()
2687 int height) { in ARGBSobel() argument
2715 width, height, SobelRow); in ARGBSobel()
2725 int height) { in ARGBSobelToPlane() argument
2753 height, SobelToPlaneRow); in ARGBSobelToPlane()
2764 int height) { in ARGBSobelXY() argument
2792 width, height, SobelXYRow); in ARGBSobelXY()
2803 int height) { in ARGBPolynomial() argument
2807 if (!src_argb || !dst_argb || !poly || width <= 0 || height == 0) { in ARGBPolynomial()
2811 if (height < 0) { in ARGBPolynomial()
2812 height = -height; in ARGBPolynomial()
2813 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBPolynomial()
2818 width *= height; in ARGBPolynomial()
2819 height = 1; in ARGBPolynomial()
2834 for (y = 0; y < height; ++y) { in ARGBPolynomial()
2851 int height) { in HalfFloatPlane() argument
2855 if (!src_y || !dst_y || width <= 0 || height == 0) { in HalfFloatPlane()
2861 if (height < 0) { in HalfFloatPlane()
2862 height = -height; in HalfFloatPlane()
2863 src_y = src_y + (height - 1) * src_stride_y; in HalfFloatPlane()
2868 width *= height; in HalfFloatPlane()
2869 height = 1; in HalfFloatPlane()
2907 for (y = 0; y < height; ++y) { in HalfFloatPlane()
2923 int height) { in ARGBLumaColorTable() argument
2928 if (!src_argb || !dst_argb || !luma || width <= 0 || height == 0) { in ARGBLumaColorTable()
2932 if (height < 0) { in ARGBLumaColorTable()
2933 height = -height; in ARGBLumaColorTable()
2934 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBLumaColorTable()
2939 width *= height; in ARGBLumaColorTable()
2940 height = 1; in ARGBLumaColorTable()
2949 for (y = 0; y < height; ++y) { in ARGBLumaColorTable()
2964 int height) { in ARGBCopyAlpha() argument
2968 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBCopyAlpha()
2972 if (height < 0) { in ARGBCopyAlpha()
2973 height = -height; in ARGBCopyAlpha()
2974 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBCopyAlpha()
2979 width *= height; in ARGBCopyAlpha()
2980 height = 1; in ARGBCopyAlpha()
3000 for (y = 0; y < height; ++y) { in ARGBCopyAlpha()
3015 int height) { in ARGBExtractAlpha() argument
3016 if (!src_argb || !dst_a || width <= 0 || height == 0) { in ARGBExtractAlpha()
3020 if (height < 0) { in ARGBExtractAlpha()
3021 height = -height; in ARGBExtractAlpha()
3022 src_argb += (height - 1) * src_stride; in ARGBExtractAlpha()
3027 width *= height; in ARGBExtractAlpha()
3028 height = 1; in ARGBExtractAlpha()
3052 for (int y = 0; y < height; ++y) { in ARGBExtractAlpha()
3067 int height) { in ARGBCopyYToAlpha() argument
3071 if (!src_y || !dst_argb || width <= 0 || height == 0) { in ARGBCopyYToAlpha()
3075 if (height < 0) { in ARGBCopyYToAlpha()
3076 height = -height; in ARGBCopyYToAlpha()
3077 src_y = src_y + (height - 1) * src_stride_y; in ARGBCopyYToAlpha()
3082 width *= height; in ARGBCopyYToAlpha()
3083 height = 1; in ARGBCopyYToAlpha()
3103 for (y = 0; y < height; ++y) { in ARGBCopyYToAlpha()
3122 int height) { in YUY2ToNV12() argument
3130 if (!src_yuy2 || !dst_y || !dst_uv || width <= 0 || height == 0) { in YUY2ToNV12()
3134 if (height < 0) { in YUY2ToNV12()
3135 height = -height; in YUY2ToNV12()
3136 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToNV12()
3201 for (y = 0; y < height - 1; y += 2) { in YUY2ToNV12()
3212 if (height & 1) { in YUY2ToNV12()
3230 int height) { in UYVYToNV12() argument
3238 if (!src_uyvy || !dst_y || !dst_uv || width <= 0 || height == 0) { in UYVYToNV12()
3242 if (height < 0) { in UYVYToNV12()
3243 height = -height; in UYVYToNV12()
3244 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy; in UYVYToNV12()
3309 for (y = 0; y < height - 1; y += 2) { in UYVYToNV12()
3320 if (height & 1) { in UYVYToNV12()