Searched refs:alpha_data (Results 1 – 11 of 11) sorted by relevance
/external/opencv3/3rdparty/libwebp/dec/ |
D | alpha.c | 42 const uint8_t* const alpha_data = data + ALPHA_HEADER_LEN; in DecodeAlpha() local 67 if (ok) memcpy(output, alpha_data, alpha_decoded_size); in DecodeAlpha() 69 ok = VP8LDecodeAlphaImageStream(width, height, alpha_data, alpha_data_size, in DecodeAlpha()
|
D | webp.c | 156 const uint8_t** const alpha_data, in ParseOptionalChunks() argument 168 assert(alpha_data != NULL); in ParseOptionalChunks() 170 *alpha_data = NULL; in ParseOptionalChunks() 211 *alpha_data = buf + CHUNK_HEADER_SIZE; in ParseOptionalChunks() 333 &hdrs.alpha_data, &hdrs.alpha_data_size); in ParseHeadersInternal() 371 *has_alpha |= (hdrs.alpha_data != NULL); in ParseHeadersInternal() 440 dec->alpha_data_ = headers.alpha_data; in DecodeInto()
|
D | webpi.h | 58 const uint8_t* alpha_data; // points to alpha chunk (if present) member
|
D | vp8.c | 281 dec->alpha_data_ = headers.alpha_data; in VP8GetHeaders()
|
D | idec.c | 320 dec->alpha_data_ = headers.alpha_data; in DecodeWebPHeaders()
|
/external/webp/src/dec/ |
D | webp.c | 149 const uint8_t** const alpha_data, in ParseOptionalChunks() argument 161 assert(alpha_data != NULL); in ParseOptionalChunks() 163 *alpha_data = NULL; in ParseOptionalChunks() 204 *alpha_data = buf + CHUNK_HEADER_SIZE; in ParseOptionalChunks() 349 &hdrs.alpha_data, &hdrs.alpha_data_size); in ParseHeadersInternal() 407 *has_alpha |= (hdrs.alpha_data != NULL); in ParseHeadersInternal() 473 dec->alpha_data_ = headers.alpha_data; in DecodeInto()
|
D | alpha.c | 49 const uint8_t* const alpha_data = data + ALPHA_HEADER_LEN; in ALPHInit() local 80 ok = VP8LDecodeAlphaHeader(dec, alpha_data, alpha_data_size, output); in ALPHInit()
|
D | webpi.h | 62 const uint8_t* alpha_data; // points to alpha chunk (if present) member
|
D | idec.c | 324 dec->alpha_data_ = headers.alpha_data; in DecodeWebPHeaders()
|
/external/opencv3/3rdparty/libwebp/enc/ |
D | alpha.c | 332 uint8_t* alpha_data = NULL; in CompressAlphaJob() local 340 filter, effort_level, &alpha_data, &alpha_size)) { in CompressAlphaJob() 344 free(alpha_data); in CompressAlphaJob() 348 enc->alpha_data_ = alpha_data; in CompressAlphaJob()
|
/external/webp/src/enc/ |
D | alpha.c | 354 uint8_t* alpha_data = NULL; in CompressAlphaJob() local 362 filter, effort_level, &alpha_data, &alpha_size)) { in CompressAlphaJob() 366 WebPSafeFree(alpha_data); in CompressAlphaJob() 370 enc->alpha_data_ = alpha_data; in CompressAlphaJob()
|