summaryrefslogtreecommitdiffstats
path: root/tools/h5repack/h5repack.h
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2004-01-28 22:48:47 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2004-01-28 22:48:47 (GMT)
commit796fe1c4025f83b4060157d04d3873ca9f3fa9e7 (patch)
tree898e38e6787c1afef0957a837c4081daefdd07eb /tools/h5repack/h5repack.h
parent48c7a5e35ea7950f54fdeaad1d308c32d4c4e4c2 (diff)
downloadhdf5-796fe1c4025f83b4060157d04d3873ca9f3fa9e7.zip
hdf5-796fe1c4025f83b4060157d04d3873ca9f3fa9e7.tar.gz
hdf5-796fe1c4025f83b4060157d04d3873ca9f3fa9e7.tar.bz2
[svn-r8122] Purpose:
h5repack new feature Description: in the SZIP settings, when the requested pixels per block parameter does not conform to the SZIP specifications, instead of returning without applying the filter, do an attempt to set this parameter to a valid value, issuing a warning in the process Solution: Platforms tested: linux solaris AIX Misc. update:
Diffstat (limited to 'tools/h5repack/h5repack.h')
-rw-r--r--tools/h5repack/h5repack.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/h5repack/h5repack.h b/tools/h5repack/h5repack.h
index 438dd45..eb71fec 100644
--- a/tools/h5repack/h5repack.h
+++ b/tools/h5repack/h5repack.h
@@ -183,7 +183,7 @@ int filter_this(const char* name,
int apply_filters(hid_t dcpl_id,
size_t size, /* size of datatype in bytes */
pack_opt_t *options, /* repack options */
- pack_info_t *pack); /* info about object to filter */
+ pack_info_t *pack); /* info about object to filter */
int has_filter(hid_t dcpl_id,
H5Z_filter_t filtnin);
@@ -197,7 +197,8 @@ int check_szip(int rank, /* chunk rank */
hsize_t *dims, /* chunk dims */
size_t size, /* size of datatype in bytes */
unsigned szip_options_mask,
- unsigned szip_pixels_per_block);
+ unsigned *szip_pixels_per_block /*IN,OUT*/,
+ pack_opt_t *options);
/*-------------------------------------------------------------------------