I am designing a zip-unzip utility. I am using the zlib library. Inflate and deflate work perfectly without any errors. Unzip works alright for text and .c files but when I use it to compress .mp3 or .jpg images the output size is 5B. The pointers are perfect, I have verified that. What could be the reason for this error? Has anyone faced a similar problem? Can someone please guide me? I have been stuck here for quite some time.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Check any additional return codes of the library. A 5 byte block is a clear indicator, that there's nothing to compress. That kind of block consists of one byte code stating that the next block is "raw", two byte sequence telling the size of the next block and another two bytes that are bit inversion of the first length field. I believe the caller is supposed to write the next raw data block before calling deflate again. |
|||||||||
|