HDF5 2.0.0.2ad0391
API Reference
|
#include "H5public.h"
Typedefs | |
typedef int | H5Z_filter_t |
Filter identifiers. | |
typedef H5Z_cb_return_t(* | H5Z_filter_func_t) (H5Z_filter_t filter, void *buf, size_t buf_size, void *op_data) |
Enumerations | |
enum | H5Z_SO_scale_type_t { H5Z_SO_FLOAT_DSCALE = 0 , H5Z_SO_FLOAT_ESCALE = 1 , H5Z_SO_INT = 2 } |
enum | H5Z_EDC_t { H5Z_ERROR_EDC = -1 , H5Z_DISABLE_EDC = 0 , H5Z_ENABLE_EDC = 1 , H5Z_NO_EDC = 2 } |
enum | H5Z_cb_return_t { H5Z_CB_ERROR = -1 , H5Z_CB_FAIL = 0 , H5Z_CB_CONT = 1 , H5Z_CB_NO = 2 } |
Functions | |
htri_t | H5Zfilter_avail (H5Z_filter_t id) |
Determines whether a filter is available. | |
herr_t | H5Zget_filter_info (H5Z_filter_t filter, unsigned int *filter_config_flags) |
Retrieves information about a filter. | |
#define H5Z_FILTER_ALL 0 |
Symbol to remove all filters in H5Premove_filter()
#define H5Z_FILTER_CONFIG_DECODE_ENABLED (0x0002) |
#define H5Z_FILTER_CONFIG_ENCODE_ENABLED (0x0001) |
#define H5Z_FILTER_DEFLATE 1 |
deflation like gzip
#define H5Z_FILTER_ERROR (-1) |
no filter
#define H5Z_FILTER_FLETCHER32 3 |
fletcher32 checksum of EDC
#define H5Z_FILTER_MAX 65535 |
maximum filter id
#define H5Z_FILTER_NBIT 5 |
nbit compression
#define H5Z_FILTER_NONE 0 |
reserved indefinitely
#define H5Z_FILTER_RESERVED 256 |
filter ids below this value are reserved for library use
#define H5Z_FILTER_SCALEOFFSET 6 |
scale+offset compression
#define H5Z_FILTER_SHUFFLE 2 |
shuffle the data
#define H5Z_FILTER_SZIP 4 |
szip compression
#define H5Z_FLAG_DEFMASK 0x00ff |
definition flag mask
#define H5Z_FLAG_INVMASK 0xff00 |
invocation flag mask
#define H5Z_FLAG_MANDATORY 0x0000 |
filter is mandatory
#define H5Z_FLAG_OPTIONAL 0x0001 |
filter is optional
#define H5Z_FLAG_REVERSE 0x0100 |
reverse direction; read
#define H5Z_FLAG_SKIP_EDC 0x0200 |
skip EDC filters for read
#define H5Z_MAX_NFILTERS 32 |
Maximum number of filters allowed in a pipeline
typedef H5Z_cb_return_t(* H5Z_filter_func_t) (H5Z_filter_t filter, void *buf, size_t buf_size, void *op_data) |
Filter callback function definition
typedef int H5Z_filter_t |
Filter identifiers.
! [FiltersIdTable]
Values for H5Z_filter_t | Description |
---|---|
0-255 | These values are reserved for filters predefined and registered by the HDF5 library and of use to the general public. |
256-511 | Filter values in this range are intended for testing only and can be temporarily used by any organization. No attempts are made to resolve numbering conflicts, as all definitions are temporary. |
512-32,767 | Filter values within this range are designated for filters managed by The HDF Group, but they are nominally requested, developed, and supported by third parties. Please contact the HDF5 development team to reserve a value or range of values for use by your filters. |
32,768-65,535 | Filter values in this range are designated for internal company use or application testing when assessing a feature. The HDF Group does not track or document the use of filters within this range. |
! [FiltersIdTable]
enum H5Z_cb_return_t |