diff options
| author | Giuseppe Baruffa <gbaruffa@users.noreply.github.com> | 2007-09-03 13:30:59 +0000 |
|---|---|---|
| committer | Giuseppe Baruffa <gbaruffa@users.noreply.github.com> | 2007-09-03 13:30:59 +0000 |
| commit | 564e16d5cea51dc877870055e2703330ad323cdd (patch) | |
| tree | 55d241a023631ee09e4ae754bfde733f38018aba /libopenjpeg/j2k.h | |
| parent | c4313f0b3983381332546bdae10ecab2dffdd794 (diff) | |
Added the knowledge of JPSEC SEC and INSEC markers (you have to compile the JPWL project). Management of these markers is limited to skipping them without crashing: no real security function at this stage. Deprecated USE_JPSEC and USE_JPWL will be removed next
Diffstat (limited to 'libopenjpeg/j2k.h')
| -rw-r--r-- | libopenjpeg/j2k.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/libopenjpeg/j2k.h b/libopenjpeg/j2k.h index 8ed758c2..fa63b7fa 100644 --- a/libopenjpeg/j2k.h +++ b/libopenjpeg/j2k.h @@ -79,13 +79,18 @@ The functions in J2K.C have for goal to read/write the several parts of the code #define J2K_MS_COM 0xff64 /**< COM marker value */ /* UniPG>> */ #ifdef USE_JPWL -#define J2K_MS_EPC 0xff68 /**< EPC marker value (Part11) */ -#define J2K_MS_EPB 0xff66 /**< EPB marker value (Part11) */ -#define J2K_MS_ESD 0xff67 /**< ESD marker value (Part11) */ -#define J2K_MS_RED 0xff69 /**< RED marker value (Part11) */ +#define J2K_MS_EPC 0xff68 /**< EPC marker value (Part 11: JPEG 2000 for Wireless) */ +#define J2K_MS_EPB 0xff66 /**< EPB marker value (Part 11: JPEG 2000 for Wireless) */ +#define J2K_MS_ESD 0xff67 /**< ESD marker value (Part 11: JPEG 2000 for Wireless) */ +#define J2K_MS_RED 0xff69 /**< RED marker value (Part 11: JPEG 2000 for Wireless) */ #endif /* USE_JPWL */ +#ifdef USE_JPSEC +#define J2K_MS_SEC 0xff65 /**< SEC marker value (Part 8: Secure JPEG 2000) */ +#define J2K_MS_INSEC 0xff94 /**< INSEC marker value (Part 8: Secure JPEG 2000) */ +#endif /* USE_JPSEC */ /* <<UniPG */ + /* ----------------------------------------------------------------------- */ /** |
