How can I proceed with decoding after getting the status Z_STREAM_END. If you call inflate () after Z_STREAM_END, then nothing changes.
I need to continue decoding after Z_STREAM_END. But the fact is that the dictionary is reset after receiving Z_STREAM_END. As a result, the next packet in deflate format is not decoded, only the first literal is decoded, and then inflate() returns -3. The dictionary should not be reset after Z_STREAM_END.
0
votes
What exactly are you trying to decode?
- Mark Adler
Solved the problem by yourself.
- Acrobat