summaryrefslogtreecommitdiffstats
path: root/src/H5Zpublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-09-01 22:46:16 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-09-01 22:46:16 (GMT)
commit90103afad6237862caa8fe02e80c57d9515e2b30 (patch)
tree4c7c784f181b7a4c8f45b0262ed648b588d9a7ad /src/H5Zpublic.h
parentfc90c784e1b114079038484f1825ac53987c6b44 (diff)
downloadhdf5-90103afad6237862caa8fe02e80c57d9515e2b30.zip
hdf5-90103afad6237862caa8fe02e80c57d9515e2b30.tar.gz
hdf5-90103afad6237862caa8fe02e80c57d9515e2b30.tar.bz2
[svn-r11337] Purpose:
Code cleanup Description: Changed some scale+offset filter symbols from H5_SO_... -> H5Z_SO_... to indicate that they are in the H5Z package. Platforms tested: FreeBSD 4.11 (sleipnir) Too minor to require h5committest
Diffstat (limited to 'src/H5Zpublic.h')
-rw-r--r--src/H5Zpublic.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Zpublic.h b/src/H5Zpublic.h
index c6fd426..a559174 100644
--- a/src/H5Zpublic.h
+++ b/src/H5Zpublic.h
@@ -61,12 +61,12 @@ typedef int H5Z_filter_t;
#define H5_SZIP_MAX_PIXELS_PER_BLOCK 32
/* Special parameters for ScaleOffset filter*/
-#define H5_SO_INT_MINBITS_DEFAULT 0
-typedef enum H5_SO_scale_type {
- H5_SO_FLOAT_DSCALE = 0,
- H5_SO_FLOAT_ESCALE = 1,
- H5_SO_INT = 2
-} H5_SO_scale_type;
+#define H5Z_SO_INT_MINBITS_DEFAULT 0
+typedef enum H5Z_SO_scale_type_t {
+ H5Z_SO_FLOAT_DSCALE = 0,
+ H5Z_SO_FLOAT_ESCALE = 1,
+ H5Z_SO_INT = 2
+} H5Z_SO_scale_type_t;
/* Current version of the H5Z_class_t struct */
#define H5Z_CLASS_T_VERS (1)