Searched refs:yuvImage (Results 1 – 1 of 1) sorted by relevance
256 YUV420Image yuvImage; in ConvertRGBA8888ToYUV420() local257 yuvImage.width = w; in ConvertRGBA8888ToYUV420()258 yuvImage.height = h; in ConvertRGBA8888ToYUV420()259 yuvImage.y.reserve(w * h); in ConvertRGBA8888ToYUV420()260 yuvImage.u.reserve((w / 2) * (h / 2)); in ConvertRGBA8888ToYUV420()261 yuvImage.v.reserve((w / 2) * (h / 2)); in ConvertRGBA8888ToYUV420()280 yuvImage.y.push_back(pixelY); in ConvertRGBA8888ToYUV420()282 yuvImage.u.push_back(pixelU); in ConvertRGBA8888ToYUV420()283 yuvImage.v.push_back(pixelV); in ConvertRGBA8888ToYUV420()288 return yuvImage; in ConvertRGBA8888ToYUV420()