Searched refs:tmp_rgb (Results 1 – 1 of 1) sorted by relevance
/external/webp/src/enc/ |
D | picture_csp_enc.c | 885 uint16_t* const tmp_rgb = in ImportYUVAFromRGBA() local 886 (uint16_t*)WebPSafeMalloc(4 * uv_width, sizeof(*tmp_rgb)); in ImportYUVAFromRGBA() 902 if (tmp_rgb == NULL) return 0; // malloc error in ImportYUVAFromRGBA() 932 AccumulateRGB(r_ptr, g_ptr, b_ptr, step, rgb_stride, tmp_rgb, width); in ImportYUVAFromRGBA() 934 AccumulateRGBA(r_ptr, g_ptr, b_ptr, a_ptr, rgb_stride, tmp_rgb, width); in ImportYUVAFromRGBA() 938 WebPConvertRGBA32ToUV(tmp_rgb, dst_u, dst_v, uv_width); in ImportYUVAFromRGBA() 940 ConvertRowsToUV(tmp_rgb, dst_u, dst_v, uv_width, rg); in ImportYUVAFromRGBA() 967 tmp_rgb, width); in ImportYUVAFromRGBA() 970 tmp_rgb, width); in ImportYUVAFromRGBA() 973 WebPConvertRGBA32ToUV(tmp_rgb, dst_u, dst_v, uv_width); in ImportYUVAFromRGBA() [all …]
|