Home | History | Annotate | Download | only in dec

Lines Matching defs:Decode

424 decode individual
475 // Decode bitstream header, update io->width/io->height.
482 if (status == VP8_STATUS_OK) { // Decode
504 if (status == VP8_STATUS_OK) { // Decode
604 static uint8_t* Decode(WEBP_CSP_MODE mode, const uint8_t* const data,
622 // Decode
635 return Decode(MODE_RGB, data, data_size, width, height, NULL);
640 return Decode(MODE_RGBA, data, data_size, width, height, NULL);
645 return Decode(MODE_ARGB, data, data_size, width, height, NULL);
650 return Decode(MODE_BGR, data, data_size, width, height, NULL);
655 return Decode(MODE_BGRA, data, data_size, width, height, NULL);
662 uint8_t* const out = Decode(MODE_YUV, data, data_size,
766 // decoding to slow memory: use a temporary in-mem buffer to decode into.