mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
14 lines
773 B
C
14 lines
773 B
C
#pragma once
|
||
|
||
// Copyright (C) 2014 Hykem <hykem@hotmail.com>
|
||
// Licensed under the terms of the GNU GPL, version 2.0 or later versions.
|
||
// http://www.gnu.org/licenses/gpl-2.0.txt
|
||
|
||
// Reverse-engineered custom Lempel–Ziv–Markov based compression.
|
||
|
||
void decode_range(unsigned int* range, unsigned int* code, unsigned char** src);
|
||
int decode_bit(unsigned int* range, unsigned int* code, int* index, unsigned char** src, unsigned char* c);
|
||
int decode_number(unsigned char* ptr, int index, int* bit_flag, unsigned int* range, unsigned int* code, unsigned char** src);
|
||
int decode_word(unsigned char* ptr, int index, int* bit_flag, unsigned int* range, unsigned int* code, unsigned char** src);
|
||
int decompress(unsigned char* out, unsigned char* in, unsigned int size);
|