diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2001-04-28 23:05:05 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2001-04-28 23:05:05 (GMT) |
commit | 1c4dd8b01ba55ab8fd789b251f98f70749f86988 (patch) | |
tree | c154c22a681d762ef86b5d548d9fb283fc0cd24c /tools/h4toh5 | |
parent | cfc0f7c02b7267c520275fd5d32ecbfee2e580c5 (diff) | |
download | hdf5-1c4dd8b01ba55ab8fd789b251f98f70749f86988.zip hdf5-1c4dd8b01ba55ab8fd789b251f98f70749f86988.tar.gz hdf5-1c4dd8b01ba55ab8fd789b251f98f70749f86988.tar.bz2 |
[svn-r3870]
Purpose:
Add a constant(compression level for gzip)
Description:
For compression issue
Solution:
Platforms tested:
eirene
[machines you have tested the changed version. This is absolute
important. Test it out on at least two or three different platforms
such as Big-endian-32bit (SUN/IRIX), little-endian-32(LINUX) and
64-bit (IRIX64/UNICOS/DEC-ALPHA) would be good.]
Diffstat (limited to 'tools/h4toh5')
-rw-r--r-- | tools/h4toh5/h4toh5util.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/h4toh5/h4toh5util.h b/tools/h4toh5/h4toh5util.h index ba2420f..31252d3 100644 --- a/tools/h4toh5/h4toh5util.h +++ b/tools/h4toh5/h4toh5util.h @@ -87,12 +87,13 @@ converter.*/ /* 6. define HDF object label.*/ #define SDSLABEL "SDS" #define VDATALABEL "Vdata" +#define VDATTRLAB "Vdata attribute" #define VGROUPLABEL "Vgroup" #define GRLABEL "GR" #define RAST8LABEL "raster8" #define RAST24LABEL "raster24" #define PALABEL "palette" - +#define LABEL_LENG 20 /* 7. define "IMAGE" CLASS required by image spec. */ #define IM_CLASS "IMAGE" @@ -135,7 +136,13 @@ converter.*/ independent vdata is hdf chunking table _HDF_CHK_TBL_CLASS, if it becomes public constant for hdf lib, this constant can be released.*/ #define _HDF_CHK_TBL_CLASS "_HDF_CHK_TBL_" + +/*11. the compression level currently is set to the maximum level.*/ +#define GZIP_COMLEVEL 9 +/*12. fake sds dimension name*/ +#define fakeDim "fakeDim" + extern int32 estnum_vg; extern int32 estnum_vd; extern int32 num_sds; |