Hi,
I thought its obvious but I probably miss something here:
to uncompress from my BinaryBuilder created binary data I do the following:
juce::MemoryInputStream input(resource::test,resource::testSize,false);
juce::GZIPDecompressorInputStream decomp(input);
and then try to read it with
size=decomp.read(data,max_size);
but it always returns 0. When stepping into this its due GZIPDecompressorInputStream::helper->data (in helper->doNextBlock) are zero. What am I doing wrong here?
Thanks,
raketa