Searched refs:WebPIDecoder (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/libwebp/src/webp/ |
D | decode.h | 32 typedef struct WebPIDecoder WebPIDecoder; typedef 283 WEBP_EXTERN WebPIDecoder* WebPINewDecoder(WebPDecBuffer* output_buffer); 295 WEBP_EXTERN WebPIDecoder* WebPINewRGB( 310 WEBP_EXTERN WebPIDecoder* WebPINewYUVA( 318 WEBP_EXTERN WebPIDecoder* WebPINewYUV( 325 WEBP_EXTERN void WebPIDelete(WebPIDecoder* idec); 331 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 339 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 349 const WebPIDecoder* idec, int* last_y, 356 const WebPIDecoder* idec, int* last_y, [all …]
|
/third_party/skia/third_party/externals/libwebp/src/dec/ |
D | idec_dec.c | 65 struct WebPIDecoder { struct 97 static int NeedCompressedAlpha(const WebPIDecoder* const idec) { in NeedCompressedAlpha() argument 112 static void DoRemap(WebPIDecoder* const idec, ptrdiff_t offset) { in DoRemap() 164 static int AppendToMemBuffer(WebPIDecoder* const idec, in AppendToMemBuffer() 206 static int RemapMemBuffer(WebPIDecoder* const idec, in RemapMemBuffer() 251 static VP8StatusCode FinishDecoding(WebPIDecoder* const idec) { in FinishDecoding() 288 static VP8StatusCode IDecError(WebPIDecoder* const idec, VP8StatusCode error) { in IDecError() 297 static void ChangeState(WebPIDecoder* const idec, DecState new_state, in ChangeState() 308 static VP8StatusCode DecodeWebPHeaders(WebPIDecoder* const idec) { in DecodeWebPHeaders() 347 static VP8StatusCode DecodeVP8FrameHeader(WebPIDecoder* const idec) { in DecodeVP8FrameHeader() [all …]
|
D | vp8_dec.h | 116 int WebPISetIOHooks(WebPIDecoder* const idec,
|
/third_party/skia/third_party/externals/libwebp/tests/fuzzer/ |
D | advanced_api_fuzzer.c | 80 WebPIDecoder* idec = WebPIDecode(NULL, 0, &config); in LLVMFuzzerTestOneInput()
|
/third_party/skia/third_party/externals/libwebp/imageio/ |
D | webpdec.c | 96 WebPIDecoder* const idec = WebPIDecode(data, data_size, config); in DecodeWebPIncremental()
|
/third_party/skia/third_party/externals/libwebp/ |
D | README | 675 is stored into an instance of the WebPIDecoder object. This object can be 683 WebPIDecoder* idec = WebPINewDecoder(&buffer); 712 buffer. This buffer must be passed when creating a WebPIDecoder, calling 761 WebPIDecoder* const idec = WebPIDecode(NULL, NULL, &config);
|
/third_party/skia/src/codec/ |
D | SkWebpCodec.cpp | 483 SkAutoTCallVProc<WebPIDecoder, WebPIDelete> idec(WebPIDecode(nullptr, 0, &config)); in onGetPixels()
|