Home | History | Annotate | Download | only in dec

Lines Matching defs:WebPIDecoder

66 struct WebPIDecoder {
104 static int NeedCompressedAlpha(const WebPIDecoder* const idec) {
119 static void DoRemap(WebPIDecoder* const idec, ptrdiff_t offset) {
154 static int AppendToMemBuffer(WebPIDecoder* const idec,
193 static int RemapMemBuffer(WebPIDecoder* const idec,
268 static VP8StatusCode IDecError(WebPIDecoder* const idec, VP8StatusCode error) {
279 static void ChangeState(WebPIDecoder* const idec, DecState new_state,
290 static VP8StatusCode DecodeWebPHeaders(WebPIDecoder* const idec) {
334 static VP8StatusCode DecodeVP8FrameHeader(WebPIDecoder* const idec) {
357 static int CopyParts0Data(WebPIDecoder* const idec) {
383 static VP8StatusCode DecodePartition0(WebPIDecoder* const idec) {
431 static VP8StatusCode DecodeRemaining(WebPIDecoder* const idec) {
478 static int ErrorStatusLossless(WebPIDecoder* const idec, VP8StatusCode status) {
485 static VP8StatusCode DecodeVP8LHeader(WebPIDecoder* const idec) {
511 static VP8StatusCode DecodeVP8LData(WebPIDecoder* const idec) {
532 static VP8StatusCode IDecode(WebPIDecoder* idec) {
563 WebPIDecoder* WebPINewDecoder(WebPDecBuffer* output_buffer) {
564 WebPIDecoder* idec = (WebPIDecoder*)calloc(1, sizeof(*idec));
583 WebPIDecoder* WebPIDecode(const uint8_t* data, size_t data_size,
585 WebPIDecoder* idec;
605 void WebPIDelete(WebPIDecoder* idec) {
626 WebPIDecoder* WebPINewRGB(WEBP_CSP_MODE mode, uint8_t* output_buffer,
629 WebPIDecoder* idec;
650 WebPIDecoder* WebPINewYUVA(uint8_t* luma, size_t luma_size, int luma_stride,
655 WebPIDecoder* idec;
693 WebPIDecoder* WebPINewYUV(uint8_t* luma, size_t luma_size, int luma_stride,
704 static VP8StatusCode IDecCheckStatus(const WebPIDecoder* const idec) {
715 VP8StatusCode WebPIAppend(WebPIDecoder* idec,
736 VP8StatusCode WebPIUpdate(WebPIDecoder* idec,
759 static const WebPDecBuffer* GetOutputBuffer(const WebPIDecoder* const idec) {
769 const WebPDecBuffer* WebPIDecodedArea(const WebPIDecoder* idec,
786 uint8_t* WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y,
802 uint8_t* WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y,
825 int WebPISetIOHooks(WebPIDecoder* const idec,