diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2010-07-28 15:56:28 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2010-07-28 15:56:28 (GMT) |
commit | 9c218ea879de3f13464aed3c96d5298d1c934774 (patch) | |
tree | ad87e0a97a4435ce5da69da992c9c424e0db3469 /src/H5Dpublic.h | |
parent | bcbf482347a633b07af9eb19ddaccf2bdfccdfa6 (diff) | |
download | hdf5-9c218ea879de3f13464aed3c96d5298d1c934774.zip hdf5-9c218ea879de3f13464aed3c96d5298d1c934774.tar.gz hdf5-9c218ea879de3f13464aed3c96d5298d1c934774.tar.bz2 |
[svn-r19137] Purpose: Add support for disabling filters on partial edge chunks.
Added two new API functions, H5Pset_chunk_opts and H5Pget_chunk_ops. When the
set function is passed H5D_CHUNK_DONT_FILTER_PARTIAL_CHUNKS, datasets created
with that property list will not apply filters to partially used chunks on the
edge of the dataspace. Datasets created in this manner will not be readable by
1.8 or older.
Tested: jam, linew, amani (h5committest)
Diffstat (limited to 'src/H5Dpublic.h')
-rw-r--r-- | src/H5Dpublic.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h index 056346e..972b33b 100644 --- a/src/H5Dpublic.h +++ b/src/H5Dpublic.h @@ -34,6 +34,9 @@ #define H5D_CHUNK_CACHE_NBYTES_DEFAULT ((size_t) -1) #define H5D_CHUNK_CACHE_W0_DEFAULT -1. +/* Bit flags for the H5Pset_chunk_opts() and H5Pget_chunk_opts() */ +#define H5D_CHUNK_DONT_FILTER_PARTIAL_CHUNKS (0x0002u) + /*******************/ /* Public Typedefs */ /*******************/ |