Searched defs:idec (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/libwebp/webp/
H A Ddecode.h248 // WebPIDecoder* idec = WebPINewDecoder(&buffer);
251 // status = WebPIAppend(idec, new_data, new_data_size);
260 // WebPIDelete(idec);
316 WEBP_EXTERN(void) WebPIDelete(WebPIDecoder* idec); variable
322 WebPIDecoder* idec, const uint8_t* data, size_t data_size);
330 WebPIDecoder* idec, const uint8_t* data, size_t data_size);
339 const WebPIDecoder* idec, int* last_y,
346 const WebPIDecoder* idec, int* last_y,
353 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v,
355 return WebPIDecGetYUVA(idec, last_
352 WebPIDecGetYUV( const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, int* width, int* height, int* stride, int* uv_stride) argument
[all...]
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_libwebp.cpp194 WebPIDecoder* idec = WebPIDecode(NULL, 0, config); local
195 if (NULL == idec) {
209 WebPIDelete(idec);
223 status = WebPIAppend(idec, input, bytesRead);
230 WebPIDelete(idec);
/external/skia/src/images/
H A DSkImageDecoder_libwebp.cpp194 WebPIDecoder* idec = WebPIDecode(NULL, 0, config); local
195 if (NULL == idec) {
209 WebPIDelete(idec);
223 status = WebPIAppend(idec, input, bytesRead);
230 WebPIDelete(idec);
/external/webp/include/webp/
H A Ddecode.h248 // WebPIDecoder* idec = WebPINewDecoder(&buffer);
251 // status = WebPIAppend(idec, new_data, new_data_size);
260 // WebPIDelete(idec);
316 WEBP_EXTERN(void) WebPIDelete(WebPIDecoder* idec); variable
322 WebPIDecoder* idec, const uint8_t* data, size_t data_size);
330 WebPIDecoder* idec, const uint8_t* data, size_t data_size);
339 const WebPIDecoder* idec, int* last_y,
346 const WebPIDecoder* idec, int* last_y,
353 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v,
355 return WebPIDecGetYUVA(idec, last_
352 WebPIDecGetYUV( const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, int* width, int* height, int* stride, int* uv_stride) argument
[all...]
/external/chromium_org/third_party/libwebp/dec/
H A Didec.c95 static int NeedCompressedAlpha(const WebPIDecoder* const idec) { argument
96 if (idec->state_ == STATE_WEBP_HEADER) {
101 if (idec->is_lossless_) {
104 const VP8Decoder* const dec = (VP8Decoder*)idec->dec_;
105 assert(dec != NULL); // Must be true as idec->state_ != STATE_WEBP_HEADER.
110 static void DoRemap(WebPIDecoder* const idec, ptrdiff_t offset) { argument
111 MemBuffer* const mem = &idec->mem_;
113 // note: for VP8, setting up idec->io_ is only really needed at the beginning
115 idec->io_.data = new_base;
116 idec
160 AppendToMemBuffer(WebPIDecoder* const idec, const uint8_t* const data, size_t data_size) argument
199 RemapMemBuffer(WebPIDecoder* const idec, const uint8_t* const data, size_t data_size) argument
242 FinishDecoding(WebPIDecoder* const idec) argument
275 IDecError(WebPIDecoder* const idec, VP8StatusCode error) argument
286 ChangeState(WebPIDecoder* const idec, DecState new_state, size_t consumed_bytes) argument
297 DecodeWebPHeaders(WebPIDecoder* const idec) argument
336 DecodeVP8FrameHeader(WebPIDecoder* const idec) argument
360 CopyParts0Data(WebPIDecoder* const idec) argument
386 DecodePartition0(WebPIDecoder* const idec) argument
437 DecodeRemaining(WebPIDecoder* const idec) argument
486 ErrorStatusLossless(WebPIDecoder* const idec, VP8StatusCode status) argument
494 DecodeVP8LHeader(WebPIDecoder* const idec) argument
520 DecodeVP8LData(WebPIDecoder* const idec) argument
539 IDecode(WebPIDecoder* idec) argument
571 WebPIDecoder* idec = (WebPIDecoder*)WebPSafeCalloc(1ULL, sizeof(*idec)); local
595 WebPIDecoder* idec; local
615 WebPIDelete(WebPIDecoder* idec) argument
639 WebPIDecoder* idec; local
665 WebPIDecoder* idec; local
714 IDecCheckStatus(const WebPIDecoder* const idec) argument
725 WebPIAppend(WebPIDecoder* idec, const uint8_t* data, size_t data_size) argument
746 WebPIUpdate(WebPIDecoder* idec, const uint8_t* data, size_t data_size) argument
769 GetOutputBuffer(const WebPIDecoder* const idec) argument
779 WebPIDecodedArea(const WebPIDecoder* idec, int* left, int* top, int* width, int* height) argument
796 WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y, int* width, int* height, int* stride) argument
812 WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, uint8_t** a, int* width, int* height, int* stride, int* uv_stride, int* a_stride) argument
835 WebPISetIOHooks(WebPIDecoder* const idec, VP8IoPutHook put, VP8IoSetupHook setup, VP8IoTeardownHook teardown, void* user_data) argument
[all...]
/external/webp/src/dec/
H A Didec.c95 static int NeedCompressedAlpha(const WebPIDecoder* const idec) { argument
96 if (idec->state_ == STATE_WEBP_HEADER) {
101 if (idec->is_lossless_) {
104 const VP8Decoder* const dec = (VP8Decoder*)idec->dec_;
105 assert(dec != NULL); // Must be true as idec->state_ != STATE_WEBP_HEADER.
110 static void DoRemap(WebPIDecoder* const idec, ptrdiff_t offset) { argument
111 MemBuffer* const mem = &idec->mem_;
113 // note: for VP8, setting up idec->io_ is only really needed at the beginning
115 idec->io_.data = new_base;
116 idec
160 AppendToMemBuffer(WebPIDecoder* const idec, const uint8_t* const data, size_t data_size) argument
199 RemapMemBuffer(WebPIDecoder* const idec, const uint8_t* const data, size_t data_size) argument
242 FinishDecoding(WebPIDecoder* const idec) argument
275 IDecError(WebPIDecoder* const idec, VP8StatusCode error) argument
286 ChangeState(WebPIDecoder* const idec, DecState new_state, size_t consumed_bytes) argument
297 DecodeWebPHeaders(WebPIDecoder* const idec) argument
336 DecodeVP8FrameHeader(WebPIDecoder* const idec) argument
360 CopyParts0Data(WebPIDecoder* const idec) argument
386 DecodePartition0(WebPIDecoder* const idec) argument
437 DecodeRemaining(WebPIDecoder* const idec) argument
486 ErrorStatusLossless(WebPIDecoder* const idec, VP8StatusCode status) argument
494 DecodeVP8LHeader(WebPIDecoder* const idec) argument
520 DecodeVP8LData(WebPIDecoder* const idec) argument
539 IDecode(WebPIDecoder* idec) argument
571 WebPIDecoder* idec = (WebPIDecoder*)WebPSafeCalloc(1ULL, sizeof(*idec)); local
595 WebPIDecoder* idec; local
615 WebPIDelete(WebPIDecoder* idec) argument
639 WebPIDecoder* idec; local
665 WebPIDecoder* idec; local
714 IDecCheckStatus(const WebPIDecoder* const idec) argument
725 WebPIAppend(WebPIDecoder* idec, const uint8_t* data, size_t data_size) argument
746 WebPIUpdate(WebPIDecoder* idec, const uint8_t* data, size_t data_size) argument
769 GetOutputBuffer(const WebPIDecoder* const idec) argument
779 WebPIDecodedArea(const WebPIDecoder* idec, int* left, int* top, int* width, int* height) argument
796 WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y, int* width, int* height, int* stride) argument
812 WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, uint8_t** a, int* width, int* height, int* stride, int* uv_stride, int* a_stride) argument
835 WebPISetIOHooks(WebPIDecoder* const idec, VP8IoPutHook put, VP8IoSetupHook setup, VP8IoTeardownHook teardown, void* user_data) argument
[all...]

Completed in 180 milliseconds