Ignore:
Timestamp:
08/26/16 19:35:26 (8 years ago)
Author:
Hal Finkel <hfinkel@…>
Branches:
master, pympi
Children:
8ebc79b
Parents:
cda87e9
git-author:
Hal Finkel <hfinkel@…> (08/26/16 19:35:26)
git-committer:
Hal Finkel <hfinkel@…> (08/26/16 19:35:26)
Message:

Upgrade to latest blosc library

blosc git: e394f327ccc78319d90a06af0b88bce07034b8dd

File:
1 edited

Legend:

Unmodified
Added
Removed
  • thirdparty/blosc/README_HEADER.rst

    r00587dc r981e22c  
    2121    (``uint8``) Blosc format version. 
    2222:versionlz: 
    23     (``uint8``) Blosclz format  version (internal Lempel-Ziv algorithm). 
    24 :flags: 
    25     (``bitfield``) The flags of the buffer. 
     23    (``uint8``) Version of the internal compressor used. 
     24:flags and compressor enumeration: 
     25    (``bitfield``) The flags of the buffer 
    2626 
    2727    :bit 0 (``0x01``): 
    28         Whether the shuffle filter has been applied or not. 
     28        Whether the byte-shuffle filter has been applied or not. 
    2929    :bit 1 (``0x02``): 
    3030        Whether the internal buffer is a pure memcpy or not. 
     31    :bit 2 (``0x04``): 
     32        Whether the bit-shuffle filter has been applied or not. 
     33    :bit 3 (``0x08``): 
     34        Reserved 
     35    :bit 4 (``0x16``): 
     36        Reserved 
     37    :bit 5 (``0x32``): 
     38        Part of the enumeration for compressors. 
     39    :bit 6 (``0x64``): 
     40        Part of the enumeration for compressors. 
     41    :bit 7 (``0x64``): 
     42        Part of the enumeration for compressors. 
     43 
     44    The last three bits form an enumeration that allows to use alternative 
     45    compressors. 
     46 
     47    :``0``: 
     48        ``blosclz`` 
     49    :``1``: 
     50        ``lz4`` or ``lz4hc`` 
     51    :``2``: 
     52        ``snappy`` 
     53    :``3``: 
     54        ``zlib`` 
     55    :``4``: 
     56        ``zstd`` 
    3157 
    3258:typesize: 
     
    3864:ctbytes: 
    3965    (``uint32``) Compressed size of the buffer. 
    40  
Note: See TracChangeset for help on using the changeset viewer.