Improve error message when specifying a too big cp_reduce parameter (#474)
authorEven Rouault <even.rouault@spatialys.com>
Sat, 2 Sep 2017 07:10:53 +0000 (09:10 +0200)
committerEven Rouault <even.rouault@spatialys.com>
Sat, 2 Sep 2017 07:10:53 +0000 (09:10 +0200)
src/lib/openjp2/j2k.c

index 0056814e2b2959f30da23db25e586721b404e4bc..353f1c9a8a6bab4ecba6ce9e4e62965fd73eaf37 100644 (file)
@@ -9684,9 +9684,10 @@ static OPJ_BOOL opj_j2k_read_SPCod_SPCoc(opj_j2k_t *p_j2k,
     /* If user wants to remove more resolutions than the codestream contains, return error */
     if (l_cp->m_specific_param.m_dec.m_reduce >= l_tccp->numresolutions) {
         opj_event_msg(p_manager, EVT_ERROR,
-                      "Error decoding component %d.\nThe number of resolutions to remove is higher than the number "
-                      "of resolutions of this component\nModify the cp_reduce parameter.\n\n",
-                      compno);
+                      "Error decoding component %d.\nThe number of resolutions "
+                      "to remove (%d) is greater or equal than the number "
+                      "of resolutions of this component (%d)\nModify the cp_reduce parameter.\n\n",
+                      compno, l_cp->m_specific_param.m_dec.m_reduce, l_tccp->numresolutions);
         p_j2k->m_specific_param.m_decoder.m_state |=
             0x8000;/* FIXME J2K_DEC_STATE_ERR;*/
         return OPJ_FALSE;