Lines Matching refs:rgbData
915 uint32_t* rgbData = static_cast<uint32_t*>(mRawRgba1010102Image.planes[UHDR_PLANE_PACKED]); in convertP010ToRGBImage() local
955 *rgbData = (0x3ff & r0) | ((0x3ff & g0) << 10) | ((0x3ff & b0) << 20) | in convertP010ToRGBImage()
958 rgbData++; in convertP010ToRGBImage()
982 uint32_t* rgbData = static_cast<uint32_t*>(mRawRgba8888Image.planes[UHDR_PLANE_PACKED]); in convertYuv420ToRGBImage() local
1023 *rgbData = r0 | (g0 << 8) | (b0 << 16) | (255 << 24); // Set alpha to 1.0 in convertYuv420ToRGBImage()
1025 rgbData++; in convertYuv420ToRGBImage()
1051 uint32_t* rgbData = static_cast<uint32_t*>(mDecodedUhdrRgbImage.planes[UHDR_PLANE_PACKED]); in convertRgba8888ToYUV444Image() local
1071 float r0 = float(rgbData[mDecodedUhdrRgbImage.stride[UHDR_PLANE_PACKED] * i + j] & 0xff); in convertRgba8888ToYUV444Image()
1073 float((rgbData[mDecodedUhdrRgbImage.stride[UHDR_PLANE_PACKED] * i + j] >> 8) & 0xff); in convertRgba8888ToYUV444Image()
1075 float((rgbData[mDecodedUhdrRgbImage.stride[UHDR_PLANE_PACKED] * i + j] >> 16) & 0xff); in convertRgba8888ToYUV444Image()
1134 uint32_t* rgbData = static_cast<uint32_t*>(mDecodedUhdrRgbImage.planes[UHDR_PLANE_PACKED]); in convertRgba1010102ToYUV444Image() local
1142 float r0 = float(rgbData[mDecodedUhdrRgbImage.stride[UHDR_PLANE_PACKED] * i + j] & 0x3ff); in convertRgba1010102ToYUV444Image()
1144 float((rgbData[mDecodedUhdrRgbImage.stride[UHDR_PLANE_PACKED] * i + j] >> 10) & 0x3ff); in convertRgba1010102ToYUV444Image()
1146 float((rgbData[mDecodedUhdrRgbImage.stride[UHDR_PLANE_PACKED] * i + j] >> 20) & 0x3ff); in convertRgba1010102ToYUV444Image()