Determining the best initial buffer size for decompressing streamed compressed data - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T17:14:44Zhttp://stackoverflow.com/feeds/question/982230http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/982230/determining-the-best-initial-buffer-size-for-decompressing-streamed-compressed-da2Determining the best initial buffer size for decompressing streamed compressed dataDwight Kelly2009-06-11T16:41:31Z2009-06-14T18:53:44Z
<p>I am trying to calculate an initial buffer size to use when decompressing data of an unknown size. I have a bunch of data points from existing compression streams but don't know the best way to analyze them.</p>
<p>Data points are the compressed size and the ratio to uncompressed size.
For example:
100425 (compressed size) x 1.3413 (compression ratio) = 134,700 (uncompressed size)</p>
<p>The compressed data stream doesn't store the uncompressed size so the decompressor has to alloc an initial buffer size and realloc if it overflows. I'll looking for the "best" initial size to alloc the buffer given the compressed size. I have over 293,000 data points.</p>
http://stackoverflow.com/questions/982230/determining-the-best-initial-buffer-size-for-decompressing-streamed-compressed-da/982259#9822590Answer by McWafflestix for Determining the best initial buffer size for decompressing streamed compressed dataMcWafflestix2009-06-11T16:47:26Z2009-06-11T16:47:26Z<p>Given that you have a lot of data points of how your compression works, I'd recommend analyzing your compression data, to get a mean compression standard and a standard deviation. Then, I'd recommend setting your buffer size initially to your original size * your compression size at 2 standard deviations above the mean; this will mean that your buffer is the right size for 93% of your cases. If you want your buffer to not need reallocation for more cases, increase the number of standard deviations above the mean that you're allocating for.</p>
http://stackoverflow.com/questions/982230/determining-the-best-initial-buffer-size-for-decompressing-streamed-compressed-da/993475#9934750Answer by bill for Determining the best initial buffer size for decompressing streamed compressed databill2009-06-14T18:53:44Z2009-06-14T18:53:44Z<p>One simple method is to use a common initial decompression buffer size and double the size at each realloc. This is also used in many dynamic libraries.</p>