0
votes
3answers
48 views

Are there any asymmetric compression algorithms which are fast compression / slow decompression?

I have looked at many "fast compression" libraries, but all of them feature fast decompression rather than fast compression. I am working on a system where fast compression is more highly valued than ...
1
vote
3answers
102 views

Data Compression Algorithms

I was wondering if anyone has a list of data compression algorithms. I know basically nothing about data compression and I was hoping to learn more about different algorithms and see which ones are ...
-3
votes
1answer
25 views

LZJH (ITU-T V.44) open source implementation [closed]

I am looking for an open source implementation of LZJH algorithm (ITU-T V.44). Thank you
-2
votes
0answers
56 views

Fractal Image Compression and C - Not Able to View Image

I have two source files enc.c and dec.c which in theory is supposed to take an image file, encode it and then decode it back into an image file with a fractal image compression applied. In this book ...
0
votes
1answer
74 views

How to write gz file in C via zlib and compress2

I'm using zlib to write a program that compress data in several threads. so I can't use gzwrite. I'm using compress2(). *dest_len = compressBound(LOG_BUFF_SZ); err = ...
0
votes
2answers
127 views

Compress and Encrypt a Byte Array in C

I have a program which generates byte arrays unsigned * char and sends that data out over a wireless stream using fwrite. I would like to compress and encrypt that byte array into another byte array, ...
0
votes
2answers
70 views

Efficient Rice decoding implementation

