Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix filter ids #428

Open
wants to merge 1 commit into
base: 4.11RC
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions src/hdf5_drv/silo_hdf5.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,13 @@ be used for advertising or product endorsement purposes.

*/

/* For Lindstrom compression libs */
#define DB_HDF5_HZIP_ID (H5Z_FILTER_RESERVED+1)
#define DB_HDF5_FPZIP_ID (H5Z_FILTER_RESERVED+2)
/* For Lindstrom compression libs, hzip and fpzip.
These IDS were reserved by The HDF Group 11/22/2024.
Previously they had been computed offsets from H5Z_FILTER_RESERVED.
fpzip also has a reserved ID of 32014 for an implementation from NCAR,
https://github.com/NCAR/fpzip_plugin */
#define DB_HDF5_HZIP_ID 257
#define DB_HDF5_FPZIP_ID 258
#ifdef HAVE_HZIP
#include "hzip.h"
#ifdef HAVE_LIBZ
Expand Down