Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Custom RLE compression

Read or post about compression. And decompression. Or ask questions how to decompress your files.
Post Reply
qbasic
ultra-n00b
Posts: 5
Joined: Fri Mar 16, 2012 9:49 pm
Contact:

Custom RLE compression

Post by qbasic »

Hi.

I have a troubles with some RLE algo. I want to find it's name, if it is public well-known algorithm, or I need compression for it.

Here is reconstructed sources of decompression routine, I can attach samples too.

Compressed data haven't any headers, just RLE data itself.

May be somebosy meeted it.
Last edited by qbasic on Mon Mar 19, 2012 12:53 pm, edited 1 time in total.
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 664 times
Contact:

Re: Custom RLE compression

Post by aluigi »

yeah upload some samples, I will scan them with quickbms to know if the compression algorithm is recognized (it's easier than looking at many source code files).

maybe it's just lzo, that "17" sounds familiar
qbasic
ultra-n00b
Posts: 5
Joined: Fri Mar 16, 2012 9:49 pm
Contact:

Re: Custom RLE compression

Post by qbasic »

Hm.. Can you tell me, how to recognize compression algo?
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 664 times
Contact:

Re: Custom RLE compression

Post by aluigi »

some can be guessed or you can give just an opinion by watching the data with a hex editor (like zlib).

others can be scanned and then you must check the resulted decompressed files to know if you recognize data with a sense.

anyway if you are interested in quickbms and the comtype scanner:
http://aluigi.org/quickbms/comtype_scan.htm
qbasic
ultra-n00b
Posts: 5
Joined: Fri Mar 16, 2012 9:49 pm
Contact:

Re: Custom RLE compression

Post by qbasic »

Tyvm, its algo # 8.
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 664 times
Contact:

Re: Custom RLE compression

Post by aluigi »

COMP_LZO1X, so yes I guessed it correctly :)
Post Reply