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