I made a naïve implementation of a Rice decoder (and encoder): void rice_decode(int k) { int i = 0 int j = 0; int x = 0; while(i < size-k) { int q = 0; while(get(i) ...
3
votes
1answer
61 views

What do these two parts of libavcodec/h263data.h do exactly?

Below are two segments of code from the FFMPEG library, specifically located here: libavcodec/h263data.h (http://ffmpeg.org/doxygen/0.6/h263data_8h-source.html). I would like to know more about how ...
0
votes
2answers
69 views

Representation of a C binary file [closed]

For a homework assignment I created a simple compression/decompression program that makes use of a naive implementation of run-length encoding. I've gotten my program working; compressing and ...
0
votes
3answers
148 views

How to read a binary file 14 bits at a time instead of 8?

I need to decompress a binary file. Since the binary file is encoded in 14 bits, I have to read 14 bits instead 8 bits to decode. But as far as I know using getc() to read the file only give me 8 bits ...
1
vote
2answers
176 views

Most efficient way to store an unsigned 16-bit Integer to a file

I'm making a dictionary compressor in C with dictionary max size 64000. Because of this, I'm storing my entries as 16-bit integers. What I'm currently doing: To encode 'a', I get its ASCII value, ...
0
votes
0answers
75 views

searching an lzw encoded file

I am looking to alter the lzw compressor to enable it to search for a word in an LZW encoded file and finds the number of matches for that search term. For example if my file is used as ...
4
votes
3answers
213 views

Choosing a compression algorithm to implement [closed]

I've been given some coursework to implement a compression algorithm of my choice. It can be any language, however the languages I know best would be Java, followed by C. It will be evaluated based on ...
-5
votes
1answer
64 views

LZ compression technique

HELLO guys I was trying to implement LZ compression....and was trying to compress some files using it....but I am having some logical problem... I seriously dont have any idea about how the data is to ...
0
votes
1answer
156 views

LZ78 algorithm - overwriting dictionary after filling dictionary?

I have a question about methods of implementation LZ78 algorithm - is there any possibility to add new 'keywords' after filling dictionary to first indexes? Look at my code: //adding new word to ...
0
votes
0answers
88 views

(C) how to fix this algorithm for z827 ASCII compression?

noob warning. I'm trying to create a compression program. It takes a .txt with ASCII characters as an argument, and cuts off the leading 0 of the binary representation of each character. It does ...
0
votes
4answers
230 views

masking most significant bit

I wrote this function to remove the most significant bit in every byte. But this function doesn't seem to be working the way I wanted it to be. The output file size is always '0', I don't understand ...
-1
votes
2answers
116 views

compression algorithm

I'm working on a compression algorithm wherein we have to write code in C. The program takes a file and removes the most significant bit in every character and stores the compressed text in another ...
0
votes
1answer
78 views

Array of variable length strings for lzw compression

Right here is the function itself. I'm having a segfault in there because apparently I'm unable to assign the string to that value in the array. clang/gcc both give me a warning. Clang's is a bit ...
0
votes
1answer
146 views

LZW Compression with Entire unicode library

I am trying to do this problem: Assume we have an initial alphabet of the entire Unicode character set, instead of just all the possible byte values. Recall that unicode characters are ...
0
votes
0answers
55 views

Convert 1D parameter to reduce Hermite spline

I have 1D parametric data that I need to convert to a reduced Hermite spline with vertices only on the contours. My math abilities are limited. Are there any libraries or procedures that I can ...
3
votes
2answers
133 views

How to compress a string and replace duplicates with its count using C?

I have a large string char myStr="AAAABBBCCCCCCDDDEFGHHIJJ". I shall pass this string to my string compressing function which should return me the string in below format myStr ="A4B3C6D3EFGH2IJ2" ...
0
votes
0answers
43 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 ...
-1
votes
1answer
177 views

Encryption library and compression library for c/c++ in linux [closed]

I need a library which can encrypt/decrypt files with a symmetric key in linux. I also need a library to compress the files that are going to be encrypted. Which of these libraries should I use for ...
1
vote
5answers
174 views

Is the output of a compression algorithm (for example gzip, zip, or snappy) definitely smaller than the input?

I have this question since I need to allocate the output buffer for the compressed data. I need to know how large the buIs the output of a compression algorithm (for example gzip, zip, or snappy) ...
0
votes
2answers
110 views

zlib Compression Error

I'm using this code snippet which I grabbed from a tutorial. It's meant to compress the data from an input file and put it into the output file. However, it gives a segmentation fault when running ...
1
vote
1answer
105 views

Using bzip2 low-level routines to compress chunks of data

The Overview I am using the low-level calls in the libbzip2 library: BZ2_bzCompressInit(), BZ2_bzCompress() and BZ2_bzCompressEnd() to compress chunks of data to standard output. I am migrating ...
0
votes
2answers
192 views

ascii output of string compression in C

I need to use both compression and encryption in a project. There are two programs in the project. In the first program, an ascii text file is first compressed and then encrypted. Further operations ...
0
votes
3answers
560 views

Real time compression of 32 bit RGBA image data

What is the fastest algorithm for compressing RGBA 32 bit image data? I am working in C, but am happy for examples in other programming languages. Right now I am using LZ4 but I am considering run ...
0
votes
0answers
160 views

ZLIB compression

I'm working on a project wherein if something goes wrong on my disk I'll send chunks of memory to another disk after compressing it using ZLIB. This dump then I plan to download and use for further ...
1
vote
2answers
119 views

Custom compression algorithm

I'm writing a custom compression algorithm in C that reads in ascii characters, removes the 1st bit from each of them (because it will always be 0), and then sticks it in a new file. It makes the ...
5
votes
1answer
151 views

Can zip files be sparse/non-contiguous?

The zip file format ends with a central directory section that then points to the individual zip entries within the file. This appears to allow zip entries to occur anywhere within the zip file ...
0
votes
4answers
388 views

file compression using zlib

Can i use the zlib library function to compress files. I try to do a file compression using "gzopen()" which is actually working with single file with some problems. When i try to decompress the ...
0
votes
0answers
38 views

How to compress using Cryptographic Message Syntax

I've been looking for information about the CMS(Cryptographic Message Syntax) online for a long time while I even couldn't understand most of the results I've got so far.So I hope there is someone who ...
0
votes
1answer
87 views

Can BZ2_bzBuffToBuffCompress() be called repeatedly?

I have a large amount of "input" data that I want to compress to multiple bzip2 streams, without writing data to multiple intermediate files. Can I put a chunk of input data into a buffer, use ...
1
vote
1answer
110 views

Standardized library to compress data as a sequence of small pieces C++/C?

I need to compress data for logging by appending short strings to the log file using C++/C. I first tired gzip(zlib), but this makes a symbol table for each short string and actually makes the data ...
1
vote
2answers
84 views

Best way to compress an incrementing data

I have a vector where I keep an incrementing data. Normally each element of the vector is a 64 bit long variable. However, it is quite possible that difference between two successive elements is quite ...
2
votes
1answer
106 views

Compressing a bit matrix when receiving the row in random order

I am working with an Nx3 bit matrix where the number of row N is very large, say 2^40. A typical matrix looks like this 000 001 010 011 ... I do something like this transform_row(5); //return ...
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
221 views

How to implement a text file into a linked list?

What I'm trying to do is a Huffman algorithm. One of the specifications of the program is that the user will create a .txt file that contains the characters with their corresponding frequencies. So ...
1
vote
3answers
570 views

Compress PNG files in PHP

I am generating PNG file with cairo extension of PHP. The image contains a background and a text. Now I want to compress these images by PHP after its generated by cairo. Is there any library to do ...
0
votes
2answers
185 views

Record audio in C++ with best compression regardless of quality [closed]

I want to create a small app that records audio from the mic then save it with best compression, and I dont care about sound quality ..I need the best compression ..i am recording human voice ..and I ...
0
votes
1answer
405 views

Speex decoded frame is not as the original frame

i need your help in determining the problem in the following sample code (taken from speex manual) for fixed point encoding. i tested encoding a 160 sample frame and then decoding it back But The ...
0
votes
3answers
288 views

How to modify this string compression C code to handle more than 9 repeats of a character?

If this string compression code is given a string aaaabbbbcc, it will produce the string a4b4c2. However, the solution doesn't work if the occurrence count of a character is greater than 9. What ...
2
votes
2answers
276 views

Compressing a raw image buffer

I capture a raw image from a grayscale camera. When I transfer the image to OpenCV's IplImage and use cvSaveImage("image.jpg",image), the image is saved with a size of around 160K. Whereas, if I use ...
1
vote
1answer
301 views

Covert raw image buffer into JPEG using LIBAVCODEC

I have a raw image buffer (in memory) captured from a camera that I want to convert into JPEG (for reducing size). The problem is that saving these images into .pgm format results into a huge file ...
-1
votes
1answer
325 views

Compressing an array of integers in C using zlib

I need an urgent help about compressing an array of integers using zlib,and that will be in c language. i have: uint16_t arrayOfData[120] and i want to compress it so that i get the compressed ...
3
votes
3answers
133 views

Is there a shorter way to find length of an array than this C code?

static int a[] = {1, 5, 645, 43, 4, 65, 5408, 4, 7, 90, 23, 11}; int len=sizeof(a)/sizeof(int); Is there a shortcut, with ANSI 99?
0
votes
1answer
209 views

PHP (ZLIB) uncompression of a C (ZLIB) compressed array returns gibberish

I have a set of ZLIB compressed / base64 encoded strings (done in a C program) that are stored in a database. I have written a small PHP page that should retrieve these values and plot them (the ...
1
vote
2answers
520 views

Standalone Cross Platform (Windows/Linux)) File Compression for C/C++?

I am looking for a (prefferably small) open source library in C or C++ which I can include in my MIT licensed projects (hosted on google code). I am a hobby C/C++ programmist so I am not that ...

1 2 3