Searched refs:idec (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/ |
A D | idec_dec.c | 286 VP8ExitCritical((VP8Decoder*)idec->dec_, &idec->io_); in IDecError() 343 const uint8_t* data = idec->mem_.buf_ + idec->mem_.start_; in DecodeVP8FrameHeader() 401 if (MemDataSize(&idec->mem_) < idec->mem_.part0_size_) { in DecodePartition0() 488 assert(idec->mem_.start_ <= idec->mem_.end_); in DecodeRemaining() 617 idec->params_.output = &idec->output_; in NewDecoder() 628 return idec; in NewDecoder() 663 return idec; in WebPIDecode() 708 return idec; in WebPINewRGB() 751 return idec; in WebPINewYUVA() 821 if (idec == NULL || idec->dec_ == NULL) { in GetOutputBuffer() [all …]
|
A D | vp8_dec.h | 116 int WebPISetIOHooks(WebPIDecoder* const idec,
|
/AliOS-Things-master/components/SDL2/src/image/Xcode/Frameworks/webp.framework/Versions/A/Headers/webp/ |
A D | decode.h | 328 WEBP_EXTERN void WebPIDelete(WebPIDecoder* idec); 334 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 342 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 352 const WebPIDecoder* idec, int* last_y, 359 const WebPIDecoder* idec, int* last_y, 366 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, in WebPIDecGetYUV() argument 368 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height, in WebPIDecGetYUV() 379 const WebPIDecoder* idec, int* left, int* top, int* width, int* height);
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/webp/ |
A D | decode.h | 328 WEBP_EXTERN void WebPIDelete(WebPIDecoder* idec); 334 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 342 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 352 const WebPIDecoder* idec, int* last_y, 359 const WebPIDecoder* idec, int* last_y, 366 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, in WebPIDecGetYUV() argument 368 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height, in WebPIDecGetYUV() 379 const WebPIDecoder* idec, int* left, int* top, int* width, int* height);
|
/AliOS-Things-master/components/SDL2/src/image/VisualC/external/include/webp/ |
A D | decode.h | 328 WEBP_EXTERN void WebPIDelete(WebPIDecoder* idec); 334 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 342 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 352 const WebPIDecoder* idec, int* last_y, 359 const WebPIDecoder* idec, int* last_y, 366 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, in WebPIDecGetYUV() argument 368 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height, in WebPIDecGetYUV() 379 const WebPIDecoder* idec, int* left, int* top, int* width, int* height);
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/imageio/ |
A D | webpdec.c | 96 WebPIDecoder* const idec = WebPIDecode(data, data_size, config); in DecodeWebPIncremental() local 97 if (idec == NULL) { in DecodeWebPIncremental() 101 status = WebPIUpdate(idec, data, data_size); in DecodeWebPIncremental() 102 WebPIDelete(idec); in DecodeWebPIncremental()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/ |
A D | README | 677 WebPIDecoder* idec = WebPINewDecoder(&buffer); 685 WebPIAppend(idec, fresh_data, size_of_fresh_data); 689 WebPIUpdate(idec, buffer, size_of_transmitted_buffer); 698 The 'idec' object must always be released (even upon an error condition) by 699 calling: WebPDelete(idec). 755 WebPIDecoder* const idec = WebPIDecode(NULL, NULL, &config); 756 CHECK(idec != NULL); 758 VP8StatusCode status = WebPIAppend(idec, input, bytes_read); 765 WebPIDelete(idec);
|
A D | ChangeLog | 1994 54bfffca move RemapBitReader() from idec.c to bit_reader code 2282 46db2865 idec: add some missing casts 3582 f3abe520 Merge "idec: simplify buffer size calculation" 3583 a9c5cd4c idec: simplify buffer size calculation 3588 85b6ff68 Merge "idec: fix WebPIUpdate failure" 3589 7bb6a9cc idec: fix internal state corruption 3590 89cd1bb8 idec: fix WebPIUpdate failure 3899 56732a1b add idec.obj in MSVC makefile
|
Completed in 18 milliseconds