Questions tagged [lzo]

LZO is a (text) compression algorithm from the Lempel-Ziv family, which favours speed against compression ratio.

LZO is a data compression library which is suitable for data de-/compression in real-time. This means it favours speed over compression ratio.

LZO is written in ANSI C. Both the source code and the compressed data format are designed to be portable across platforms.

LZO implements a number of algorithms with the following features:

Decompression is simple and very fast. Requires no memory for decompression. Compression is pretty fast. Requires 64 kB of memory for compression. Allows you to dial up extra compression at a speed cost in the compressor. The speed of the decompressor is not reduced. Includes compression levels for generating pre-compressed data which achieve a quite competitive compression ratio. There is also a compression level which needs only 8 kB for compression. Algorithm is thread safe. Algorithm is lossless. LZO supports overlapping compression and in-place decompression.

LZO and the LZO algorithms and implementations are distributed under the terms of the GNU General Public License (GPL) .

122 questions
-2
votes
1 answer

Hide something like a key or a fourCC in the compiled program

First of all, I have done a lot of research before but I have to ask something that may be simple... or not, but I prefer to ask you in order to be sure... I have two kind of keys, one set up by me and the other is a simple FourCC code. However,…
Gurgarath
  • 19
  • 2
-2
votes
1 answer

What does error code LZO_E_LOOKBEHIND_OVERRUN mean?

I am attempting to decompress some compressed data, but I'm getting an error code of LZO_E_LOOKBEHIND_OVERRUN. What does this error mean? I have checked comments in the source code and several results on Google but I can't find what it means. I am…
Mex
  • 1,011
  • 7
  • 16
1 2 3
8
9