• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/

Lines Matching refs:dstU

1352 rgb48ToUV_c_template(uint16_t *dstU, uint16_t *dstV,
1363 dstU[i] = (RU*r + GU*g + BU*b + (0x10001<<(RGB2YUV_SHIFT-1))) >> RGB2YUV_SHIFT;
1369 rgb48ToUV_half_c_template(uint16_t *dstU, uint16_t *dstV,
1380 dstU[i]= (RU*r + GU*g + BU*b + (0x10001<<(RGB2YUV_SHIFT-1))) >> RGB2YUV_SHIFT;
1404 uint16_t *dstU = (uint16_t *) _dstU, *dstV = (uint16_t *) _dstV; \
1405 rgb48ToUV_c_template(dstU, dstV, src1, src2, width, origin); \
1414 uint16_t *dstU = (uint16_t *) _dstU, *dstV = (uint16_t *) _dstV; \
1415 rgb48ToUV_half_c_template(dstU, dstV, src1, src2, width, origin); \
1449 rgb16_32ToUV_c_template(uint8_t *dstU, uint8_t *dstV,
1467 dstU[i] = (ru * r + gu * g + bu * b + rnd) >> S;
1473 rgb16_32ToUV_half_c_template(uint8_t *dstU, uint8_t *dstV,
1502 dstU[i] = (ru * r + gu * g + bu * b + rnd) >> (S + 1);
1518 static void name ## ToUV_c(uint8_t *dstU, uint8_t *dstV, \
1522 rgb16_32ToUV_c_template(dstU, dstV, src, width, fmt, shr, shg, shb, shp, \
1526 static void name ## ToUV_half_c(uint8_t *dstU, uint8_t *dstV, \
1530 rgb16_32ToUV_half_c_template(dstU, dstV, src, width, fmt, shr, shg, shb, shp, \
1577 static void palToUV_c(uint8_t *dstU, uint8_t *dstV,
1586 dstU[i]= p>>8;
1623 static void yuy2ToUV_c(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1,
1628 dstU[i]= src1[4*i + 1];
1650 uint16_t *dstU = (uint16_t *) _dstU, *dstV = (uint16_t *) _dstV;
1652 dstU[i] = av_bswap16(src1[i]);
1667 static void uyvyToUV_c(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1,
1672 dstU[i]= src1[4*i + 0];
1688 static void nv12ToUV_c(uint8_t *dstU, uint8_t *dstV,
1692 nvXXtoUV_c(dstU, dstV, src1, width);
1695 static void nv21ToUV_c(uint8_t *dstU, uint8_t *dstV,
1699 nvXXtoUV_c(dstV, dstU, src1, width);
1717 static void bgr24ToUV_c(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1,
1726 dstU[i]= (RU*r + GU*g + BU*b + (257<<(RGB2YUV_SHIFT-1)))>>RGB2YUV_SHIFT;
1732 static void bgr24ToUV_half_c(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1,
1741 dstU[i]= (RU*r + GU*g + BU*b + (257<<RGB2YUV_SHIFT))>>(RGB2YUV_SHIFT+1);
1760 static void rgb24ToUV_c(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1,
1770 dstU[i]= (RU*r + GU*g + BU*b + (257<<(RGB2YUV_SHIFT-1)))>>RGB2YUV_SHIFT;
1775 static void rgb24ToUV_half_c(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1,
1785 dstU[i]= (RU*r + GU*g + BU*b + (257<<RGB2YUV_SHIFT))>>(RGB2YUV_SHIFT+1);
1830 static void planar_rgb_to_uv(uint8_t *dstU, uint8_t *dstV, const uint8_t *src[4], int width)
1838 dstU[i] = (RU * r + GU * g + BU * b + (257 << RGB2YUV_SHIFT)) >> (RGB2YUV_SHIFT + 1);
1847 uint16_t *dstU = (uint16_t *) _dstU;
1854 dstU[i] = (RU * r + GU * g + BU * b + (257 << RGB2YUV_SHIFT)) >> (RGB2YUV_SHIFT + 1);
1863 uint16_t *dstU = (uint16_t *) _dstU;
1870 dstU[i] = (RU * r + GU * g + BU * b + (257 << RGB2YUV_SHIFT)) >> (RGB2YUV_SHIFT + 1);
1959 static void chrRangeToJpeg_c(int16_t *dstU, int16_t *dstV, int width)
1963 dstU[i] = (FFMIN(dstU[i],30775)*4663 - 9289992)>>12; //-264
1967 static void chrRangeFromJpeg_c(int16_t *dstU, int16_t *dstV, int width)
1971 dstU[i] = (dstU[i]*1799 + 4081085)>>11; //1469
1991 int32_t *dstU = (int32_t *) _dstU;
1994 dstU[i] = (FFMIN(dstU[i],30775<<4)*4663 - (9289992<<4))>>12; //-264
2001 int32_t *dstU = (int32_t *) _dstU;
2004 dstU[i] = (dstU[i]*1799 + (4081085<<4))>>11; //1469