Tagged Questions

LZO is a (text) compression algorithm.

learn more… | top users | synonyms

3
votes
1answer
34 views

Reasonable compression block-size

What is a reasonable minimum compression block-size for compression ratio when using LZO-like algorithm? I expect that compressing 32B would be useless but compressing 512B might be good. Am I too ...
2
votes
2answers
109 views

Compression Algorithm for Small Amounts of Data

I have a server-side program that generates JSON for a client. A few of my colleagues have suggested using zip/gzip compression in order to reduce the amount of data that sending over the wire. ...
2
votes
2answers
546 views

What're lzo and lzf, and the differences?

Hi I heard of lzo and lzf and seems they are all compression algorithms. Are they the same thing? Are there any other algorithms like them(light and fast)?
2
votes
2answers
1k views

Are there benchmarks of Java LZO vs. Deflate vs. Gzip available?

The (very outdated) page for LZO contains a link to a Java implementation. There is also the vague promise of "New ... Java ... interfaces ... sometime in the near future.", but I believe that has ...
2
votes
1answer
1k views

Reverse Engineering: How do I identify an unknown compression method?

I'm with a group of modders attempting to reverse engineer and mod a Blu-Ray player. We're stuck because the firmware code seems to be compressed, and the decompression code is nowhere to be found. ...
1
vote
1answer
122 views

compile 64-bit version of lzo.dll

[Update] I've since compiled successfully and anyone else chasing these binaries can download from here I'm compiling version 2.06 of lzo by issuing the following command from the Visual Studio ...
1
vote
2answers
210 views

Newest version of lzo.dll for use with lzo.net (in memory compression)

for use with lzo-net ( http://lzo-net.sourceforge.net/ ) I am looking for a new version of the lzo.dll file. Mine is from 2004. The newest file should be 2.0.6 ( ...
1
vote
1answer
407 views

How to get LZO to work with a file stream?

I am trying to compress a file stream with LZO and not getting very far. Specifically, I get a segmentation fault when extracting the archive file created by my compressFileWithLzo1x function. My ...
1
vote
5answers
733 views

Can libraries licensed with GPLv2 be used in proprietary applications?

I'm interested in included LZO compression into a currently closed source application. Currently LZO is licensed with GPLv2, but i'm confused as to if I need to also open source my application if I ...
0
votes
1answer
101 views

How can i install python-lzo-1.08?

I need to install python-lzo-1.08. When i try to do it from gz-file, i getting error: NameError: name 'CURL_DIR' is not defined OS: win7 I can't anywhere find windows installer (google taking only gz ...
0
votes
1answer
87 views

java.io.IOException: No LZO codec found, cannot run

I tried to use lzo in my hive script, but got this error message. It seemed that I did not have the class for lzo in the classpath. Did anyone else meet this problem before, how to fix this problem, ...
0
votes
1answer
180 views

How to Get Pig to Work with lzo Files?

So, I've seen a couple of tutorials for this online, but each seems to say to do something different. Also, each of them doesn't seem to specify whether you're trying to get things to work on a remote ...
0
votes
0answers
389 views

CompressionTest for LZO fails

I sincerely thank you for reading my post. I'm trying to install LZO 2.03 compression codec on HBase on my server (running Xeon CPUs). I'm currently running Hadoop 0.20.1 with HBase 0.90.2. I've ...
0
votes
1answer
182 views

Array of Int and *Char - C++

I want to use LZO to compress a array of int or byte. So I need to copy the int array to a *char then I will compress and save to file. And after i need do reverse operation. I will open the file read ...
0
votes
1answer
246 views

Problem with LZO

So I am trying to use LZO in my application. Here is how I have included it: #include "lzoconf.h" #include "lzodefs.h" #include "lzo1x.h" /* portability layer */ static const char *progname = NULL; ...
0
votes
2answers
469 views

LZO compress char*

I have installed LZO on my Ubuntu machine and I would like to use ti to compress a char* type string. In the example files I have found this code snippet (I have already edited it just a little for ...
0
votes
2answers
743 views

using lzo library in c++ application

I got lzo library to use in our application. The version was provided is 1.07. They have given me .lib along with some header file and some .c source files. I have setup test environment as per ...
0
votes
1answer
513 views

How do I uncompress a file compressed with fusecompress/lzo?

I had mounted a fusecompress of directory compressed/ at fusecompress/ I copied a large file (several GB) to the fusecompress directory (ok, I mv'd it). The compressed file in the directory ...
0
votes
2answers
1k views

LZO Decompression Buffer Size

I am using MiniLZO on a project for some really simple compression tasks. I am compressing with one program, and decompressing with another. I'd like to know how much space to allocate for the ...