Searched refs:idec (Results 1 – 7 of 7) sorted by relevance
/external/webp/src/dec/ |
D | idec.c | 100 static void DoRemap(WebPIDecoder* const idec, ptrdiff_t offset) { in DoRemap() argument 101 MemBuffer* const mem = &idec->mem_; in DoRemap() 105 idec->io_.data = new_base; in DoRemap() 106 idec->io_.data_size = MemDataSize(mem); in DoRemap() 108 if (idec->dec_ != NULL) { in DoRemap() 109 if (!idec->is_lossless_) { in DoRemap() 110 VP8Decoder* const dec = (VP8Decoder*)idec->dec_; in DoRemap() 126 VP8LDecoder* const dec = (VP8LDecoder*)idec->dec_; in DoRemap() 134 static int AppendToMemBuffer(WebPIDecoder* const idec, in AppendToMemBuffer() argument 136 MemBuffer* const mem = &idec->mem_; in AppendToMemBuffer() [all …]
|
D | Android.mk | 22 idec.c \
|
D | decode_vp8.h | 114 int WebPISetIOHooks(WebPIDecoder* const idec,
|
/external/webp/include/webp/ |
D | decode.h | 308 WEBP_EXTERN(void) WebPIDelete(WebPIDecoder* idec); 314 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 322 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 331 const WebPIDecoder* idec, int* last_y, 338 const WebPIDecoder* idec, int* last_y, 345 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, in WebPIDecGetYUV() argument 347 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height, in WebPIDecGetYUV() 358 const WebPIDecoder* idec, int* left, int* top, int* width, int* height);
|
/external/skia/src/images/ |
D | SkImageDecoder_libwebp.cpp | 168 WebPIDecoder* idec = WebPIDecode(NULL, 0, &config); in webp_idecode() local 169 if (idec == NULL) { in webp_idecode() 181 WebPIDelete(idec); in webp_idecode() 196 status = WebPIAppend(idec, input, bytes_read); in webp_idecode() 203 WebPIDelete(idec); in webp_idecode()
|
/external/skia/legacy/src/images/ |
D | SkImageDecoder_libwebp.cpp | 168 WebPIDecoder* idec = WebPIDecode(NULL, 0, &config); in webp_idecode() local 169 if (idec == NULL) { in webp_idecode() 181 WebPIDelete(idec); in webp_idecode() 197 VP8StatusCode status = WebPIAppend(idec, input, bytes_read); in webp_idecode() 205 WebPIDelete(idec); in webp_idecode()
|
/external/webp/ |
D | README | 394 WebPIDecoder* idec = WebPINewDecoder(&buffer); 402 WebPIAppend(idec, fresh_data, size_of_fresh_data); 406 WebPIUpdate(idec, buffer, size_of_transmitted_buffer); 415 The 'idec' object must always be released (even upon an error condition) by 416 calling: WebPDelete(idec). 472 WebPIDecoder* const idec = WebPIDecode(NULL, NULL, &config); 473 CHECK(idec != NULL); 475 VP8StatusCode status = WebPIAppend(idec, input, bytes_read); 482 WebPIDelete(idec);
|