Home | History | Annotate | Download | only in dec

Lines Matching defs:WebPIDecoder

64 struct WebPIDecoder {
100 static void DoRemap(WebPIDecoder* const idec, ptrdiff_t offset) {
134 static int AppendToMemBuffer(WebPIDecoder* const idec,
168 static int RemapMemBuffer(WebPIDecoder* const idec,
242 static VP8StatusCode IDecError(WebPIDecoder* const idec, VP8StatusCode error) {
253 static void ChangeState(WebPIDecoder* const idec, DecState new_state,
264 static VP8StatusCode DecodeWebPHeaders(WebPIDecoder* const idec) {
308 static VP8StatusCode DecodeVP8FrameHeader(WebPIDecoder* const idec) {
331 static int CopyParts0Data(WebPIDecoder* const idec) {
357 static VP8StatusCode DecodePartition0(WebPIDecoder* const idec) {
405 static VP8StatusCode DecodeRemaining(WebPIDecoder* const idec) {
452 static int ErrorStatusLossless(WebPIDecoder* const idec, VP8StatusCode status) {
459 static VP8StatusCode DecodeVP8LHeader(WebPIDecoder* const idec) {
485 static VP8StatusCode DecodeVP8LData(WebPIDecoder* const idec) {
506 static VP8StatusCode IDecode(WebPIDecoder* idec) {
537 WebPIDecoder* WebPINewDecoder(WebPDecBuffer* output_buffer) {
538 WebPIDecoder* idec = (WebPIDecoder*)calloc(1, sizeof(*idec));
557 WebPIDecoder* WebPIDecode(const uint8_t* data, size_t data_size,
559 WebPIDecoder* idec;
579 void WebPIDelete(WebPIDecoder* idec) {
596 WebPIDecoder* WebPINewRGB(WEBP_CSP_MODE mode, uint8_t* output_buffer,
599 WebPIDecoder* idec;
620 WebPIDecoder* WebPINewYUVA(uint8_t* luma, size_t luma_size, int luma_stride,
625 WebPIDecoder* idec;
663 WebPIDecoder* WebPINewYUV(uint8_t* luma, size_t luma_size, int luma_stride,
674 static VP8StatusCode IDecCheckStatus(const WebPIDecoder* const idec) {
685 VP8StatusCode WebPIAppend(WebPIDecoder* idec,
706 VP8StatusCode WebPIUpdate(WebPIDecoder* idec,
729 static const WebPDecBuffer* GetOutputBuffer(const WebPIDecoder* const idec) {
739 const WebPDecBuffer* WebPIDecodedArea(const WebPIDecoder* idec,
756 uint8_t* WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y,
772 uint8_t* WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y,
795 int WebPISetIOHooks(WebPIDecoder* const idec,