mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-03-31 17:50:26 +08:00
moved nc_def_var_szip prototype to netcdf_filter.h
This commit is contained in:
parent
98748eaa0d
commit
9406f69d7e
@ -18,12 +18,12 @@
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include "netcdf.h"
|
||||
#include "netcdf_filter.h"
|
||||
#include "nc_logging.h"
|
||||
#ifdef USE_PARALLEL
|
||||
#include "netcdf_par.h"
|
||||
#endif
|
||||
|
||||
|
||||
/** NC_MAX_DIMS for tests. Allows different NC_MAX_DIMS values
|
||||
* without breaking this test with a heap or stack overflow. */
|
||||
#define NC_TESTS_MAX_DIMS 1024
|
||||
|
@ -317,9 +317,6 @@ there. */
|
||||
#define NC_MIN_DEFLATE_LEVEL 0 /**< Minimum deflate level. */
|
||||
#define NC_MAX_DEFLATE_LEVEL 9 /**< Maximum deflate level. */
|
||||
|
||||
#define NC_SZIP_EC 4 /**< Selects entropy coding method for szip. */
|
||||
#define NC_SZIP_NN 32 /**< Selects nearest neighbor coding method for szip. */
|
||||
|
||||
/** The netcdf version 3 functions all return integer error status.
|
||||
* These are the possible values, in addition to certain values from
|
||||
* the system errno.h.
|
||||
@ -853,10 +850,6 @@ EXTERNL int
|
||||
nc_inq_var_deflate(int ncid, int varid, int *shufflep,
|
||||
int *deflatep, int *deflate_levelp);
|
||||
|
||||
/* Set szip compression for a variable. */
|
||||
EXTERNL int
|
||||
nc_def_var_szip(int ncid, int varid, int options_mask, int pixels_per_block);
|
||||
|
||||
/* Find out szip settings of a var. */
|
||||
EXTERNL int
|
||||
nc_inq_var_szip(int ncid, int varid, int *options_maskp, int *pixels_per_blockp);
|
||||
|
@ -18,6 +18,9 @@
|
||||
#define H5Z_FILTER_SZIP 4
|
||||
#endif
|
||||
|
||||
#define NC_SZIP_EC 4 /**< Selects entropy coding method for szip. */
|
||||
#define NC_SZIP_NN 32 /**< Selects nearest neighbor coding method for szip. */
|
||||
|
||||
/* Define the known filter formats */
|
||||
#define NC_FILTER_FORMAT_HDF5 1 /* Use the H5Z_class2_t format */
|
||||
|
||||
@ -51,6 +54,9 @@ EXTERNL int nc_filter_register(NC_FILTER_INFO* filter_info);
|
||||
EXTERNL int nc_filter_unregister(int format, int id);
|
||||
EXTERNL int nc_filter_inq(int format, int id, NC_FILTER_INFO* filter_info);
|
||||
|
||||
/* Set szip compression for a variable. */
|
||||
EXTERNL int nc_def_var_szip(int ncid, int varid, int options_mask, int pixels_per_block);
|
||||
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user