Francesc Alted
Francesc Alted
I am +1 on this.
Thanks for reporting. Any chance you can provide a fix? Thanks!
I have had another look at this, and now we check that open is succeeding before the seek (https://github.com/Blosc/c-blosc2/commit/4460dfe69d7a947c5278a756113005cdf9c1fef9). Not sure if that would fix the issue with fuzzer, but...
Right. When `typesize` is > 255, then typesize is [silently dropped to 1](https://github.com/Blosc/c-blosc2/blob/master/blosc/blosc2.c#L1345). The rational for this is that shuffling is a very costly operation for large typesizes, so dropping...
Yes, many codecs can be included in Blosc, but in order to avoid overlapping, I'd like to see which advantages would bring this over the existing codecs (seeing actual figures...
Yes, that's a nice reference. However, most of the codec comparisons are about textual data, whereas Blosc is more about binary data. What I'd like to see is whether a...
Ditto in #92. But I see your point, by silently [reducing `typesize` to 1](https://github.com/Blosc/c-blosc2/blob/master/blosc/blosc2.c#L1345) we are creating inconsistencies in the API. Hmm, probably failing would be better than just documenting...
The main reason for choosing 32-bit buffer sizes was to save space for the header (see `README_HEADER.rst` in the home dir). Blosc is meant to compress small to medium buffers,...
This is a very important thing and will not be overlooked for sure, so do not worry :) 2014-11-11 20:10 GMT+01:00 Steven G. Johnson [email protected]: > (Shouldn't you leave the...
Yeah, that's a good point. Reopening.