summaryrefslogtreecommitdiff
path: root/libopenjpeg/openjpeg.h
diff options
context:
space:
mode:
authorFrancois-Olivier Devaux <fodevaux@users.noreply.github.com>2007-08-30 15:32:51 +0000
committerFrancois-Olivier Devaux <fodevaux@users.noreply.github.com>2007-08-30 15:32:51 +0000
commit7a2d96efe18932bb5615c1bfcbfb0c4402076b2d (patch)
tree72de42253a3df6009214cc0a9cd1e1cd7120e026 /libopenjpeg/openjpeg.h
parentacfe0ad6458db913aac469804d4d17bea671682a (diff)
Added information regarding the end of packet position in the index
Diffstat (limited to 'libopenjpeg/openjpeg.h')
-rw-r--r--libopenjpeg/openjpeg.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libopenjpeg/openjpeg.h b/libopenjpeg/openjpeg.h
index 24e2f6a5..c2bb3c58 100644
--- a/libopenjpeg/openjpeg.h
+++ b/libopenjpeg/openjpeg.h
@@ -590,9 +590,11 @@ typedef struct opj_image_comptparm {
Index structure : Information concerning a packet inside tile
*/
typedef struct opj_packet_info {
- /** start position */
+ /** packet start position (including SOP marker if it exists) */
int start_pos;
- /** end position */
+ /** end of packet header position (including EPH marker if it exists)*/
+ int end_ph_pos;
+ /** packet end position */
int end_pos;
/** packet distorsion */
double disto;