메소드 | 설명 | |
---|---|---|
Decompress ( byte source, byte target ) : bool |
Decompresses Malias2 data
|
|
Decompress ( byte source ) : byte[] |
Decompresses Malias2 data
|
|
Decompress ( byte data, int offset ) : byte[] |
Decompresses Malias2 data
|
|
Scan ( |
Scans the stream for potential LZ77 compressions
|
|
Scan ( byte pointer, int amount, int sizeMultible, int minSize, int maxSize ) : int[] |
Scans an area in memory for potential LZ77 compressions
|
|
Scan ( byte data, int offset, int amount, int sizeMultible, int minSize, int maxSize ) : int[] |
Scans the data for potential LZ77 compressions
|
public static Decompress ( byte source, byte target ) : bool | ||
source | byte | Pointer to compressed data |
target | byte | Pointer to where uncompressed data goes |
리턴 | bool |
public static Decompress ( byte source ) : byte[] | ||
source | byte | Pointer to data to decompress |
리턴 | byte[] |
public static Decompress ( byte data, int offset ) : byte[] | ||
data | byte | Data where compressed data is |
offset | int | Offset of the compressed data |
리턴 | byte[] |
public static Scan ( |
||
br | Stream to scan | |
offset | int | |
amount | int | |
sizeMultible | int | |
minSize | int | |
maxSize | int | |
리턴 | int[] |
public static Scan ( byte pointer, int amount, int sizeMultible, int minSize, int maxSize ) : int[] | ||
pointer | byte | Pointer to start of area to scan |
amount | int | Size of the area to scan in bytes |
sizeMultible | int | |
minSize | int | |
maxSize | int | |
리턴 | int[] |
public static Scan ( byte data, int offset, int amount, int sizeMultible, int minSize, int maxSize ) : int[] | ||
data | byte | Data to scan |
offset | int | Starting offset of are to scan |
amount | int | Size of the area to scan |
sizeMultible | int | |
minSize | int | |
maxSize | int | |
리턴 | int[] |