summaryrefslogtreecommitdiff
path: root/libopenjpeg/openjpeg.h
diff options
context:
space:
mode:
authorParvatha Elangovan <p.elangovan@intopix.com>2007-03-29 14:15:14 +0000
committerParvatha Elangovan <p.elangovan@intopix.com>2007-03-29 14:15:14 +0000
commit9ba672366e5dfc2151544b0ef9c51f1a81ae3194 (patch)
tree0614dbc5f550e3c2865d0232b8539e5666bf0cb5 /libopenjpeg/openjpeg.h
parenta1fe5809a4760ed2aa64951c596156f48fca393e (diff)
Enable accepting file names with `-´ symbol .Modification getopt.c
Rsiz profile name generation to be STD_RSIZ for profiles which are not DCI compliant.Modification in image_to_j2k.c Renamed convert_progression_order to j2k_convert_progression_order. Modification j2k.c Calculation of number of tile part in each tile in j2k_calculate_tp. Modification j2k.c j2k_setup_encoder to set bit rate limitation for digital cinema compliance with quality option. Modification in j2k.c Equation to check multiple tile precincts. Modification pi.c array size generation of pi->include in pi_initialise_encode().Modification in pi.c Modification in pi_create_encode for tile part generation.Modification in pi.c In tcd_rateallocate a variable stable_threshold which holds the valid threshold value. This is used to avoid error in case of a wrong threshold value in the last iteration. Modification in tcd.c.
Diffstat (limited to 'libopenjpeg/openjpeg.h')
-rw-r--r--libopenjpeg/openjpeg.h21
1 files changed, 14 insertions, 7 deletions
diff --git a/libopenjpeg/openjpeg.h b/libopenjpeg/openjpeg.h
index 12349532..23f57595 100644
--- a/libopenjpeg/openjpeg.h
+++ b/libopenjpeg/openjpeg.h
@@ -113,21 +113,28 @@ braindamage below.
enum definitions
==========================================================
*/
-
+/**
+Rsiz Capabilities
+*/
typedef enum RSIZ_CAPABILITIES {
- STD_RSIZ = 0,
+ STD_RSIZ = 0, /** Standard JPEG2000 profile*/
CINEMA2K = 3, /** Profile name for a 2K image*/
CINEMA4K = 4 /** Profile name for a 4K image*/
} OPJ_RSIZ_CAPABILITIES;
+/**
+Digital cinema operation mode
+*/
typedef enum CINEMA_MODE {
- OFF = 0,
- CINEMA2K_24 = 1,
- CINEMA2K_48 = 2,
- CINEMA4K_24 = 3
+ OFF = 0, /** Not Digital Cinema*/
+ CINEMA2K_24 = 1, /** 2K Digital Cinema at 24 fps*/
+ CINEMA2K_48 = 2, /** 2K Digital Cinema at 48 fps*/
+ CINEMA4K_24 = 3 /** 4K Digital Cinema at 24 fps*/
}OPJ_CINEMA_MODE;
-/** Progression order */
+/**
+Progression order
+*/
typedef enum PROG_ORDER {
PROG_UNKNOWN = -1, /**< place-holder */
LRCP = 0, /**< layer-resolution-component-precinct order */