You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
384 B
9 lines
384 B
// Call this function first (just once is needed), before calling sonix_decompress
|
|
void sonix_decompress_init(void);
|
|
|
|
// decompresses data at inp until a full image of widthxheight has been written to outp
|
|
int sonix_decompress(int width, int height, unsigned char *inp, unsigned char *outp);
|
|
|
|
// counter to detect presence of currently unknown huffman codes
|
|
extern int sonix_unknown;
|