summaryrefslogtreecommitdiffstats
path: root/tools/h5dump/h5dump.c
diff options
context:
space:
mode:
authorRobert E. McGrath <mcgrath@ncsa.uiuc.edu>2005-02-11 19:03:41 (GMT)
committerRobert E. McGrath <mcgrath@ncsa.uiuc.edu>2005-02-11 19:03:41 (GMT)
commit5bedb5edfe575739bca53f801d0b751e0aeb9019 (patch)
tree4e2e8f7bb9754195767c07efe996d4537e4c4e6e /tools/h5dump/h5dump.c
parent3f0a35a4eab869793f5b3882da35a2fe0b683dbd (diff)
downloadhdf5-5bedb5edfe575739bca53f801d0b751e0aeb9019.zip
hdf5-5bedb5edfe575739bca53f801d0b751e0aeb9019.tar.gz
hdf5-5bedb5edfe575739bca53f801d0b751e0aeb9019.tar.bz2
[svn-r9989] Purpose:
Feature Description: Adding support for NBIT compression to dumper Solution: Platforms tested: arabica, verbena, copper64 Misc. update:
Diffstat (limited to 'tools/h5dump/h5dump.c')
-rw-r--r--tools/h5dump/h5dump.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c
index 6a617c7..b7974f4 100644
--- a/tools/h5dump/h5dump.c
+++ b/tools/h5dump/h5dump.c
@@ -2348,6 +2348,10 @@ dump_dcpl(hid_t dcpl_id,hid_t type_id, hid_t obj_id)
printf("%s\n",END);
}
break;
+ case H5Z_FILTER_NBIT:
+ indentation(indent + COL);
+ printf("%s\n", NBIT);
+ break;
default:
indentation(indent + COL);
if (H5Zfilter_avail(filtn))