0
votes
0answers
45 views

How to make archive from more than one file with LZMA C SDK

I'm trying to use lzma sdk to create a archive from some files. but a have looked all the demo of LZMA C SDK, and find there is a demo "C\Util\Lzma" shows how to make a file into 7z archive, but the ...
0
votes
0answers
55 views

Accessing parts of xz-compressed file

I have a code that takes a file, mmaps it into memory and then reads parts of it. My goal is to make it work with xz-compressed files of this type as well. The file may potentially be quite large and ...
0
votes
0answers
185 views

using LzmaCompress to make an archive

I'm a lil bit confused with compression methods. I do know how to use this function, and it does output a tinier buffer, but how do I make an archive using the 7zip sdk, with the compressed data? i'm ...
0
votes
2answers
405 views

Programmatically LZMA decompressing a static LZMA-compressed file

I'm LZMA-decompressing a resource file which I earlier compressed using lzma e <infile> <outfile> -lc0 -lp2 from the terminal and imported to my project. However when applied to this file ...
0
votes
0answers
75 views

LMZA C build and decompression only

How do you compile LMZA for decompression-only? (I'd like to generate a static library in an Xcode project.)
1
vote
1answer
1k views

Installing/compiling pylzma (lzma python binding)

I've already posted this question on the authors website, but I thought I might ask here as well. I've been trying to install pylzma with this setup: Windows 7 x64 Python 2.6.6 x64 the amd64 ...
1
vote
1answer
312 views

Trying to compile LzmaUtil.c from LZMA SDK

I wish to use LZMA natively in my own C util. I've downloaded LZMA SDK from http://www.7-zip.org/sdk.html (version 9.12 beta) - but I simply fail to compile their LzmaUtil. This is what I've tried, ...
1
vote
2answers
1k views

How to get the uncompressed size of an LZMA2 file (.xz / liblzma)

I'm looking for a way to get the uncompressed stream size of an LZMA2 / .xz file compressed with the xz utility. I'm using liblzma from Windows/Linux for this task, so I guess I'm looking for some ...