diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2023-03-16 11:23:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-16 11:23:26 (GMT) |
commit | a1fb8d70e113088be36bdfc8ee09a3fc380108d8 (patch) | |
tree | db48549d2482e4ce45cc3a6f728fe19d41156307 /src | |
parent | b2da35ea7456fe95c42ff6343425351d670af960 (diff) | |
download | hdf5-a1fb8d70e113088be36bdfc8ee09a3fc380108d8.zip hdf5-a1fb8d70e113088be36bdfc8ee09a3fc380108d8.tar.gz hdf5-a1fb8d70e113088be36bdfc8ee09a3fc380108d8.tar.bz2 |
Cherry-pick merges from develop to hdf5_1_14 (#2572)
Co-authored-by: Mark (he/his) C. Miller <miller86@llnl.gov>
Co-authored-by: Dana Robinson <43805+derobins@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Ppublic.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h index 55d7641..24dc754 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -2321,10 +2321,13 @@ H5_DLL herr_t H5Pset_deflate(hid_t plist_id, unsigned level); * (#H5Z_FILTER_DEFLATE) and the Fletcher32 error detection filter * (#H5Z_FILTER_FLETCHER32). * - * The array \p c_values contains \p cd_nelmts integers which are - * auxiliary data for the filter. The integer values will be - * stored in the dataset object header as part of the filter - * information. + * The array \p cd_values contains \p cd_nelmts unsigned integers + * which are auxiliary data for the filter. The values are typically + * used as parameters to control the filter. In a filter's + * \p set_local method (called from \p H5Dcreate), the values are + * interpreted and possibly modified before they are used to control + * the filter. These, possibly modified values, are then stored in + * the dataset object header as auxiliary data for the filter. * * The \p flags argument is a bit vector with the following * fields specifying certain general properties of the filter: |