Searched refs:argb_dst (Results 1 – 3 of 3) sorted by relevance
76 uint32_t* argb_dst) { in NearLossless() argument85 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()90 argb_dst[0] = argb_src[0]; in NearLossless()91 argb_dst[xsize - 1] = argb_src[xsize - 1]; in NearLossless()94 argb_dst[x] = curr_row[x]; in NearLossless()96 argb_dst[x] = ClosestDiscretizedArgb(curr_row[x], limit_bits); in NearLossless()111 uint32_t* const argb_dst) { in VP8ApplyNearLossless() argument119 assert(argb_dst != NULL); in VP8ApplyNearLossless()130 memcpy(argb_dst + i * xsize, picture->argb + i * picture->argb_stride, in VP8ApplyNearLossless()[all …]
98 uint32_t* const argb_dst);
1083 uint32_t* const argb_dst = picture->argb + y * picture->argb_stride; in WebPPictureYUVAToARGB() local1087 argb_dst[x] = (argb_dst[x] & 0x00ffffffu) | ((uint32_t)src[x] << 24); in WebPPictureYUVAToARGB()