summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/H5Zszip.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/H5Zszip.c b/src/H5Zszip.c
index c999ba8..f07303f 100644
--- a/src/H5Zszip.c
+++ b/src/H5Zszip.c
@@ -168,6 +168,13 @@ H5Z_set_local_szip(hid_t dcpl_id, hid_t type_id, hid_t space_id)
dtype_precision=dtype_size;
}
}
+ if (dtype_precision>24) {
+ if (dtype_precision <= 32) {
+ dtype_precision=32;
+ } else if ( dtype_precision <= 64) {
+ dtype_precision=64;
+ }
+ }
/* Set "local" parameter for this dataset's "bits-per-pixel" */
cd_values[H5Z_SZIP_PARM_BPP]=dtype_precision;