Sets up use of the SZIP compression filter
Procedure:
H5P_SET_SZIP ( plist, options_mask, pixels_per_block )
Signature:
herr_t H5Pset_szip(hid_t plist,
unsigned int options_mask,
unsigned int pixels_per_block)
Fortran90 Interface: h5pset_szip_f
SUBROUTINE h5pset_szip_f(prp_id, options_mask, pixels_per_block, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: prp_id
! Dataset creation property list identifier
INTEGER, INTENT(IN) :: options_mask
! A bit-mask conveying the desired
! SZIP options
! Current valid values in Fortran are:
! H5_SZIP_EC_OM_F
! H5_SZIP_NN_OM_F
INTEGER, INTENT(IN) :: pixels_per_block
! The number of pixels or data elements
! in each data block
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
END SUBROUTINE h5pset_szip_f
Parameters:
hid_t plist | IN: Dataset creation property list identifier |
unsigned int options_mask | IN: A bit-mask conveying the desired SZIP options Valid values are H5_SZIP_EC_OPTION_MASK and H5_SZIP_NN_OPTION_MASK . |
unsigned int pixels_per_block | IN: The number of pixels or data elements in each data block |
Description:
Replace this text with a description of what this function does.
Returns:
Replace this text with a description of the function's return values.
Example:
History:
Replace this with a description of this function's change history.
--- Last Modified: December 20, 2017 | 02:05 PM