diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2005-08-31 22:10:54 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2005-08-31 22:10:54 (GMT) |
commit | 71e345cd4ecad162854a8f3621693f6ef9bac641 (patch) | |
tree | 0054dfe795a48e00837bb46c90617a7e2d1c204c /src/H5Ppublic.h | |
parent | 9d7b2503713caa9a44385f528831a084bd356247 (diff) | |
download | hdf5-71e345cd4ecad162854a8f3621693f6ef9bac641.zip hdf5-71e345cd4ecad162854a8f3621693f6ef9bac641.tar.gz hdf5-71e345cd4ecad162854a8f3621693f6ef9bac641.tar.bz2 |
[svn-r11326] Purpose:
Updating scale offset filter.
Description:
Using enum to represent scale_offset type.
Change the order of parameters of H5Pset_scaleoffset.
Solution:
Platforms tested:
sol 2.9, Liunx 2.4, AIX 5.1
Misc. update:
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r-- | src/H5Ppublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h index 0a37721..e6f5a7f 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -268,7 +268,7 @@ H5_DLL herr_t H5Pset_deflate(hid_t plist_id, unsigned aggression); H5_DLL herr_t H5Pset_szip(hid_t plist_id, unsigned options_mask, unsigned pixels_per_block); H5_DLL herr_t H5Pset_shuffle(hid_t plist_id); H5_DLL herr_t H5Pset_nbit(hid_t plist_id); -H5_DLL herr_t H5Pset_scaleoffset(hid_t plist_id, int scale_factor, unsigned scale_type); +H5_DLL herr_t H5Pset_scaleoffset(hid_t plist_id, H5_SO_scale_type scale_type, int scale_factor); H5_DLL herr_t H5Pset_fletcher32(hid_t plist_id); H5_DLL herr_t H5Pset_edc_check(hid_t plist_id, H5Z_EDC_t check); H5_DLL H5Z_EDC_t H5Pget_edc_check(hid_t plist_id); |