diff options
| author | Giuseppe Baruffa <gbaruffa@users.noreply.github.com> | 2007-09-06 15:59:39 +0000 |
|---|---|---|
| committer | Giuseppe Baruffa <gbaruffa@users.noreply.github.com> | 2007-09-06 15:59:39 +0000 |
| commit | dfcacb82476411105ff7b0726bd8f3f8212ae1c2 (patch) | |
| tree | b3f026560f936efca345f0cac13be67077903a68 /libopenjpeg/openjpeg.h | |
| parent | cf95a80be6854be9f0455bb1275243dba091fd7a (diff) | |
One more field in the codestream_info struct for recording the number of packets per tile part; JPWL now distributes the EPBs in all the tile part headers
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 2460d925..bf92199a 100644 --- a/libopenjpeg/openjpeg.h +++ b/libopenjpeg/openjpeg.h @@ -628,7 +628,7 @@ typedef struct opj_tile_info { int nbpix; /** add fixed_quality */ double distotile; - /* UniPG>> */ +/* UniPG>> */ /** number of tile parts */ int num_tps; /** start position of tile part */ @@ -637,7 +637,9 @@ typedef struct opj_tile_info { int *tp_end_header; /** end position of tile part */ int *tp_end_pos; - /* << UniPG */ + /** number of packets of tile part */ + int *tp_num; +/* << UniPG */ } opj_tile_info_t; /** |
