Lines Matching refs:src_height

37                             int src_height,  in ScalePlaneDown2()  argument
54 (void)src_height; in ScalePlaneDown2()
141 int src_height, in ScalePlaneDown2_16() argument
158 (void)src_height; in ScalePlaneDown2_16()
204 int src_height, in ScalePlaneDown4() argument
218 (void)src_height; in ScalePlaneDown4()
278 int src_height, in ScalePlaneDown4_16() argument
292 (void)src_height; in ScalePlaneDown4_16()
330 int src_height, in ScalePlaneDown34() argument
345 (void)src_height; in ScalePlaneDown34()
432 int src_height, in ScalePlaneDown34_16() argument
447 (void)src_height; in ScalePlaneDown34_16()
531 int src_height, in ScalePlaneDown38() argument
547 (void)src_height; in ScalePlaneDown38()
653 int src_height, in ScalePlaneDown38_16() argument
668 (void)src_height; in ScalePlaneDown38_16()
855 int src_height, in ScalePlaneBox() argument
868 const int max_y = (src_height << 16); in ScalePlaneBox()
869 ScaleSlope(src_width, src_height, dst_width, dst_height, kFilterBox, &x, &y, in ScalePlaneBox()
944 int src_height, in ScalePlaneBox_16() argument
957 const int max_y = (src_height << 16); in ScalePlaneBox_16()
958 ScaleSlope(src_width, src_height, dst_width, dst_height, kFilterBox, &x, &y, in ScalePlaneBox_16()
999 int src_height, in ScalePlaneBilinearDown() argument
1016 const int max_y = (src_height - 1) << 16; in ScalePlaneBilinearDown()
1024 ScaleSlope(src_width, src_height, dst_width, dst_height, filtering, &x, &y, in ScalePlaneBilinearDown()
1106 int src_height, in ScalePlaneBilinearDown_16() argument
1123 const int max_y = (src_height - 1) << 16; in ScalePlaneBilinearDown_16()
1131 ScaleSlope(src_width, src_height, dst_width, dst_height, filtering, &x, &y, in ScalePlaneBilinearDown_16()
1206 int src_height, in ScalePlaneBilinearUp() argument
1220 const int max_y = (src_height - 1) << 16; in ScalePlaneBilinearUp()
1227 ScaleSlope(src_width, src_height, dst_width, dst_height, filtering, &x, &y, in ScalePlaneBilinearUp()
1305 if (src_height > 1) { in ScalePlaneBilinearUp()
1341 int src_height, in ScalePlaneBilinearUp_16() argument
1355 const int max_y = (src_height - 1) << 16; in ScalePlaneBilinearUp_16()
1362 ScaleSlope(src_width, src_height, dst_width, dst_height, filtering, &x, &y, in ScalePlaneBilinearUp_16()
1440 if (src_height > 1) { in ScalePlaneBilinearUp_16()
1481 int src_height, in ScalePlaneSimple() argument
1496 ScaleSlope(src_width, src_height, dst_width, dst_height, kFilterNone, &x, &y, in ScalePlaneSimple()
1517 int src_height, in ScalePlaneSimple_16() argument
1532 ScaleSlope(src_width, src_height, dst_width, dst_height, kFilterNone, &x, &y, in ScalePlaneSimple_16()
1559 int src_height, in ScalePlane() argument
1566 filtering = ScaleFilterReduce(src_width, src_height, dst_width, dst_height, in ScalePlane()
1570 if (src_height < 0) { in ScalePlane()
1571 src_height = -src_height; in ScalePlane()
1572 src = src + (src_height - 1) * src_stride; in ScalePlane()
1578 if (dst_width == src_width && dst_height == src_height) { in ScalePlane()
1584 int dy = FixedDiv(src_height, dst_height); in ScalePlane()
1586 ScalePlaneVertical(src_height, dst_width, dst_height, src_stride, in ScalePlane()
1590 if (dst_width <= Abs(src_width) && dst_height <= src_height) { in ScalePlane()
1592 if (4 * dst_width == 3 * src_width && 4 * dst_height == 3 * src_height) { in ScalePlane()
1594 ScalePlaneDown34(src_width, src_height, dst_width, dst_height, src_stride, in ScalePlane()
1598 if (2 * dst_width == src_width && 2 * dst_height == src_height) { in ScalePlane()
1600 ScalePlaneDown2(src_width, src_height, dst_width, dst_height, src_stride, in ScalePlane()
1605 if (8 * dst_width == 3 * src_width && 8 * dst_height == 3 * src_height) { in ScalePlane()
1607 ScalePlaneDown38(src_width, src_height, dst_width, dst_height, src_stride, in ScalePlane()
1611 if (4 * dst_width == src_width && 4 * dst_height == src_height && in ScalePlane()
1614 ScalePlaneDown4(src_width, src_height, dst_width, dst_height, src_stride, in ScalePlane()
1619 if (filtering == kFilterBox && dst_height * 2 < src_height) { in ScalePlane()
1620 ScalePlaneBox(src_width, src_height, dst_width, dst_height, src_stride, in ScalePlane()
1624 if (filtering && dst_height > src_height) { in ScalePlane()
1625 ScalePlaneBilinearUp(src_width, src_height, dst_width, dst_height, in ScalePlane()
1630 ScalePlaneBilinearDown(src_width, src_height, dst_width, dst_height, in ScalePlane()
1634 ScalePlaneSimple(src_width, src_height, dst_width, dst_height, src_stride, in ScalePlane()
1642 int src_height, in ScalePlane_16() argument
1649 filtering = ScaleFilterReduce(src_width, src_height, dst_width, dst_height, in ScalePlane_16()
1653 if (src_height < 0) { in ScalePlane_16()
1654 src_height = -src_height; in ScalePlane_16()
1655 src = src + (src_height - 1) * src_stride; in ScalePlane_16()
1661 if (dst_width == src_width && dst_height == src_height) { in ScalePlane_16()
1667 int dy = FixedDiv(src_height, dst_height); in ScalePlane_16()
1669 ScalePlaneVertical_16(src_height, dst_width, dst_height, src_stride, in ScalePlane_16()
1673 if (dst_width <= Abs(src_width) && dst_height <= src_height) { in ScalePlane_16()
1675 if (4 * dst_width == 3 * src_width && 4 * dst_height == 3 * src_height) { in ScalePlane_16()
1677 ScalePlaneDown34_16(src_width, src_height, dst_width, dst_height, in ScalePlane_16()
1681 if (2 * dst_width == src_width && 2 * dst_height == src_height) { in ScalePlane_16()
1683 ScalePlaneDown2_16(src_width, src_height, dst_width, dst_height, in ScalePlane_16()
1688 if (8 * dst_width == 3 * src_width && 8 * dst_height == 3 * src_height) { in ScalePlane_16()
1690 ScalePlaneDown38_16(src_width, src_height, dst_width, dst_height, in ScalePlane_16()
1694 if (4 * dst_width == src_width && 4 * dst_height == src_height && in ScalePlane_16()
1697 ScalePlaneDown4_16(src_width, src_height, dst_width, dst_height, in ScalePlane_16()
1702 if (filtering == kFilterBox && dst_height * 2 < src_height) { in ScalePlane_16()
1703 ScalePlaneBox_16(src_width, src_height, dst_width, dst_height, src_stride, in ScalePlane_16()
1707 if (filtering && dst_height > src_height) { in ScalePlane_16()
1708 ScalePlaneBilinearUp_16(src_width, src_height, dst_width, dst_height, in ScalePlane_16()
1713 ScalePlaneBilinearDown_16(src_width, src_height, dst_width, dst_height, in ScalePlane_16()
1717 ScalePlaneSimple_16(src_width, src_height, dst_width, dst_height, src_stride, in ScalePlane_16()
1732 int src_height, in I420Scale() argument
1743 int src_halfheight = SUBSAMPLE(src_height, 1, 1); in I420Scale()
1746 if (!src_y || !src_u || !src_v || src_width == 0 || src_height == 0 || in I420Scale()
1747 src_width > 32768 || src_height > 32768 || !dst_y || !dst_u || !dst_v || in I420Scale()
1752 ScalePlane(src_y, src_stride_y, src_width, src_height, dst_y, dst_stride_y, in I420Scale()
1769 int src_height, in I420Scale_16() argument
1780 int src_halfheight = SUBSAMPLE(src_height, 1, 1); in I420Scale_16()
1783 if (!src_y || !src_u || !src_v || src_width == 0 || src_height == 0 || in I420Scale_16()
1784 src_width > 32768 || src_height > 32768 || !dst_y || !dst_u || !dst_v || in I420Scale_16()
1789 ScalePlane_16(src_y, src_stride_y, src_width, src_height, dst_y, dst_stride_y, in I420Scale_16()
1807 int src_height, in Scale() argument
1818 src_stride_v, src_width, src_height, dst_y, dst_stride_y, in Scale()
1827 int src_height, in ScaleOffset() argument
1836 int src_halfheight = SUBSAMPLE(src_height, 1, 1); in ScaleOffset()
1841 const uint8* src_u = src + src_width * src_height; in ScaleOffset()
1843 src + src_width * src_height + src_halfwidth * src_halfheight; in ScaleOffset()
1849 if (!src || src_width <= 0 || src_height <= 0 || !dst || dst_width <= 0 || in ScaleOffset()
1855 src_width, src_height, dst_y, dst_width, dst_u, in ScaleOffset()