diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2005-01-06 19:04:15 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2005-01-06 19:04:15 (GMT) |
commit | ad633eafcc9f1961bcd56d0508263caf9931b3b0 (patch) | |
tree | b99b65a80700e9a982bf2fc76f636bd9aefae960 /src/H5Zpublic.h | |
parent | 48822308a7e5f25f203c99e3da13dac585b90b02 (diff) | |
download | hdf5-ad633eafcc9f1961bcd56d0508263caf9931b3b0.zip hdf5-ad633eafcc9f1961bcd56d0508263caf9931b3b0.tar.gz hdf5-ad633eafcc9f1961bcd56d0508263caf9931b3b0.tar.bz2 |
[svn-r9758] Purpose:
Adding framework of N-bit filter
Description:
N-bit filter is required for NetCDF project.
To add N-bit filter, configure.in configure, Makefile.in under src and other
filter-related source code needs to be updated.
Currently, N-bit tests are turned off from the library. So the change will affect daily test.
Solution:
Platforms tested:
sol 2.7, linux 2.4, aix 5.1
Misc. update:
Diffstat (limited to 'src/H5Zpublic.h')
-rw-r--r-- | src/H5Zpublic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Zpublic.h b/src/H5Zpublic.h index 83c2ada..944934e 100644 --- a/src/H5Zpublic.h +++ b/src/H5Zpublic.h @@ -34,6 +34,7 @@ typedef int H5Z_filter_t; #define H5Z_FILTER_SHUFFLE 2 /*shuffle the data */ #define H5Z_FILTER_FLETCHER32 3 /*fletcher32 checksum of EDC */ #define H5Z_FILTER_SZIP 4 /*szip compression */ +#define H5Z_FILTER_NBIT 5 /*nbit compression */ #define H5Z_FILTER_RESERVED 256 /*filter ids below this value are reserved */ #define H5Z_FILTER_MAX 65535 /*maximum filter id */ #define H5Z_MAX_NFILTERS 32 /* Maximum number of filters allowed in a pipeline (should probably be allowed to be an unlimited amount) */ |