summaryrefslogtreecommitdiffstats
path: root/src/H5Zszip.c
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2008-02-12 20:36:48 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2008-02-12 20:36:48 (GMT)
commit54a5561c78a2a229075b84219c883a38e28e5690 (patch)
tree5c3f5a4e9f562c6ff489bf3a85e00de67bc4e830 /src/H5Zszip.c
parentd48aa9b23663ebfcd21942d5bf5cd967aa760e88 (diff)
downloadhdf5-54a5561c78a2a229075b84219c883a38e28e5690.zip
hdf5-54a5561c78a2a229075b84219c883a38e28e5690.tar.gz
hdf5-54a5561c78a2a229075b84219c883a38e28e5690.tar.bz2
[svn-r14557] 1st batch of commits regarding making 1.6 h5repack like 1.8
1) have several global filters 2) do a check on the verify code about private filter values Note: some shuffle and szip private symbols were made public tested: windows, linux, solaris
Diffstat (limited to 'src/H5Zszip.c')
-rw-r--r--src/H5Zszip.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/H5Zszip.c b/src/H5Zszip.c
index 62cc461..07f784f 100644
--- a/src/H5Zszip.c
+++ b/src/H5Zszip.c
@@ -46,13 +46,6 @@ const H5Z_class_t H5Z_SZIP[1] = {{
H5Z_filter_szip, /* The actual filter function */
}};
-/* Local macros */
-#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 */
/*-------------------------------------------------------------------------