mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r6612] Purpose:
Update code Description: Chase changes for registering filters. Solution: Platforms tested: FreeBSD 4.8 (sleipnir) w/szip Linux 2.4 (sleipnir) w/szip Solaris 2.7 (arabica) w/FORTRAN IRIX64 6.5 (modi4) w/szip, FORTRAN & parallel Misc. update:
This commit is contained in:
parent
92b6e81789
commit
f725c99c60
@ -75,6 +75,21 @@
|
||||
static size_t nio_g;
|
||||
static hid_t fapl_g = -1;
|
||||
|
||||
/* Local function prototypes */
|
||||
static size_t
|
||||
counter (unsigned UNUSED flags, size_t cd_nelmts,
|
||||
const unsigned *cd_values, size_t nbytes,
|
||||
size_t *buf_size, void **buf);
|
||||
|
||||
/* This message derives from H5Z */
|
||||
const H5Z_class_t H5Z_COUNTER[1] = {{
|
||||
FILTER_COUNTER, /* Filter id number */
|
||||
"counter", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
counter, /* The actual filter function */
|
||||
}};
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: counter
|
||||
@ -137,7 +152,7 @@ create_dataset (void)
|
||||
dcpl = H5Pcreate (H5P_DATASET_CREATE);
|
||||
size[0] = size[1] = CH_SIZE;
|
||||
H5Pset_chunk (dcpl, 2, size);
|
||||
H5Zregister (FILTER_COUNTER, "counter", counter);
|
||||
H5Zregister (H5Z_COUNTER);
|
||||
H5Pset_filter (dcpl, FILTER_COUNTER, 0, 0, NULL);
|
||||
|
||||
/* The dataset */
|
||||
|
Loading…
x
Reference in New Issue
Block a user