summaryrefslogtreecommitdiff
path: root/libopenjpeg/tcd.h
diff options
context:
space:
mode:
authorMickael Savinaud <savmickael@users.noreply.github.com>2011-09-19 13:30:21 +0000
committerMickael Savinaud <savmickael@users.noreply.github.com>2011-09-19 13:30:21 +0000
commitb0ef524b9e0e0b84c97ead25ee84531b7ada35ec (patch)
tree530d72cfc326f5e48afac7a2fd92c831478ddf9b /libopenjpeg/tcd.h
parentb138aaae08d81965d0451465426d057aed3cbbfc (diff)
WIP: new image_header struct is used and enable used of cstr_info
Diffstat (limited to 'libopenjpeg/tcd.h')
-rw-r--r--libopenjpeg/tcd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libopenjpeg/tcd.h b/libopenjpeg/tcd.h
index 6489ddeb..09c184ac 100644
--- a/libopenjpeg/tcd.h
+++ b/libopenjpeg/tcd.h
@@ -283,8 +283,8 @@ typedef struct opj_tcd_v2
OPJ_UINT32 cur_pino;
/** info on each image tile */
opj_tcd_image_t *tcd_image;
- /** image */
- struct opj_image *image;
+ /** image header */
+ struct opj_image_header *image_header;
/** coding parameters */
struct opj_cp_v2 *cp;
/** coding/decoding parameters common to all tiles */
@@ -335,7 +335,7 @@ void tcd_destroy_v2(opj_tcd_v2_t *tcd);
opj_bool tcd_init_v2(
opj_tcd_v2_t *p_tcd,
//struct opj_image * p_image,
- opj_image_t * p_image,
+ opj_image_header_t * p_image_header,
//struct opj_cp * p_cp
opj_cp_v2_t * p_cp
);