File: H5Zszip.h

package info (click to toggle)
netcdf 1%3A4.9.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 112,640 kB
  • sloc: ansic: 267,462; sh: 12,645; cpp: 5,822; yacc: 2,613; makefile: 1,739; lex: 1,216; xml: 173; awk: 2
file content (14 lines) | stat: -rwxr-xr-x 638 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef H5ZSZIP_H
#define H5ZSZIP_H

/* Macros for the szip filter */
#define H5Z_SZIP_USER_NPARMS    2       /* Number of parameters that users can set */
#define H5Z_SZIP_TOTAL_NPARMS   4       /* Total number of parameters for filter */
#define H5Z_SZIP_PARM_MASK      0       /* "User" parameter for option mask */
#define H5Z_SZIP_PARM_PPB       1       /* "User" parameter for pixels-per-block */
#define H5Z_SZIP_PARM_BPP       2       /* "Local" parameter for bits-per-pixel */
#define H5Z_SZIP_PARM_PPS       3       /* "Local" parameter for pixels-per-scanline */

#define MIN(x,y) ((x) < (y) ? (x) : (y))

#endif /*H5ZSZIP_H*/