summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2017-08-17 19:18:48 +0200
committerEven Rouault <even.rouault@spatialys.com>2017-08-17 19:18:48 +0200
commit5d12806091eab0659431fefcefdb797b09f8e884 (patch)
treeea6350c2a51a030b63f5e02d9fd5abe9d56e7f47 /src
parent4b0bfbfabc3ce1cc4c6d18dc7113b9f6335372d4 (diff)
opj_j2k_update_rates(): grow tile size buffer for some situations
Diffstat (limited to 'src')
-rw-r--r--src/lib/openjp2/j2k.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/openjp2/j2k.c b/src/lib/openjp2/j2k.c
index fe40e29f..55ca5813 100644
--- a/src/lib/openjp2/j2k.c
+++ b/src/lib/openjp2/j2k.c
@@ -5171,6 +5171,10 @@ static OPJ_BOOL opj_j2k_update_rates(opj_j2k_t *p_j2k,
/* number of packets and number of code blocks in packets */
l_tile_size = (OPJ_UINT32)(l_tile_size * 1.4 / 8);
+ /* Arbitrary amount to make the following work: */
+ /* bin/test_tile_encoder 1 256 256 17 16 8 0 reversible_no_precinct.j2k 4 4 3 0 0 1 */
+ l_tile_size += 500;
+
l_tile_size += opj_j2k_get_specific_header_sizes(p_j2k);
p_j2k->m_specific_param.m_encoder.m_encoded_tile_size = l_tile_size;