diff options
author | Robert E. McGrath <mcgrath@ncsa.uiuc.edu> | 2005-02-23 17:52:03 (GMT) |
---|---|---|
committer | Robert E. McGrath <mcgrath@ncsa.uiuc.edu> | 2005-02-23 17:52:03 (GMT) |
commit | fedd036348a6fa1f60bc1af3760ff34e2a47adaa (patch) | |
tree | 646943e0abeb7d66f44431cb07a9c2d6f6059e6b /tools/h5repack/h5repack_copy.c | |
parent | 0b83fea12571ae1f05e6465d4afc09948486e17f (diff) | |
download | hdf5-fedd036348a6fa1f60bc1af3760ff34e2a47adaa.zip hdf5-fedd036348a6fa1f60bc1af3760ff34e2a47adaa.tar.gz hdf5-fedd036348a6fa1f60bc1af3760ff34e2a47adaa.tar.bz2 |
[svn-r10067] Purpose:
feature
Description:
h5repack support for scaleoffset compression
Checking in early to help debug the filter.
Solution:
Added messages and command line to handle new scale offset filter.
Note: TESTS ARE DISABLED FOR NOW. The filter is not
complete, repack tests may fail due to know problems.
PLEASE DO NOT MESS WITH THE SCALEOFFSET TESTS AT THIS TIME.
They will be enabled when the filter is ready.
Platforms tested:
verbena,copper,shanti
Misc. update:
MANIFEST
Diffstat (limited to 'tools/h5repack/h5repack_copy.c')
-rw-r--r-- | tools/h5repack/h5repack_copy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/h5repack/h5repack_copy.c b/tools/h5repack/h5repack_copy.c index 3f558fc..05ea7fa 100644 --- a/tools/h5repack/h5repack_copy.c +++ b/tools/h5repack/h5repack_copy.c @@ -118,6 +118,9 @@ static void print_obj(hid_t dcpl_id, char *name) case H5Z_FILTER_NBIT: strcat(str,"NBIT "); break; + case H5Z_FILTER_SCALEOFFSET: + strcat(str,"SCALEOFFSET "); + break; } /* switch */ }/*i*/ |