diff options
| author | Francois-Olivier Devaux <fodevaux@users.noreply.github.com> | 2007-08-30 15:32:51 +0000 |
|---|---|---|
| committer | Francois-Olivier Devaux <fodevaux@users.noreply.github.com> | 2007-08-30 15:32:51 +0000 |
| commit | 7a2d96efe18932bb5615c1bfcbfb0c4402076b2d (patch) | |
| tree | 72de42253a3df6009214cc0a9cd1e1cd7120e026 /libopenjpeg/openjpeg.h | |
| parent | acfe0ad6458db913aac469804d4d17bea671682a (diff) | |
Added information regarding the end of packet position in the index
Diffstat (limited to 'libopenjpeg/openjpeg.h')
| -rw-r--r-- | libopenjpeg/openjpeg.h | 6 |
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; |
