| cpl_dfs.h | | cpl_dfs.h | |
| | | | |
| skipping to change at line 89 | | skipping to change at line 89 | |
| /*-------------------------------------------------------------------------
---*/ | | /*-------------------------------------------------------------------------
---*/ | |
| /** | | /** | |
| @ingroup cpl_dfs | | @ingroup cpl_dfs | |
| @brief The name of the Product Science key | | @brief The name of the Product Science key | |
| @see cpl_dfs_save_image() | | @see cpl_dfs_save_image() | |
| @note A pipeline product should contain a boolean property with this nam
e | | @note A pipeline product should contain a boolean property with this nam
e | |
| */ | | */ | |
| /*-------------------------------------------------------------------------
---*/ | | /*-------------------------------------------------------------------------
---*/ | |
| #define CPL_DFS_PRO_SCIENCE "ESO PRO SCIENCE" | | #define CPL_DFS_PRO_SCIENCE "ESO PRO SCIENCE" | |
| | | | |
|
| | | /** | |
| | | * @ingroup cpl_dfs | |
| | | * | |
| | | * @brief | |
| | | * Pipeline products digital signature flags. | |
| | | * | |
| | | * Flags to select the different digital signatures to compute for pipeline | |
| | | * product files. The values may be combined using bitwise or. | |
| | | */ | |
| | | | |
| | | enum { | |
| | | | |
| | | /** | |
| | | * Do not compute any signatures | |
| | | * @hideinitializer | |
| | | */ | |
| | | | |
| | | CPL_DFS_SIGNATURE_NONE = 0, | |
| | | | |
| | | /** | |
| | | * Compute the DATAMD5 data hash | |
| | | * @hideinitializer | |
| | | */ | |
| | | | |
| | | CPL_DFS_SIGNATURE_DATAMD5 = 1 << 0, | |
| | | | |
| | | /** | |
| | | * Compute FITS standard CHECKSUM and DATASUM | |
| | | * @hideinitializer | |
| | | */ | |
| | | | |
| | | CPL_DFS_SIGNATURE_CHECKSUM = 1 << 1 | |
| | | }; | |
| | | | |
| /*-------------------------------------------------------------------------
---- | | /*-------------------------------------------------------------------------
---- | |
| Function prototypes | | Function prototypes | |
| --------------------------------------------------------------------------
---*/ | | --------------------------------------------------------------------------
---*/ | |
| | | | |
| cpl_error_code cpl_dfs_save_image(cpl_frameset *, | | cpl_error_code cpl_dfs_save_image(cpl_frameset *, | |
| cpl_propertylist *, | | cpl_propertylist *, | |
| const cpl_parameterlist *, | | const cpl_parameterlist *, | |
| const cpl_frameset *, | | const cpl_frameset *, | |
| const cpl_frame *, | | const cpl_frame *, | |
| const cpl_image *, | | const cpl_image *, | |
| | | | |
| skipping to change at line 157 | | skipping to change at line 191 | |
| const cpl_frame *, | | const cpl_frame *, | |
| const cpl_frameset *, | | const cpl_frameset *, | |
| const cpl_parameterlist *, | | const cpl_parameterlist *, | |
| const char *, | | const char *, | |
| const char *, | | const char *, | |
| const char *, | | const char *, | |
| const cpl_frame *); | | const cpl_frame *); | |
| | | | |
| cpl_error_code cpl_dfs_update_product_header(cpl_frameset *); | | cpl_error_code cpl_dfs_update_product_header(cpl_frameset *); | |
| | | | |
|
| | | cpl_error_code cpl_dfs_sign_products(const cpl_frameset *set, | |
| | | unsigned int flags); | |
| | | | |
| CPL_END_DECLS | | CPL_END_DECLS | |
| | | | |
| #endif | | #endif | |
| | | | |
End of changes. 2 change blocks. |
| 0 lines changed or deleted | | 37 lines changed or added | |
|
| cpl_version.h | | cpl_version.h | |
| | | | |
| skipping to change at line 30 | | skipping to change at line 30 | |
| /* | | /* | |
| * Do not edit this file! This file was automatically generated. | | * Do not edit this file! This file was automatically generated. | |
| * All changes to this file might be lost! | | * All changes to this file might be lost! | |
| */ | | */ | |
| | | | |
| #ifndef CPL_VERSION_H | | #ifndef CPL_VERSION_H | |
| #define CPL_VERSION_H | | #define CPL_VERSION_H | |
| | | | |
| #include <cpl_macros.h> | | #include <cpl_macros.h> | |
| | | | |
|
| #define CPL_VERSION_STRING "6.4.2" | | #define CPL_VERSION_STRING "6.5" | |
| #define CPL_VERSION_CODE 394242 | | #define CPL_VERSION_CODE 394496 | |
| | | | |
| #define CPL_VERSION(major, minor, micro) \ | | #define CPL_VERSION(major, minor, micro) \ | |
| (((major) * 65536) + ((minor) * 256) + (micro)) | | (((major) * 65536) + ((minor) * 256) + (micro)) | |
| | | | |
| CPL_BEGIN_DECLS | | CPL_BEGIN_DECLS | |
| | | | |
| unsigned int cpl_version_get_major(void) CPL_ATTR_CONST; | | unsigned int cpl_version_get_major(void) CPL_ATTR_CONST; | |
| unsigned int cpl_version_get_minor(void) CPL_ATTR_CONST; | | unsigned int cpl_version_get_minor(void) CPL_ATTR_CONST; | |
| unsigned int cpl_version_get_micro(void) CPL_ATTR_CONST; | | unsigned int cpl_version_get_micro(void) CPL_ATTR_CONST; | |
| | | | |
| | | | |
End of changes. 1 change blocks. |
| 2 lines changed or deleted | | 2 lines changed or added | |
|