Searched refs:tmp_rgb (Results 1 – 1 of 1) sorted by relevance
/external/webp/src/enc/ |
D | picture_csp_enc.c | 878 uint16_t* const tmp_rgb = in ImportYUVAFromRGBA() local 879 (uint16_t*)WebPSafeMalloc(4 * uv_width, sizeof(*tmp_rgb)); in ImportYUVAFromRGBA() 895 if (tmp_rgb == NULL) return 0; // malloc error in ImportYUVAFromRGBA() 925 AccumulateRGB(r_ptr, g_ptr, b_ptr, step, rgb_stride, tmp_rgb, width); in ImportYUVAFromRGBA() 927 AccumulateRGBA(r_ptr, g_ptr, b_ptr, a_ptr, rgb_stride, tmp_rgb, width); in ImportYUVAFromRGBA() 931 WebPConvertRGBA32ToUV(tmp_rgb, dst_u, dst_v, uv_width); in ImportYUVAFromRGBA() 933 ConvertRowsToUV(tmp_rgb, dst_u, dst_v, uv_width, rg); in ImportYUVAFromRGBA() 960 tmp_rgb, width); in ImportYUVAFromRGBA() 963 tmp_rgb, width); in ImportYUVAFromRGBA() 966 WebPConvertRGBA32ToUV(tmp_rgb, dst_u, dst_v, uv_width); in ImportYUVAFromRGBA() [all …]
|