Lines Matching refs:pDesc
56 const AHardwareBuffer_Desc* pDesc = in fillNV21FromNV21() local
58 const unsigned strideLum = align<16>(pDesc->width); in fillNV21FromNV21()
59 const unsigned sizeY = strideLum * pDesc->height; in fillNV21FromNV21()
61 const unsigned sizeColor = strideColor * pDesc->height/2; in fillNV21FromNV21()
88 const AHardwareBuffer_Desc* pDesc = in fillNV21FromYUYV() local
90 const unsigned strideLum = align<16>(pDesc->width); in fillNV21FromYUYV()
91 const unsigned sizeY = strideLum * pDesc->height; in fillNV21FromYUYV()
101 for (unsigned cellRow = 0; cellRow < pDesc->height/2; cellRow++) { in fillNV21FromYUYV()
108 for (unsigned cellCol = 0; cellCol < pDesc->width/2; cellCol++) { in fillNV21FromYUYV()
135 const AHardwareBuffer_Desc* pDesc = in fillRGBAFromYUYV() local
140 const auto dstStrideInBytes = pDesc->stride * kRgbaBytesPerPixel; in fillRGBAFromYUYV()
145 pDesc->width, in fillRGBAFromYUYV()
146 pDesc->height); in fillRGBAFromYUYV()
154 pDesc->width, pDesc->height); in fillRGBAFromYUYV()
163 const AHardwareBuffer_Desc* pDesc = in fillRGBAFromUYVY() local
168 const auto dstStrideInBytes = pDesc->stride * kRgbaBytesPerPixel; in fillRGBAFromUYVY()
173 pDesc->width, in fillRGBAFromUYVY()
174 pDesc->height); in fillRGBAFromUYVY()
182 dstStrideInBytes, pDesc->width, pDesc->height); in fillRGBAFromUYVY()
191 const AHardwareBuffer_Desc* pDesc = in fillYUYVFromYUYV() local
193 const auto height = pDesc->height; in fillYUYVFromYUYV()
197 const auto dstStrideBytes = pDesc->stride * kYuv422BytesPerPixel; in fillYUYVFromYUYV()
208 const AHardwareBuffer_Desc* pDesc = in fillYUYVFromUYVY() local
210 unsigned width = pDesc->width; in fillYUYVFromUYVY()
211 unsigned height = pDesc->height; in fillYUYVFromUYVY()
215 unsigned dstStridePixels = pDesc->stride; in fillYUYVFromUYVY()