diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-10-19 16:11:16 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-10-19 16:11:16 (GMT) |
commit | 8ef059b4f74a557e2d5f4f11042d617ed33c91a4 (patch) | |
tree | df473244d1c8063ae553d7efa9860d2ed00f9b81 /tools/h5repack/h5repack.h | |
parent | a4c0ed037424ada07720a22ebb15a58f199c5b78 (diff) | |
download | hdf5-8ef059b4f74a557e2d5f4f11042d617ed33c91a4.zip hdf5-8ef059b4f74a557e2d5f4f11042d617ed33c91a4.tar.gz hdf5-8ef059b4f74a557e2d5f4f11042d617ed33c91a4.tar.bz2 |
[svn-r9436] Purpose:
bug fix
Description:
Description:
one case was not handled in the combination of input options (layout and filters)
Solution:
redo the algorythm that handles all cases
Solution:
Platforms tested:
linux
Misc. update:
Diffstat (limited to 'tools/h5repack/h5repack.h')
-rw-r--r-- | tools/h5repack/h5repack.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/tools/h5repack/h5repack.h b/tools/h5repack/h5repack.h index b5906ae..e4de4d3 100644 --- a/tools/h5repack/h5repack.h +++ b/tools/h5repack/h5repack.h @@ -179,18 +179,12 @@ int print_filters(hid_t dcpl_id); *------------------------------------------------------------------------- */ -int filter_this(const char* name, - pack_opt_t *options, - pack_info_t *pack); /* info about object to filter */ - int apply_filters(const char* name, /* object name from traverse list */ int rank, /* rank of dataset */ hsize_t *dims, /* dimensions of dataset */ hid_t dcpl_id, /* dataset creation property list */ hid_t type_id, /* datatype */ - pack_opt_t *options, /* repack options */ - int has_layout, /* input chunk */ - pack_info_t *obj); /* info about object to filter */ + pack_opt_t *options); /* repack options */ int has_filter(hid_t dcpl_id, H5Z_filter_t filtnin); |