Searched refs:argb_src (Results 1 – 1 of 1) sorted by relevance
/external/webp/src/enc/ |
D | near_lossless_enc.c | 74 static void NearLossless(int xsize, int ysize, const uint32_t* argb_src, in NearLossless() argument 82 memcpy(curr_row, argb_src, xsize * sizeof(argb_src[0])); in NearLossless() 83 memcpy(next_row, argb_src + stride, xsize * sizeof(argb_src[0])); in NearLossless() 85 for (y = 0; y < ysize; ++y, argb_src += stride, argb_dst += xsize) { in NearLossless() 87 memcpy(argb_dst, argb_src, xsize * sizeof(argb_src[0])); in NearLossless() 89 memcpy(next_row, argb_src + stride, xsize * sizeof(argb_src[0])); in NearLossless() 90 argb_dst[0] = argb_src[0]; in NearLossless() 91 argb_dst[xsize - 1] = argb_src[xsize - 1]; in NearLossless()
|