-
-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
132 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,40 +17,40 @@ | |
/** | ||
* \brief Filter identifiers | ||
* | ||
* [FiltersIdTable] | ||
<table> | ||
<tr> | ||
<th>Values for <code>#H5Z_filter_t</code></th><th>Description</th> | ||
</tr> | ||
<tr> | ||
<td><code>0-255</code></td> | ||
<td>These values are reserved for filters predefined and | ||
registered by the HDF5 library and of use to the general public.</td> | ||
</tr> | ||
<tr> | ||
<td><code>256-511</code></td> | ||
<td>Filter values in this range are intended for testing only and can be | ||
temporarily used by any organization. No attempts are made to resolve | ||
numbering conflicts, as all definitions are temporary.</td> | ||
</tr> | ||
<tr> | ||
<td><code>512-32,767</code></td> | ||
<td>Filter values within this range are designated for filters managed by | ||
The HDF Group, but they are nominally requested, developed, and supported | ||
by third parties. Please contact the | ||
<a href="mailto:[email protected]">HDF5 development team</a> | ||
to reserve a value or range of values for use by your filters.</td> | ||
</tr> | ||
<tr> | ||
<td><code>32,768-65,535</code></td> | ||
<td>Filter values in this range are designated for internal company use or | ||
application testing when assessing a feature. The HDF Group does not | ||
track or document the use of filters within this range. | ||
</td> | ||
</tr> | ||
</table> | ||
* [FiltersIdTable] | ||
*/ | ||
//! [FiltersIdTable] | ||
<table> | ||
<tr> | ||
<th>Values for #H5Z_filter_t</th><th>Description</th> | ||
</tr> | ||
<tr> | ||
<td><code>0-255</code></td> | ||
<td>These values are reserved for filters predefined and | ||
registered by the HDF5 library and of use to the general public.</td> | ||
</tr> | ||
<tr> | ||
<td><code>256-511</code></td> | ||
<td>Filter values in this range are intended for testing only and can be | ||
temporarily used by any organization. No attempts are made to resolve | ||
numbering conflicts, as all definitions are temporary.</td> | ||
</tr> | ||
<tr> | ||
<td><code>512-32,767</code></td> | ||
<td>Filter values within this range are designated for filters managed by | ||
The HDF Group, but they are nominally requested, developed, and supported | ||
by third parties. Please contact the | ||
<a href="mailto:[email protected]">HDF5 development team</a> | ||
to reserve a value or range of values for use by your filters.</td> | ||
</tr> | ||
<tr> | ||
<td><code>32,768-65,535</code></td> | ||
<td>Filter values in this range are designated for internal company use or | ||
application testing when assessing a feature. The HDF Group does not | ||
track or document the use of filters within this range. | ||
</td> | ||
</tr> | ||
</table> | ||
//! [FiltersIdTable] | ||
*/ | ||
|
||
typedef int H5Z_filter_t; | ||
|
||
|