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/blosclz.h

    r00587dc r981e22c  
    11/********************************************************************* 
    2   Blosc - Blocked Suffling and Compression Library 
     2  Blosc - Blocked Shuffling and Compression Library 
    33 
    4   Author: Francesc Alted <f[email protected]> 
     4  Author: Francesc Alted <f[email protected]> 
    55 
    66  See LICENSES/BLOSC.txt for details about copyright and rights to use. 
     
    3333  output buffer. 
    3434 
     35  The acceleration parameter is related with the frequency for 
     36  updating the internal hash.  An acceleration of 1 means that the 
     37  internal hash is updated at full rate.  A value < 1 is not allowed 
     38  and will be silently set to 1. 
     39 
    3540  The input buffer and the output buffer can not overlap. 
    3641*/ 
    3742 
    38 int blosclz_compress(int opt_level, const void* input, int length, 
    39                      void* output, int maxout); 
     43int blosclz_compress(const int opt_level, const void* input, int length, 
     44                     void* output, int maxout, int accel); 
    4045 
    4146/** 
Note: See TracChangeset for help on using the changeset viewer.