Searched defs:VP8Decoder (Results 1 - 2 of 2) sorted by relevance

/external/webp/include/webp/
H A Ddecode_vp8.h33 // VP8Decoder* dec = VP8New();
116 typedef struct VP8Decoder VP8Decoder; typedef in typeref:struct:VP8Decoder
119 WEBP_EXTERN(VP8Decoder*) VP8New(void);
129 WEBP_EXTERN(int) VP8GetHeaders(VP8Decoder* const dec, VP8Io* const io);
133 WEBP_EXTERN(int) VP8Decode(VP8Decoder* const dec, VP8Io* const io);
136 WEBP_EXTERN(VP8StatusCode) VP8Status(VP8Decoder* const dec);
139 WEBP_EXTERN(const char*) VP8StatusMessage(VP8Decoder* const dec);
143 WEBP_EXTERN(void) VP8Clear(VP8Decoder* const dec);
146 WEBP_EXTERN(void) VP8Delete(VP8Decoder* cons
[all...]
/external/webp/src/dec/
H A Dvp8i.h168 // VP8Decoder: the main opaque structure handed over to user
170 struct VP8Decoder { struct
268 int VP8SetError(VP8Decoder* const dec,
280 void VP8ParseProba(VP8BitReader* const br, VP8Decoder* const dec);
281 void VP8ParseIntraMode(VP8BitReader* const br, VP8Decoder* const dec);
284 void VP8ParseQuant(VP8Decoder* const dec);
287 int VP8InitFrame(VP8Decoder* const dec, VP8Io* io);
289 void VP8ReconstructBlock(VP8Decoder* const dec);
291 VP8StatusCode VP8FinishFrameSetup(VP8Decoder* const dec, VP8Io* const io);
293 void VP8FilterRow(const VP8Decoder* cons
[all...]

Completed in 161 milliseconds