jp2.c 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414
  1. /*
  2. * The copyright in this software is being made available under the 2-clauses
  3. * BSD License, included below. This software may be subject to other third
  4. * party and contributor rights, including patent rights, and no such rights
  5. * are granted under this license.
  6. *
  7. * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
  8. * Copyright (c) 2002-2014, Professor Benoit Macq
  9. * Copyright (c) 2001-2003, David Janssens
  10. * Copyright (c) 2002-2003, Yannick Verschueren
  11. * Copyright (c) 2003-2007, Francois-Olivier Devaux
  12. * Copyright (c) 2003-2014, Antonin Descampe
  13. * Copyright (c) 2005, Herve Drolon, FreeImage Team
  14. * Copyright (c) 2010-2011, Kaori Hagihara
  15. * Copyright (c) 2008, 2011-2012, Centre National d'Etudes Spatiales (CNES), FR
  16. * Copyright (c) 2012, CS Systemes d'Information, France
  17. * All rights reserved.
  18. *
  19. * Redistribution and use in source and binary forms, with or without
  20. * modification, are permitted provided that the following conditions
  21. * are met:
  22. * 1. Redistributions of source code must retain the above copyright
  23. * notice, this list of conditions and the following disclaimer.
  24. * 2. Redistributions in binary form must reproduce the above copyright
  25. * notice, this list of conditions and the following disclaimer in the
  26. * documentation and/or other materials provided with the distribution.
  27. *
  28. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
  29. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  30. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  31. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  32. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  33. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  34. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  35. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  36. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  37. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  38. * POSSIBILITY OF SUCH DAMAGE.
  39. */
  40. #include "opj_includes.h"
  41. /** @defgroup JP2 JP2 - JPEG-2000 file format reader/writer */
  42. /*@{*/
  43. #define OPJ_BOX_SIZE 1024
  44. #define OPJ_UNUSED(x) (void)x
  45. /** @name Local static functions */
  46. /*@{*/
  47. /*static void jp2_write_url(opj_cio_t *cio, char *Idx_file);*/
  48. /**
  49. * Reads a IHDR box - Image Header box
  50. *
  51. * @param p_image_header_data pointer to actual data (already read from file)
  52. * @param jp2 the jpeg2000 file codec.
  53. * @param p_image_header_size the size of the image header
  54. * @param p_manager the user event manager.
  55. *
  56. * @return true if the image header is valid, false else.
  57. */
  58. static OPJ_BOOL opj_jp2_read_ihdr(opj_jp2_t *jp2,
  59. OPJ_BYTE *p_image_header_data,
  60. OPJ_UINT32 p_image_header_size,
  61. opj_event_mgr_t * p_manager);
  62. /**
  63. * Writes the Image Header box - Image Header box.
  64. *
  65. * @param jp2 jpeg2000 file codec.
  66. * @param p_nb_bytes_written pointer to store the nb of bytes written by the function.
  67. *
  68. * @return the data being copied.
  69. */
  70. static OPJ_BYTE * opj_jp2_write_ihdr(opj_jp2_t *jp2,
  71. OPJ_UINT32 * p_nb_bytes_written);
  72. /**
  73. * Writes the Bit per Component box.
  74. *
  75. * @param jp2 jpeg2000 file codec.
  76. * @param p_nb_bytes_written pointer to store the nb of bytes written by the function.
  77. *
  78. * @return the data being copied.
  79. */
  80. static OPJ_BYTE * opj_jp2_write_bpcc(opj_jp2_t *jp2,
  81. OPJ_UINT32 * p_nb_bytes_written);
  82. /**
  83. * Reads a Bit per Component box.
  84. *
  85. * @param p_bpc_header_data pointer to actual data (already read from file)
  86. * @param jp2 the jpeg2000 file codec.
  87. * @param p_bpc_header_size the size of the bpc header
  88. * @param p_manager the user event manager.
  89. *
  90. * @return true if the bpc header is valid, false else.
  91. */
  92. static OPJ_BOOL opj_jp2_read_bpcc(opj_jp2_t *jp2,
  93. OPJ_BYTE * p_bpc_header_data,
  94. OPJ_UINT32 p_bpc_header_size,
  95. opj_event_mgr_t * p_manager);
  96. static OPJ_BOOL opj_jp2_read_cdef(opj_jp2_t * jp2,
  97. OPJ_BYTE * p_cdef_header_data,
  98. OPJ_UINT32 p_cdef_header_size,
  99. opj_event_mgr_t * p_manager);
  100. static void opj_jp2_apply_cdef(opj_image_t *image, opj_jp2_color_t *color,
  101. opj_event_mgr_t *);
  102. /**
  103. * Writes the Channel Definition box.
  104. *
  105. * @param jp2 jpeg2000 file codec.
  106. * @param p_nb_bytes_written pointer to store the nb of bytes written by the function.
  107. *
  108. * @return the data being copied.
  109. */
  110. static OPJ_BYTE * opj_jp2_write_cdef(opj_jp2_t *jp2,
  111. OPJ_UINT32 * p_nb_bytes_written);
  112. /**
  113. * Writes the Colour Specification box.
  114. *
  115. * @param jp2 jpeg2000 file codec.
  116. * @param p_nb_bytes_written pointer to store the nb of bytes written by the function.
  117. *
  118. * @return the data being copied.
  119. */
  120. static OPJ_BYTE * opj_jp2_write_colr(opj_jp2_t *jp2,
  121. OPJ_UINT32 * p_nb_bytes_written);
  122. /**
  123. * Writes a FTYP box - File type box
  124. *
  125. * @param cio the stream to write data to.
  126. * @param jp2 the jpeg2000 file codec.
  127. * @param p_manager the user event manager.
  128. *
  129. * @return true if writing was successful.
  130. */
  131. static OPJ_BOOL opj_jp2_write_ftyp(opj_jp2_t *jp2,
  132. opj_stream_private_t *cio,
  133. opj_event_mgr_t * p_manager);
  134. /**
  135. * Reads a a FTYP box - File type box
  136. *
  137. * @param p_header_data the data contained in the FTYP box.
  138. * @param jp2 the jpeg2000 file codec.
  139. * @param p_header_size the size of the data contained in the FTYP box.
  140. * @param p_manager the user event manager.
  141. *
  142. * @return true if the FTYP box is valid.
  143. */
  144. static OPJ_BOOL opj_jp2_read_ftyp(opj_jp2_t *jp2,
  145. OPJ_BYTE * p_header_data,
  146. OPJ_UINT32 p_header_size,
  147. opj_event_mgr_t * p_manager);
  148. static OPJ_BOOL opj_jp2_skip_jp2c(opj_jp2_t *jp2,
  149. opj_stream_private_t *stream,
  150. opj_event_mgr_t * p_manager);
  151. /**
  152. * Reads the Jpeg2000 file Header box - JP2 Header box (warning, this is a super box).
  153. *
  154. * @param p_header_data the data contained in the file header box.
  155. * @param jp2 the jpeg2000 file codec.
  156. * @param p_header_size the size of the data contained in the file header box.
  157. * @param p_manager the user event manager.
  158. *
  159. * @return true if the JP2 Header box was successfully recognized.
  160. */
  161. static OPJ_BOOL opj_jp2_read_jp2h(opj_jp2_t *jp2,
  162. OPJ_BYTE *p_header_data,
  163. OPJ_UINT32 p_header_size,
  164. opj_event_mgr_t * p_manager);
  165. /**
  166. * Writes the Jpeg2000 file Header box - JP2 Header box (warning, this is a super box).
  167. *
  168. * @param jp2 the jpeg2000 file codec.
  169. * @param stream the stream to write data to.
  170. * @param p_manager user event manager.
  171. *
  172. * @return true if writing was successful.
  173. */
  174. static OPJ_BOOL opj_jp2_write_jp2h(opj_jp2_t *jp2,
  175. opj_stream_private_t *stream,
  176. opj_event_mgr_t * p_manager);
  177. /**
  178. * Writes the Jpeg2000 codestream Header box - JP2C Header box. This function must be called AFTER the coding has been done.
  179. *
  180. * @param cio the stream to write data to.
  181. * @param jp2 the jpeg2000 file codec.
  182. * @param p_manager user event manager.
  183. *
  184. * @return true if writing was successful.
  185. */
  186. static OPJ_BOOL opj_jp2_write_jp2c(opj_jp2_t *jp2,
  187. opj_stream_private_t *cio,
  188. opj_event_mgr_t * p_manager);
  189. #ifdef USE_JPIP
  190. /**
  191. * Write index Finder box
  192. * @param cio the stream to write to.
  193. * @param jp2 the jpeg2000 file codec.
  194. * @param p_manager user event manager.
  195. */
  196. static OPJ_BOOL opj_jpip_write_iptr(opj_jp2_t *jp2,
  197. opj_stream_private_t *cio,
  198. opj_event_mgr_t * p_manager);
  199. /**
  200. * Write index Finder box
  201. * @param cio the stream to write to.
  202. * @param jp2 the jpeg2000 file codec.
  203. * @param p_manager user event manager.
  204. */
  205. static OPJ_BOOL opj_jpip_write_cidx(opj_jp2_t *jp2,
  206. opj_stream_private_t *cio,
  207. opj_event_mgr_t * p_manager);
  208. /**
  209. * Write file Index (superbox)
  210. * @param cio the stream to write to.
  211. * @param jp2 the jpeg2000 file codec.
  212. * @param p_manager user event manager.
  213. */
  214. static OPJ_BOOL opj_jpip_write_fidx(opj_jp2_t *jp2,
  215. opj_stream_private_t *cio,
  216. opj_event_mgr_t * p_manager);
  217. #endif /* USE_JPIP */
  218. /**
  219. * Reads a jpeg2000 file signature box.
  220. *
  221. * @param p_header_data the data contained in the signature box.
  222. * @param jp2 the jpeg2000 file codec.
  223. * @param p_header_size the size of the data contained in the signature box.
  224. * @param p_manager the user event manager.
  225. *
  226. * @return true if the file signature box is valid.
  227. */
  228. static OPJ_BOOL opj_jp2_read_jp(opj_jp2_t *jp2,
  229. OPJ_BYTE * p_header_data,
  230. OPJ_UINT32 p_header_size,
  231. opj_event_mgr_t * p_manager);
  232. /**
  233. * Writes a jpeg2000 file signature box.
  234. *
  235. * @param cio the stream to write data to.
  236. * @param jp2 the jpeg2000 file codec.
  237. * @param p_manager the user event manager.
  238. *
  239. * @return true if writing was successful.
  240. */
  241. static OPJ_BOOL opj_jp2_write_jp(opj_jp2_t *jp2,
  242. opj_stream_private_t *cio,
  243. opj_event_mgr_t * p_manager);
  244. /**
  245. Apply collected palette data
  246. @param image Image.
  247. @param color Collector for profile, cdef and pclr data.
  248. @param p_manager the user event manager.
  249. @return true in case of success
  250. */
  251. static OPJ_BOOL opj_jp2_apply_pclr(opj_image_t *image,
  252. opj_jp2_color_t *color,
  253. opj_event_mgr_t * p_manager);
  254. static void opj_jp2_free_pclr(opj_jp2_color_t *color);
  255. /**
  256. * Collect palette data
  257. *
  258. * @param jp2 JP2 handle
  259. * @param p_pclr_header_data FIXME DOC
  260. * @param p_pclr_header_size FIXME DOC
  261. * @param p_manager
  262. *
  263. * @return Returns true if successful, returns false otherwise
  264. */
  265. static OPJ_BOOL opj_jp2_read_pclr(opj_jp2_t *jp2,
  266. OPJ_BYTE * p_pclr_header_data,
  267. OPJ_UINT32 p_pclr_header_size,
  268. opj_event_mgr_t * p_manager);
  269. /**
  270. * Collect component mapping data
  271. *
  272. * @param jp2 JP2 handle
  273. * @param p_cmap_header_data FIXME DOC
  274. * @param p_cmap_header_size FIXME DOC
  275. * @param p_manager FIXME DOC
  276. *
  277. * @return Returns true if successful, returns false otherwise
  278. */
  279. static OPJ_BOOL opj_jp2_read_cmap(opj_jp2_t * jp2,
  280. OPJ_BYTE * p_cmap_header_data,
  281. OPJ_UINT32 p_cmap_header_size,
  282. opj_event_mgr_t * p_manager);
  283. /**
  284. * Reads the Color Specification box.
  285. *
  286. * @param p_colr_header_data pointer to actual data (already read from file)
  287. * @param jp2 the jpeg2000 file codec.
  288. * @param p_colr_header_size the size of the color header
  289. * @param p_manager the user event manager.
  290. *
  291. * @return true if the bpc header is valid, false else.
  292. */
  293. static OPJ_BOOL opj_jp2_read_colr(opj_jp2_t *jp2,
  294. OPJ_BYTE * p_colr_header_data,
  295. OPJ_UINT32 p_colr_header_size,
  296. opj_event_mgr_t * p_manager);
  297. /*@}*/
  298. /*@}*/
  299. /**
  300. * Sets up the procedures to do on writing header after the codestream.
  301. * Developers wanting to extend the library can add their own writing procedures.
  302. */
  303. static OPJ_BOOL opj_jp2_setup_end_header_writing(opj_jp2_t *jp2,
  304. opj_event_mgr_t * p_manager);
  305. /**
  306. * Sets up the procedures to do on reading header after the codestream.
  307. * Developers wanting to extend the library can add their own writing procedures.
  308. */
  309. static OPJ_BOOL opj_jp2_setup_end_header_reading(opj_jp2_t *jp2,
  310. opj_event_mgr_t * p_manager);
  311. /**
  312. * Reads a jpeg2000 file header structure.
  313. *
  314. * @param jp2 the jpeg2000 file header structure.
  315. * @param stream the stream to read data from.
  316. * @param p_manager the user event manager.
  317. *
  318. * @return true if the box is valid.
  319. */
  320. static OPJ_BOOL opj_jp2_read_header_procedure(opj_jp2_t *jp2,
  321. opj_stream_private_t *stream,
  322. opj_event_mgr_t * p_manager);
  323. /**
  324. * Executes the given procedures on the given codec.
  325. *
  326. * @param p_procedure_list the list of procedures to execute
  327. * @param jp2 the jpeg2000 file codec to execute the procedures on.
  328. * @param stream the stream to execute the procedures on.
  329. * @param p_manager the user manager.
  330. *
  331. * @return true if all the procedures were successfully executed.
  332. */
  333. static OPJ_BOOL opj_jp2_exec(opj_jp2_t * jp2,
  334. opj_procedure_list_t * p_procedure_list,
  335. opj_stream_private_t *stream,
  336. opj_event_mgr_t * p_manager);
  337. /**
  338. * Reads a box header. The box is the way data is packed inside a jpeg2000 file structure.
  339. *
  340. * @param cio the input stream to read data from.
  341. * @param box the box structure to fill.
  342. * @param p_number_bytes_read pointer to an int that will store the number of bytes read from the stream (shoul usually be 2).
  343. * @param p_manager user event manager.
  344. *
  345. * @return true if the box is recognized, false otherwise
  346. */
  347. static OPJ_BOOL opj_jp2_read_boxhdr(opj_jp2_box_t *box,
  348. OPJ_UINT32 * p_number_bytes_read,
  349. opj_stream_private_t *cio,
  350. opj_event_mgr_t * p_manager);
  351. /**
  352. * Sets up the validation ,i.e. adds the procedures to launch to make sure the codec parameters
  353. * are valid. Developers wanting to extend the library can add their own validation procedures.
  354. */
  355. static OPJ_BOOL opj_jp2_setup_encoding_validation(opj_jp2_t *jp2,
  356. opj_event_mgr_t * p_manager);
  357. /**
  358. * Sets up the procedures to do on writing header. Developers wanting to extend the library can add their own writing procedures.
  359. */
  360. static OPJ_BOOL opj_jp2_setup_header_writing(opj_jp2_t *jp2,
  361. opj_event_mgr_t * p_manager);
  362. static OPJ_BOOL opj_jp2_default_validation(opj_jp2_t * jp2,
  363. opj_stream_private_t *cio,
  364. opj_event_mgr_t * p_manager);
  365. /**
  366. * Finds the image execution function related to the given box id.
  367. *
  368. * @param p_id the id of the handler to fetch.
  369. *
  370. * @return the given handler or NULL if it could not be found.
  371. */
  372. static const opj_jp2_header_handler_t * opj_jp2_img_find_handler(
  373. OPJ_UINT32 p_id);
  374. /**
  375. * Finds the execution function related to the given box id.
  376. *
  377. * @param p_id the id of the handler to fetch.
  378. *
  379. * @return the given handler or NULL if it could not be found.
  380. */
  381. static const opj_jp2_header_handler_t * opj_jp2_find_handler(OPJ_UINT32 p_id);
  382. static const opj_jp2_header_handler_t jp2_header [] = {
  383. {JP2_JP, opj_jp2_read_jp},
  384. {JP2_FTYP, opj_jp2_read_ftyp},
  385. {JP2_JP2H, opj_jp2_read_jp2h}
  386. };
  387. static const opj_jp2_header_handler_t jp2_img_header [] = {
  388. {JP2_IHDR, opj_jp2_read_ihdr},
  389. {JP2_COLR, opj_jp2_read_colr},
  390. {JP2_BPCC, opj_jp2_read_bpcc},
  391. {JP2_PCLR, opj_jp2_read_pclr},
  392. {JP2_CMAP, opj_jp2_read_cmap},
  393. {JP2_CDEF, opj_jp2_read_cdef}
  394. };
  395. /**
  396. * Reads a box header. The box is the way data is packed inside a jpeg2000 file structure. Data is read from a character string
  397. *
  398. * @param box the box structure to fill.
  399. * @param p_data the character string to read data from.
  400. * @param p_number_bytes_read pointer to an int that will store the number of bytes read from the stream (shoul usually be 2).
  401. * @param p_box_max_size the maximum number of bytes in the box.
  402. * @param p_manager FIXME DOC
  403. *
  404. * @return true if the box is recognized, false otherwise
  405. */
  406. static OPJ_BOOL opj_jp2_read_boxhdr_char(opj_jp2_box_t *box,
  407. OPJ_BYTE * p_data,
  408. OPJ_UINT32 * p_number_bytes_read,
  409. OPJ_UINT32 p_box_max_size,
  410. opj_event_mgr_t * p_manager);
  411. /**
  412. * Sets up the validation ,i.e. adds the procedures to launch to make sure the codec parameters
  413. * are valid. Developers wanting to extend the library can add their own validation procedures.
  414. */
  415. static OPJ_BOOL opj_jp2_setup_decoding_validation(opj_jp2_t *jp2,
  416. opj_event_mgr_t * p_manager);
  417. /**
  418. * Sets up the procedures to do on reading header.
  419. * Developers wanting to extend the library can add their own writing procedures.
  420. */
  421. static OPJ_BOOL opj_jp2_setup_header_reading(opj_jp2_t *jp2,
  422. opj_event_mgr_t * p_manager);
  423. /* ----------------------------------------------------------------------- */
  424. static OPJ_BOOL opj_jp2_read_boxhdr(opj_jp2_box_t *box,
  425. OPJ_UINT32 * p_number_bytes_read,
  426. opj_stream_private_t *cio,
  427. opj_event_mgr_t * p_manager)
  428. {
  429. /* read header from file */
  430. OPJ_BYTE l_data_header [8];
  431. /* preconditions */
  432. assert(cio != 00);
  433. assert(box != 00);
  434. assert(p_number_bytes_read != 00);
  435. assert(p_manager != 00);
  436. *p_number_bytes_read = (OPJ_UINT32)opj_stream_read_data(cio, l_data_header, 8,
  437. p_manager);
  438. if (*p_number_bytes_read != 8) {
  439. return OPJ_FALSE;
  440. }
  441. /* process read data */
  442. opj_read_bytes(l_data_header, &(box->length), 4);
  443. opj_read_bytes(l_data_header + 4, &(box->type), 4);
  444. if (box->length == 0) { /* last box */
  445. const OPJ_OFF_T bleft = opj_stream_get_number_byte_left(cio);
  446. if (bleft > (OPJ_OFF_T)(0xFFFFFFFFU - 8U)) {
  447. opj_event_msg(p_manager, EVT_ERROR,
  448. "Cannot handle box sizes higher than 2^32\n");
  449. return OPJ_FALSE;
  450. }
  451. box->length = (OPJ_UINT32)bleft + 8U;
  452. assert((OPJ_OFF_T)box->length == bleft + 8);
  453. return OPJ_TRUE;
  454. }
  455. /* do we have a "special very large box ?" */
  456. /* read then the XLBox */
  457. if (box->length == 1) {
  458. OPJ_UINT32 l_xl_part_size;
  459. OPJ_UINT32 l_nb_bytes_read = (OPJ_UINT32)opj_stream_read_data(cio,
  460. l_data_header, 8, p_manager);
  461. if (l_nb_bytes_read != 8) {
  462. if (l_nb_bytes_read > 0) {
  463. *p_number_bytes_read += l_nb_bytes_read;
  464. }
  465. return OPJ_FALSE;
  466. }
  467. *p_number_bytes_read = 16;
  468. opj_read_bytes(l_data_header, &l_xl_part_size, 4);
  469. if (l_xl_part_size != 0) {
  470. opj_event_msg(p_manager, EVT_ERROR,
  471. "Cannot handle box sizes higher than 2^32\n");
  472. return OPJ_FALSE;
  473. }
  474. opj_read_bytes(l_data_header + 4, &(box->length), 4);
  475. }
  476. return OPJ_TRUE;
  477. }
  478. #if 0
  479. static void jp2_write_url(opj_cio_t *cio, char *Idx_file)
  480. {
  481. OPJ_UINT32 i;
  482. opj_jp2_box_t box;
  483. box.init_pos = cio_tell(cio);
  484. cio_skip(cio, 4);
  485. cio_write(cio, JP2_URL, 4); /* DBTL */
  486. cio_write(cio, 0, 1); /* VERS */
  487. cio_write(cio, 0, 3); /* FLAG */
  488. if (Idx_file) {
  489. for (i = 0; i < strlen(Idx_file); i++) {
  490. cio_write(cio, Idx_file[i], 1);
  491. }
  492. }
  493. box.length = cio_tell(cio) - box.init_pos;
  494. cio_seek(cio, box.init_pos);
  495. cio_write(cio, box.length, 4); /* L */
  496. cio_seek(cio, box.init_pos + box.length);
  497. }
  498. #endif
  499. static OPJ_BOOL opj_jp2_read_ihdr(opj_jp2_t *jp2,
  500. OPJ_BYTE *p_image_header_data,
  501. OPJ_UINT32 p_image_header_size,
  502. opj_event_mgr_t * p_manager)
  503. {
  504. /* preconditions */
  505. assert(p_image_header_data != 00);
  506. assert(jp2 != 00);
  507. assert(p_manager != 00);
  508. if (jp2->comps != NULL) {
  509. opj_event_msg(p_manager, EVT_WARNING,
  510. "Ignoring ihdr box. First ihdr box already read\n");
  511. return OPJ_TRUE;
  512. }
  513. if (p_image_header_size != 14) {
  514. opj_event_msg(p_manager, EVT_ERROR, "Bad image header box (bad size)\n");
  515. return OPJ_FALSE;
  516. }
  517. opj_read_bytes(p_image_header_data, &(jp2->h), 4); /* HEIGHT */
  518. p_image_header_data += 4;
  519. opj_read_bytes(p_image_header_data, &(jp2->w), 4); /* WIDTH */
  520. p_image_header_data += 4;
  521. opj_read_bytes(p_image_header_data, &(jp2->numcomps), 2); /* NC */
  522. p_image_header_data += 2;
  523. if (jp2->h < 1 || jp2->w < 1 || jp2->numcomps < 1) {
  524. opj_event_msg(p_manager, EVT_ERROR,
  525. "Wrong values for: w(%d) h(%d) numcomps(%d) (ihdr)\n",
  526. jp2->w, jp2->h, jp2->numcomps);
  527. return OPJ_FALSE;
  528. }
  529. if ((jp2->numcomps - 1U) >=
  530. 16384U) { /* unsigned underflow is well defined: 1U <= jp2->numcomps <= 16384U */
  531. opj_event_msg(p_manager, EVT_ERROR, "Invalid number of components (ihdr)\n");
  532. return OPJ_FALSE;
  533. }
  534. /* allocate memory for components */
  535. jp2->comps = (opj_jp2_comps_t*) opj_calloc(jp2->numcomps,
  536. sizeof(opj_jp2_comps_t));
  537. if (jp2->comps == 0) {
  538. opj_event_msg(p_manager, EVT_ERROR,
  539. "Not enough memory to handle image header (ihdr)\n");
  540. return OPJ_FALSE;
  541. }
  542. opj_read_bytes(p_image_header_data, &(jp2->bpc), 1); /* BPC */
  543. ++ p_image_header_data;
  544. opj_read_bytes(p_image_header_data, &(jp2->C), 1); /* C */
  545. ++ p_image_header_data;
  546. /* Should be equal to 7 cf. chapter about image header box of the norm */
  547. if (jp2->C != 7) {
  548. opj_event_msg(p_manager, EVT_INFO,
  549. "JP2 IHDR box: compression type indicate that the file is not a conforming JP2 file (%d) \n",
  550. jp2->C);
  551. }
  552. opj_read_bytes(p_image_header_data, &(jp2->UnkC), 1); /* UnkC */
  553. ++ p_image_header_data;
  554. opj_read_bytes(p_image_header_data, &(jp2->IPR), 1); /* IPR */
  555. ++ p_image_header_data;
  556. jp2->j2k->m_cp.allow_different_bit_depth_sign = (jp2->bpc == 255);
  557. jp2->j2k->ihdr_w = jp2->w;
  558. jp2->j2k->ihdr_h = jp2->h;
  559. jp2->has_ihdr = 1;
  560. return OPJ_TRUE;
  561. }
  562. static OPJ_BYTE * opj_jp2_write_ihdr(opj_jp2_t *jp2,
  563. OPJ_UINT32 * p_nb_bytes_written
  564. )
  565. {
  566. OPJ_BYTE * l_ihdr_data, * l_current_ihdr_ptr;
  567. /* preconditions */
  568. assert(jp2 != 00);
  569. assert(p_nb_bytes_written != 00);
  570. /* default image header is 22 bytes wide */
  571. l_ihdr_data = (OPJ_BYTE *) opj_calloc(1, 22);
  572. if (l_ihdr_data == 00) {
  573. return 00;
  574. }
  575. l_current_ihdr_ptr = l_ihdr_data;
  576. opj_write_bytes(l_current_ihdr_ptr, 22, 4); /* write box size */
  577. l_current_ihdr_ptr += 4;
  578. opj_write_bytes(l_current_ihdr_ptr, JP2_IHDR, 4); /* IHDR */
  579. l_current_ihdr_ptr += 4;
  580. opj_write_bytes(l_current_ihdr_ptr, jp2->h, 4); /* HEIGHT */
  581. l_current_ihdr_ptr += 4;
  582. opj_write_bytes(l_current_ihdr_ptr, jp2->w, 4); /* WIDTH */
  583. l_current_ihdr_ptr += 4;
  584. opj_write_bytes(l_current_ihdr_ptr, jp2->numcomps, 2); /* NC */
  585. l_current_ihdr_ptr += 2;
  586. opj_write_bytes(l_current_ihdr_ptr, jp2->bpc, 1); /* BPC */
  587. ++l_current_ihdr_ptr;
  588. opj_write_bytes(l_current_ihdr_ptr, jp2->C, 1); /* C : Always 7 */
  589. ++l_current_ihdr_ptr;
  590. opj_write_bytes(l_current_ihdr_ptr, jp2->UnkC,
  591. 1); /* UnkC, colorspace unknown */
  592. ++l_current_ihdr_ptr;
  593. opj_write_bytes(l_current_ihdr_ptr, jp2->IPR,
  594. 1); /* IPR, no intellectual property */
  595. ++l_current_ihdr_ptr;
  596. *p_nb_bytes_written = 22;
  597. return l_ihdr_data;
  598. }
  599. static OPJ_BYTE * opj_jp2_write_bpcc(opj_jp2_t *jp2,
  600. OPJ_UINT32 * p_nb_bytes_written
  601. )
  602. {
  603. OPJ_UINT32 i;
  604. /* room for 8 bytes for box and 1 byte for each component */
  605. OPJ_UINT32 l_bpcc_size;
  606. OPJ_BYTE * l_bpcc_data, * l_current_bpcc_ptr;
  607. /* preconditions */
  608. assert(jp2 != 00);
  609. assert(p_nb_bytes_written != 00);
  610. l_bpcc_size = 8 + jp2->numcomps;
  611. l_bpcc_data = (OPJ_BYTE *) opj_calloc(1, l_bpcc_size);
  612. if (l_bpcc_data == 00) {
  613. return 00;
  614. }
  615. l_current_bpcc_ptr = l_bpcc_data;
  616. opj_write_bytes(l_current_bpcc_ptr, l_bpcc_size,
  617. 4); /* write box size */
  618. l_current_bpcc_ptr += 4;
  619. opj_write_bytes(l_current_bpcc_ptr, JP2_BPCC, 4); /* BPCC */
  620. l_current_bpcc_ptr += 4;
  621. for (i = 0; i < jp2->numcomps; ++i) {
  622. opj_write_bytes(l_current_bpcc_ptr, jp2->comps[i].bpcc,
  623. 1); /* write each component information */
  624. ++l_current_bpcc_ptr;
  625. }
  626. *p_nb_bytes_written = l_bpcc_size;
  627. return l_bpcc_data;
  628. }
  629. static OPJ_BOOL opj_jp2_read_bpcc(opj_jp2_t *jp2,
  630. OPJ_BYTE * p_bpc_header_data,
  631. OPJ_UINT32 p_bpc_header_size,
  632. opj_event_mgr_t * p_manager
  633. )
  634. {
  635. OPJ_UINT32 i;
  636. /* preconditions */
  637. assert(p_bpc_header_data != 00);
  638. assert(jp2 != 00);
  639. assert(p_manager != 00);
  640. if (jp2->bpc != 255) {
  641. opj_event_msg(p_manager, EVT_WARNING,
  642. "A BPCC header box is available although BPC given by the IHDR box (%d) indicate components bit depth is constant\n",
  643. jp2->bpc);
  644. }
  645. /* and length is relevant */
  646. if (p_bpc_header_size != jp2->numcomps) {
  647. opj_event_msg(p_manager, EVT_ERROR, "Bad BPCC header box (bad size)\n");
  648. return OPJ_FALSE;
  649. }
  650. /* read info for each component */
  651. for (i = 0; i < jp2->numcomps; ++i) {
  652. opj_read_bytes(p_bpc_header_data, &jp2->comps[i].bpcc,
  653. 1); /* read each BPCC component */
  654. ++p_bpc_header_data;
  655. }
  656. return OPJ_TRUE;
  657. }
  658. static OPJ_BYTE * opj_jp2_write_cdef(opj_jp2_t *jp2,
  659. OPJ_UINT32 * p_nb_bytes_written)
  660. {
  661. /* room for 8 bytes for box, 2 for n */
  662. OPJ_UINT32 l_cdef_size = 10;
  663. OPJ_BYTE * l_cdef_data, * l_current_cdef_ptr;
  664. OPJ_UINT32 l_value;
  665. OPJ_UINT16 i;
  666. /* preconditions */
  667. assert(jp2 != 00);
  668. assert(p_nb_bytes_written != 00);
  669. assert(jp2->color.jp2_cdef != 00);
  670. assert(jp2->color.jp2_cdef->info != 00);
  671. assert(jp2->color.jp2_cdef->n > 0U);
  672. l_cdef_size += 6U * jp2->color.jp2_cdef->n;
  673. l_cdef_data = (OPJ_BYTE *) opj_malloc(l_cdef_size);
  674. if (l_cdef_data == 00) {
  675. return 00;
  676. }
  677. l_current_cdef_ptr = l_cdef_data;
  678. opj_write_bytes(l_current_cdef_ptr, l_cdef_size, 4); /* write box size */
  679. l_current_cdef_ptr += 4;
  680. opj_write_bytes(l_current_cdef_ptr, JP2_CDEF, 4); /* BPCC */
  681. l_current_cdef_ptr += 4;
  682. l_value = jp2->color.jp2_cdef->n;
  683. opj_write_bytes(l_current_cdef_ptr, l_value, 2); /* N */
  684. l_current_cdef_ptr += 2;
  685. for (i = 0U; i < jp2->color.jp2_cdef->n; ++i) {
  686. l_value = jp2->color.jp2_cdef->info[i].cn;
  687. opj_write_bytes(l_current_cdef_ptr, l_value, 2); /* Cni */
  688. l_current_cdef_ptr += 2;
  689. l_value = jp2->color.jp2_cdef->info[i].typ;
  690. opj_write_bytes(l_current_cdef_ptr, l_value, 2); /* Typi */
  691. l_current_cdef_ptr += 2;
  692. l_value = jp2->color.jp2_cdef->info[i].asoc;
  693. opj_write_bytes(l_current_cdef_ptr, l_value, 2); /* Asoci */
  694. l_current_cdef_ptr += 2;
  695. }
  696. *p_nb_bytes_written = l_cdef_size;
  697. return l_cdef_data;
  698. }
  699. static OPJ_BYTE * opj_jp2_write_colr(opj_jp2_t *jp2,
  700. OPJ_UINT32 * p_nb_bytes_written
  701. )
  702. {
  703. /* room for 8 bytes for box 3 for common data and variable upon profile*/
  704. OPJ_UINT32 l_colr_size = 11;
  705. OPJ_BYTE * l_colr_data, * l_current_colr_ptr;
  706. /* preconditions */
  707. assert(jp2 != 00);
  708. assert(p_nb_bytes_written != 00);
  709. assert(jp2->meth == 1 || jp2->meth == 2);
  710. switch (jp2->meth) {
  711. case 1 :
  712. l_colr_size += 4; /* EnumCS */
  713. break;
  714. case 2 :
  715. assert(jp2->color.icc_profile_len); /* ICC profile */
  716. l_colr_size += jp2->color.icc_profile_len;
  717. break;
  718. default :
  719. return 00;
  720. }
  721. l_colr_data = (OPJ_BYTE *) opj_calloc(1, l_colr_size);
  722. if (l_colr_data == 00) {
  723. return 00;
  724. }
  725. l_current_colr_ptr = l_colr_data;
  726. opj_write_bytes(l_current_colr_ptr, l_colr_size,
  727. 4); /* write box size */
  728. l_current_colr_ptr += 4;
  729. opj_write_bytes(l_current_colr_ptr, JP2_COLR, 4); /* BPCC */
  730. l_current_colr_ptr += 4;
  731. opj_write_bytes(l_current_colr_ptr, jp2->meth, 1); /* METH */
  732. ++l_current_colr_ptr;
  733. opj_write_bytes(l_current_colr_ptr, jp2->precedence, 1); /* PRECEDENCE */
  734. ++l_current_colr_ptr;
  735. opj_write_bytes(l_current_colr_ptr, jp2->approx, 1); /* APPROX */
  736. ++l_current_colr_ptr;
  737. if (jp2->meth ==
  738. 1) { /* Meth value is restricted to 1 or 2 (Table I.9 of part 1) */
  739. opj_write_bytes(l_current_colr_ptr, jp2->enumcs, 4);
  740. } /* EnumCS */
  741. else {
  742. if (jp2->meth == 2) { /* ICC profile */
  743. OPJ_UINT32 i;
  744. for (i = 0; i < jp2->color.icc_profile_len; ++i) {
  745. opj_write_bytes(l_current_colr_ptr, jp2->color.icc_profile_buf[i], 1);
  746. ++l_current_colr_ptr;
  747. }
  748. }
  749. }
  750. *p_nb_bytes_written = l_colr_size;
  751. return l_colr_data;
  752. }
  753. static void opj_jp2_free_pclr(opj_jp2_color_t *color)
  754. {
  755. opj_free(color->jp2_pclr->channel_sign);
  756. opj_free(color->jp2_pclr->channel_size);
  757. opj_free(color->jp2_pclr->entries);
  758. if (color->jp2_pclr->cmap) {
  759. opj_free(color->jp2_pclr->cmap);
  760. }
  761. opj_free(color->jp2_pclr);
  762. color->jp2_pclr = NULL;
  763. }
  764. static OPJ_BOOL opj_jp2_check_color(opj_image_t *image, opj_jp2_color_t *color,
  765. opj_event_mgr_t *p_manager)
  766. {
  767. OPJ_UINT16 i;
  768. /* testcase 4149.pdf.SIGSEGV.cf7.3501 */
  769. if (color->jp2_cdef) {
  770. opj_jp2_cdef_info_t *info = color->jp2_cdef->info;
  771. OPJ_UINT16 n = color->jp2_cdef->n;
  772. OPJ_UINT32 nr_channels =
  773. image->numcomps; /* FIXME image->numcomps == jp2->numcomps before color is applied ??? */
  774. /* cdef applies to cmap channels if any */
  775. if (color->jp2_pclr && color->jp2_pclr->cmap) {
  776. nr_channels = (OPJ_UINT32)color->jp2_pclr->nr_channels;
  777. }
  778. for (i = 0; i < n; i++) {
  779. if (info[i].cn >= nr_channels) {
  780. opj_event_msg(p_manager, EVT_ERROR, "Invalid component index %d (>= %d).\n",
  781. info[i].cn, nr_channels);
  782. return OPJ_FALSE;
  783. }
  784. if (info[i].asoc == 65535U) {
  785. continue;
  786. }
  787. if (info[i].asoc > 0 && (OPJ_UINT32)(info[i].asoc - 1) >= nr_channels) {
  788. opj_event_msg(p_manager, EVT_ERROR, "Invalid component index %d (>= %d).\n",
  789. info[i].asoc - 1, nr_channels);
  790. return OPJ_FALSE;
  791. }
  792. }
  793. /* issue 397 */
  794. /* ISO 15444-1 states that if cdef is present, it shall contain a complete list of channel definitions. */
  795. while (nr_channels > 0) {
  796. for (i = 0; i < n; ++i) {
  797. if ((OPJ_UINT32)info[i].cn == (nr_channels - 1U)) {
  798. break;
  799. }
  800. }
  801. if (i == n) {
  802. opj_event_msg(p_manager, EVT_ERROR, "Incomplete channel definitions.\n");
  803. return OPJ_FALSE;
  804. }
  805. --nr_channels;
  806. }
  807. }
  808. /* testcases 451.pdf.SIGSEGV.f4c.3723, 451.pdf.SIGSEGV.5b5.3723 and
  809. 66ea31acbb0f23a2bbc91f64d69a03f5_signal_sigsegv_13937c0_7030_5725.pdf */
  810. if (color->jp2_pclr && color->jp2_pclr->cmap) {
  811. OPJ_UINT16 nr_channels = color->jp2_pclr->nr_channels;
  812. opj_jp2_cmap_comp_t *cmap = color->jp2_pclr->cmap;
  813. OPJ_BOOL *pcol_usage, is_sane = OPJ_TRUE;
  814. /* verify that all original components match an existing one */
  815. for (i = 0; i < nr_channels; i++) {
  816. if (cmap[i].cmp >= image->numcomps) {
  817. opj_event_msg(p_manager, EVT_ERROR, "Invalid component index %d (>= %d).\n",
  818. cmap[i].cmp, image->numcomps);
  819. is_sane = OPJ_FALSE;
  820. }
  821. }
  822. pcol_usage = (OPJ_BOOL *) opj_calloc(nr_channels, sizeof(OPJ_BOOL));
  823. if (!pcol_usage) {
  824. opj_event_msg(p_manager, EVT_ERROR, "Unexpected OOM.\n");
  825. return OPJ_FALSE;
  826. }
  827. /* verify that no component is targeted more than once */
  828. for (i = 0; i < nr_channels; i++) {
  829. OPJ_BYTE mtyp = cmap[i].mtyp;
  830. OPJ_BYTE pcol = cmap[i].pcol;
  831. /* See ISO 15444-1 Table I.14 – MTYPi field values */
  832. if (mtyp != 0 && mtyp != 1) {
  833. opj_event_msg(p_manager, EVT_ERROR,
  834. "Invalid value for cmap[%d].mtyp = %d.\n", i,
  835. mtyp);
  836. is_sane = OPJ_FALSE;
  837. } else if (pcol >= nr_channels) {
  838. opj_event_msg(p_manager, EVT_ERROR,
  839. "Invalid component/palette index for direct mapping %d.\n", pcol);
  840. is_sane = OPJ_FALSE;
  841. } else if (pcol_usage[pcol] && mtyp == 1) {
  842. opj_event_msg(p_manager, EVT_ERROR, "Component %d is mapped twice.\n", pcol);
  843. is_sane = OPJ_FALSE;
  844. } else if (mtyp == 0 && pcol != 0) {
  845. /* I.5.3.5 PCOL: If the value of the MTYP field for this channel is 0, then
  846. * the value of this field shall be 0. */
  847. opj_event_msg(p_manager, EVT_ERROR, "Direct use at #%d however pcol=%d.\n", i,
  848. pcol);
  849. is_sane = OPJ_FALSE;
  850. } else if (mtyp == 1 && pcol != i) {
  851. /* OpenJPEG implementation limitation. See assert(i == pcol); */
  852. /* in opj_jp2_apply_pclr() */
  853. opj_event_msg(p_manager, EVT_ERROR,
  854. "Implementation limitation: for palette mapping, "
  855. "pcol[%d] should be equal to %d, but is equal "
  856. "to %d.\n", i, i, pcol);
  857. is_sane = OPJ_FALSE;
  858. } else {
  859. pcol_usage[pcol] = OPJ_TRUE;
  860. }
  861. }
  862. /* verify that all components are targeted at least once */
  863. for (i = 0; i < nr_channels; i++) {
  864. if (!pcol_usage[i] && cmap[i].mtyp != 0) {
  865. opj_event_msg(p_manager, EVT_ERROR, "Component %d doesn't have a mapping.\n",
  866. i);
  867. is_sane = OPJ_FALSE;
  868. }
  869. }
  870. /* Issue 235/447 weird cmap */
  871. if (1 && is_sane && (image->numcomps == 1U)) {
  872. for (i = 0; i < nr_channels; i++) {
  873. if (!pcol_usage[i]) {
  874. is_sane = 0U;
  875. opj_event_msg(p_manager, EVT_WARNING,
  876. "Component mapping seems wrong. Trying to correct.\n");
  877. break;
  878. }
  879. }
  880. if (!is_sane) {
  881. is_sane = OPJ_TRUE;
  882. for (i = 0; i < nr_channels; i++) {
  883. cmap[i].mtyp = 1U;
  884. cmap[i].pcol = (OPJ_BYTE) i;
  885. }
  886. }
  887. }
  888. opj_free(pcol_usage);
  889. if (!is_sane) {
  890. return OPJ_FALSE;
  891. }
  892. }
  893. return OPJ_TRUE;
  894. }
  895. /* file9.jp2 */
  896. static OPJ_BOOL opj_jp2_apply_pclr(opj_image_t *image,
  897. opj_jp2_color_t *color,
  898. opj_event_mgr_t * p_manager)
  899. {
  900. opj_image_comp_t *old_comps, *new_comps;
  901. OPJ_BYTE *channel_size, *channel_sign;
  902. OPJ_UINT32 *entries;
  903. opj_jp2_cmap_comp_t *cmap;
  904. OPJ_INT32 *src, *dst;
  905. OPJ_UINT32 j, max;
  906. OPJ_UINT16 i, nr_channels, cmp, pcol;
  907. OPJ_INT32 k, top_k;
  908. channel_size = color->jp2_pclr->channel_size;
  909. channel_sign = color->jp2_pclr->channel_sign;
  910. entries = color->jp2_pclr->entries;
  911. cmap = color->jp2_pclr->cmap;
  912. nr_channels = color->jp2_pclr->nr_channels;
  913. for (i = 0; i < nr_channels; ++i) {
  914. /* Palette mapping: */
  915. cmp = cmap[i].cmp;
  916. if (image->comps[cmp].data == NULL) {
  917. opj_event_msg(p_manager, EVT_ERROR,
  918. "image->comps[%d].data == NULL in opj_jp2_apply_pclr().\n", i);
  919. return OPJ_FALSE;
  920. }
  921. }
  922. old_comps = image->comps;
  923. new_comps = (opj_image_comp_t*)
  924. opj_malloc(nr_channels * sizeof(opj_image_comp_t));
  925. if (!new_comps) {
  926. opj_event_msg(p_manager, EVT_ERROR,
  927. "Memory allocation failure in opj_jp2_apply_pclr().\n");
  928. return OPJ_FALSE;
  929. }
  930. for (i = 0; i < nr_channels; ++i) {
  931. pcol = cmap[i].pcol;
  932. cmp = cmap[i].cmp;
  933. /* Direct use */
  934. if (cmap[i].mtyp == 0) {
  935. assert(pcol == 0);
  936. new_comps[i] = old_comps[cmp];
  937. } else {
  938. assert(i == pcol);
  939. new_comps[pcol] = old_comps[cmp];
  940. }
  941. /* Palette mapping: */
  942. new_comps[i].data = (OPJ_INT32*)
  943. opj_image_data_alloc(sizeof(OPJ_INT32) * old_comps[cmp].w * old_comps[cmp].h);
  944. if (!new_comps[i].data) {
  945. while (i > 0) {
  946. -- i;
  947. opj_image_data_free(new_comps[i].data);
  948. }
  949. opj_free(new_comps);
  950. opj_event_msg(p_manager, EVT_ERROR,
  951. "Memory allocation failure in opj_jp2_apply_pclr().\n");
  952. return OPJ_FALSE;
  953. }
  954. new_comps[i].prec = channel_size[i];
  955. new_comps[i].sgnd = channel_sign[i];
  956. }
  957. top_k = color->jp2_pclr->nr_entries - 1;
  958. for (i = 0; i < nr_channels; ++i) {
  959. /* Palette mapping: */
  960. cmp = cmap[i].cmp;
  961. pcol = cmap[i].pcol;
  962. src = old_comps[cmp].data;
  963. assert(src); /* verified above */
  964. max = new_comps[i].w * new_comps[i].h;
  965. /* Direct use: */
  966. if (cmap[i].mtyp == 0) {
  967. dst = new_comps[i].data;
  968. assert(dst);
  969. for (j = 0; j < max; ++j) {
  970. dst[j] = src[j];
  971. }
  972. } else {
  973. assert(i == pcol);
  974. dst = new_comps[pcol].data;
  975. assert(dst);
  976. for (j = 0; j < max; ++j) {
  977. /* The index */
  978. if ((k = src[j]) < 0) {
  979. k = 0;
  980. } else if (k > top_k) {
  981. k = top_k;
  982. }
  983. /* The colour */
  984. dst[j] = (OPJ_INT32)entries[k * nr_channels + pcol];
  985. }
  986. }
  987. }
  988. max = image->numcomps;
  989. for (j = 0; j < max; ++j) {
  990. if (old_comps[j].data) {
  991. opj_image_data_free(old_comps[j].data);
  992. }
  993. }
  994. opj_free(old_comps);
  995. image->comps = new_comps;
  996. image->numcomps = nr_channels;
  997. return OPJ_TRUE;
  998. }/* apply_pclr() */
  999. static OPJ_BOOL opj_jp2_read_pclr(opj_jp2_t *jp2,
  1000. OPJ_BYTE * p_pclr_header_data,
  1001. OPJ_UINT32 p_pclr_header_size,
  1002. opj_event_mgr_t * p_manager
  1003. )
  1004. {
  1005. opj_jp2_pclr_t *jp2_pclr;
  1006. OPJ_BYTE *channel_size, *channel_sign;
  1007. OPJ_UINT32 *entries;
  1008. OPJ_UINT16 nr_entries, nr_channels;
  1009. OPJ_UINT16 i, j;
  1010. OPJ_UINT32 l_value;
  1011. OPJ_BYTE *orig_header_data = p_pclr_header_data;
  1012. /* preconditions */
  1013. assert(p_pclr_header_data != 00);
  1014. assert(jp2 != 00);
  1015. assert(p_manager != 00);
  1016. (void)p_pclr_header_size;
  1017. if (jp2->color.jp2_pclr) {
  1018. return OPJ_FALSE;
  1019. }
  1020. if (p_pclr_header_size < 3) {
  1021. return OPJ_FALSE;
  1022. }
  1023. opj_read_bytes(p_pclr_header_data, &l_value, 2); /* NE */
  1024. p_pclr_header_data += 2;
  1025. nr_entries = (OPJ_UINT16) l_value;
  1026. if ((nr_entries == 0U) || (nr_entries > 1024U)) {
  1027. opj_event_msg(p_manager, EVT_ERROR, "Invalid PCLR box. Reports %d entries\n",
  1028. (int)nr_entries);
  1029. return OPJ_FALSE;
  1030. }
  1031. opj_read_bytes(p_pclr_header_data, &l_value, 1); /* NPC */
  1032. ++p_pclr_header_data;
  1033. nr_channels = (OPJ_UINT16) l_value;
  1034. if (nr_channels == 0U) {
  1035. opj_event_msg(p_manager, EVT_ERROR,
  1036. "Invalid PCLR box. Reports 0 palette columns\n");
  1037. return OPJ_FALSE;
  1038. }
  1039. if (p_pclr_header_size < 3 + (OPJ_UINT32)nr_channels) {
  1040. return OPJ_FALSE;
  1041. }
  1042. entries = (OPJ_UINT32*) opj_malloc(sizeof(OPJ_UINT32) * nr_channels *
  1043. nr_entries);
  1044. if (!entries) {
  1045. return OPJ_FALSE;
  1046. }
  1047. channel_size = (OPJ_BYTE*) opj_malloc(nr_channels);
  1048. if (!channel_size) {
  1049. opj_free(entries);
  1050. return OPJ_FALSE;
  1051. }
  1052. channel_sign = (OPJ_BYTE*) opj_malloc(nr_channels);
  1053. if (!channel_sign) {
  1054. opj_free(entries);
  1055. opj_free(channel_size);
  1056. return OPJ_FALSE;
  1057. }
  1058. jp2_pclr = (opj_jp2_pclr_t*)opj_malloc(sizeof(opj_jp2_pclr_t));
  1059. if (!jp2_pclr) {
  1060. opj_free(entries);
  1061. opj_free(channel_size);
  1062. opj_free(channel_sign);
  1063. return OPJ_FALSE;
  1064. }
  1065. jp2_pclr->channel_sign = channel_sign;
  1066. jp2_pclr->channel_size = channel_size;
  1067. jp2_pclr->entries = entries;
  1068. jp2_pclr->nr_entries = nr_entries;
  1069. jp2_pclr->nr_channels = (OPJ_BYTE) l_value;
  1070. jp2_pclr->cmap = NULL;
  1071. jp2->color.jp2_pclr = jp2_pclr;
  1072. for (i = 0; i < nr_channels; ++i) {
  1073. opj_read_bytes(p_pclr_header_data, &l_value, 1); /* Bi */
  1074. ++p_pclr_header_data;
  1075. channel_size[i] = (OPJ_BYTE)((l_value & 0x7f) + 1);
  1076. channel_sign[i] = (l_value & 0x80) ? 1 : 0;
  1077. }
  1078. for (j = 0; j < nr_entries; ++j) {
  1079. for (i = 0; i < nr_channels; ++i) {
  1080. OPJ_UINT32 bytes_to_read = (OPJ_UINT32)((channel_size[i] + 7) >> 3);
  1081. if (bytes_to_read > sizeof(OPJ_UINT32)) {
  1082. bytes_to_read = sizeof(OPJ_UINT32);
  1083. }
  1084. if ((ptrdiff_t)p_pclr_header_size < (ptrdiff_t)(p_pclr_header_data -
  1085. orig_header_data) + (ptrdiff_t)bytes_to_read) {
  1086. return OPJ_FALSE;
  1087. }
  1088. opj_read_bytes(p_pclr_header_data, &l_value, bytes_to_read); /* Cji */
  1089. p_pclr_header_data += bytes_to_read;
  1090. *entries = (OPJ_UINT32) l_value;
  1091. entries++;
  1092. }
  1093. }
  1094. return OPJ_TRUE;
  1095. }
  1096. static OPJ_BOOL opj_jp2_read_cmap(opj_jp2_t * jp2,
  1097. OPJ_BYTE * p_cmap_header_data,
  1098. OPJ_UINT32 p_cmap_header_size,
  1099. opj_event_mgr_t * p_manager
  1100. )
  1101. {
  1102. opj_jp2_cmap_comp_t *cmap;
  1103. OPJ_BYTE i, nr_channels;
  1104. OPJ_UINT32 l_value;
  1105. /* preconditions */
  1106. assert(jp2 != 00);
  1107. assert(p_cmap_header_data != 00);
  1108. assert(p_manager != 00);
  1109. (void)p_cmap_header_size;
  1110. /* Need nr_channels: */
  1111. if (jp2->color.jp2_pclr == NULL) {
  1112. opj_event_msg(p_manager, EVT_ERROR,
  1113. "Need to read a PCLR box before the CMAP box.\n");
  1114. return OPJ_FALSE;
  1115. }
  1116. /* Part 1, I.5.3.5: 'There shall be at most one Component Mapping box
  1117. * inside a JP2 Header box' :
  1118. */
  1119. if (jp2->color.jp2_pclr->cmap) {
  1120. opj_event_msg(p_manager, EVT_ERROR, "Only one CMAP box is allowed.\n");
  1121. return OPJ_FALSE;
  1122. }
  1123. nr_channels = jp2->color.jp2_pclr->nr_channels;
  1124. if (p_cmap_header_size < (OPJ_UINT32)nr_channels * 4) {
  1125. opj_event_msg(p_manager, EVT_ERROR, "Insufficient data for CMAP box.\n");
  1126. return OPJ_FALSE;
  1127. }
  1128. cmap = (opj_jp2_cmap_comp_t*) opj_malloc(nr_channels * sizeof(
  1129. opj_jp2_cmap_comp_t));
  1130. if (!cmap) {
  1131. return OPJ_FALSE;
  1132. }
  1133. for (i = 0; i < nr_channels; ++i) {
  1134. opj_read_bytes(p_cmap_header_data, &l_value, 2); /* CMP^i */
  1135. p_cmap_header_data += 2;
  1136. cmap[i].cmp = (OPJ_UINT16) l_value;
  1137. opj_read_bytes(p_cmap_header_data, &l_value, 1); /* MTYP^i */
  1138. ++p_cmap_header_data;
  1139. cmap[i].mtyp = (OPJ_BYTE) l_value;
  1140. opj_read_bytes(p_cmap_header_data, &l_value, 1); /* PCOL^i */
  1141. ++p_cmap_header_data;
  1142. cmap[i].pcol = (OPJ_BYTE) l_value;
  1143. }
  1144. jp2->color.jp2_pclr->cmap = cmap;
  1145. return OPJ_TRUE;
  1146. }
  1147. static void opj_jp2_apply_cdef(opj_image_t *image, opj_jp2_color_t *color,
  1148. opj_event_mgr_t *manager)
  1149. {
  1150. opj_jp2_cdef_info_t *info;
  1151. OPJ_UINT16 i, n, cn, asoc, acn;
  1152. info = color->jp2_cdef->info;
  1153. n = color->jp2_cdef->n;
  1154. for (i = 0; i < n; ++i) {
  1155. /* WATCH: acn = asoc - 1 ! */
  1156. asoc = info[i].asoc;
  1157. cn = info[i].cn;
  1158. if (cn >= image->numcomps) {
  1159. opj_event_msg(manager, EVT_WARNING, "opj_jp2_apply_cdef: cn=%d, numcomps=%d\n",
  1160. cn, image->numcomps);
  1161. continue;
  1162. }
  1163. if (asoc == 0 || asoc == 65535) {
  1164. image->comps[cn].alpha = info[i].typ;
  1165. continue;
  1166. }
  1167. acn = (OPJ_UINT16)(asoc - 1);
  1168. if (acn >= image->numcomps) {
  1169. opj_event_msg(manager, EVT_WARNING, "opj_jp2_apply_cdef: acn=%d, numcomps=%d\n",
  1170. acn, image->numcomps);
  1171. continue;
  1172. }
  1173. /* Swap only if color channel */
  1174. if ((cn != acn) && (info[i].typ == 0)) {
  1175. opj_image_comp_t saved;
  1176. OPJ_UINT16 j;
  1177. memcpy(&saved, &image->comps[cn], sizeof(opj_image_comp_t));
  1178. memcpy(&image->comps[cn], &image->comps[acn], sizeof(opj_image_comp_t));
  1179. memcpy(&image->comps[acn], &saved, sizeof(opj_image_comp_t));
  1180. /* Swap channels in following channel definitions, don't bother with j <= i that are already processed */
  1181. for (j = (OPJ_UINT16)(i + 1U); j < n ; ++j) {
  1182. if (info[j].cn == cn) {
  1183. info[j].cn = acn;
  1184. } else if (info[j].cn == acn) {
  1185. info[j].cn = cn;
  1186. }
  1187. /* asoc is related to color index. Do not update. */
  1188. }
  1189. }
  1190. image->comps[cn].alpha = info[i].typ;
  1191. }
  1192. if (color->jp2_cdef->info) {
  1193. opj_free(color->jp2_cdef->info);
  1194. }
  1195. opj_free(color->jp2_cdef);
  1196. color->jp2_cdef = NULL;
  1197. }/* jp2_apply_cdef() */
  1198. static OPJ_BOOL opj_jp2_read_cdef(opj_jp2_t * jp2,
  1199. OPJ_BYTE * p_cdef_header_data,
  1200. OPJ_UINT32 p_cdef_header_size,
  1201. opj_event_mgr_t * p_manager
  1202. )
  1203. {
  1204. opj_jp2_cdef_info_t *cdef_info;
  1205. OPJ_UINT16 i;
  1206. OPJ_UINT32 l_value;
  1207. /* preconditions */
  1208. assert(jp2 != 00);
  1209. assert(p_cdef_header_data != 00);
  1210. assert(p_manager != 00);
  1211. (void)p_cdef_header_size;
  1212. /* Part 1, I.5.3.6: 'The shall be at most one Channel Definition box
  1213. * inside a JP2 Header box.'*/
  1214. if (jp2->color.jp2_cdef) {
  1215. return OPJ_FALSE;
  1216. }
  1217. if (p_cdef_header_size < 2) {
  1218. opj_event_msg(p_manager, EVT_ERROR, "Insufficient data for CDEF box.\n");
  1219. return OPJ_FALSE;
  1220. }
  1221. opj_read_bytes(p_cdef_header_data, &l_value, 2); /* N */
  1222. p_cdef_header_data += 2;
  1223. if ((OPJ_UINT16)l_value == 0) { /* szukw000: FIXME */
  1224. opj_event_msg(p_manager, EVT_ERROR,
  1225. "Number of channel description is equal to zero in CDEF box.\n");
  1226. return OPJ_FALSE;
  1227. }
  1228. if (p_cdef_header_size < 2 + (OPJ_UINT32)(OPJ_UINT16)l_value * 6) {
  1229. opj_event_msg(p_manager, EVT_ERROR, "Insufficient data for CDEF box.\n");
  1230. return OPJ_FALSE;
  1231. }
  1232. cdef_info = (opj_jp2_cdef_info_t*) opj_malloc(l_value * sizeof(
  1233. opj_jp2_cdef_info_t));
  1234. if (!cdef_info) {
  1235. return OPJ_FALSE;
  1236. }
  1237. jp2->color.jp2_cdef = (opj_jp2_cdef_t*)opj_malloc(sizeof(opj_jp2_cdef_t));
  1238. if (!jp2->color.jp2_cdef) {
  1239. opj_free(cdef_info);
  1240. return OPJ_FALSE;
  1241. }
  1242. jp2->color.jp2_cdef->info = cdef_info;
  1243. jp2->color.jp2_cdef->n = (OPJ_UINT16) l_value;
  1244. for (i = 0; i < jp2->color.jp2_cdef->n; ++i) {
  1245. opj_read_bytes(p_cdef_header_data, &l_value, 2); /* Cn^i */
  1246. p_cdef_header_data += 2;
  1247. cdef_info[i].cn = (OPJ_UINT16) l_value;
  1248. opj_read_bytes(p_cdef_header_data, &l_value, 2); /* Typ^i */
  1249. p_cdef_header_data += 2;
  1250. cdef_info[i].typ = (OPJ_UINT16) l_value;
  1251. opj_read_bytes(p_cdef_header_data, &l_value, 2); /* Asoc^i */
  1252. p_cdef_header_data += 2;
  1253. cdef_info[i].asoc = (OPJ_UINT16) l_value;
  1254. }
  1255. return OPJ_TRUE;
  1256. }
  1257. static OPJ_BOOL opj_jp2_read_colr(opj_jp2_t *jp2,
  1258. OPJ_BYTE * p_colr_header_data,
  1259. OPJ_UINT32 p_colr_header_size,
  1260. opj_event_mgr_t * p_manager
  1261. )
  1262. {
  1263. OPJ_UINT32 l_value;
  1264. /* preconditions */
  1265. assert(jp2 != 00);
  1266. assert(p_colr_header_data != 00);
  1267. assert(p_manager != 00);
  1268. if (p_colr_header_size < 3) {
  1269. opj_event_msg(p_manager, EVT_ERROR, "Bad COLR header box (bad size)\n");
  1270. return OPJ_FALSE;
  1271. }
  1272. /* Part 1, I.5.3.3 : 'A conforming JP2 reader shall ignore all Colour
  1273. * Specification boxes after the first.'
  1274. */
  1275. if (jp2->color.jp2_has_colr) {
  1276. opj_event_msg(p_manager, EVT_INFO,
  1277. "A conforming JP2 reader shall ignore all Colour Specification boxes after the first, so we ignore this one.\n");
  1278. p_colr_header_data += p_colr_header_size;
  1279. return OPJ_TRUE;
  1280. }
  1281. opj_read_bytes(p_colr_header_data, &jp2->meth, 1); /* METH */
  1282. ++p_colr_header_data;
  1283. opj_read_bytes(p_colr_header_data, &jp2->precedence, 1); /* PRECEDENCE */
  1284. ++p_colr_header_data;
  1285. opj_read_bytes(p_colr_header_data, &jp2->approx, 1); /* APPROX */
  1286. ++p_colr_header_data;
  1287. if (jp2->meth == 1) {
  1288. if (p_colr_header_size < 7) {
  1289. opj_event_msg(p_manager, EVT_ERROR, "Bad COLR header box (bad size: %d)\n",
  1290. p_colr_header_size);
  1291. return OPJ_FALSE;
  1292. }
  1293. if ((p_colr_header_size > 7) &&
  1294. (jp2->enumcs != 14)) { /* handled below for CIELab) */
  1295. /* testcase Altona_Technical_v20_x4.pdf */
  1296. opj_event_msg(p_manager, EVT_WARNING, "Bad COLR header box (bad size: %d)\n",
  1297. p_colr_header_size);
  1298. }
  1299. opj_read_bytes(p_colr_header_data, &jp2->enumcs, 4); /* EnumCS */
  1300. p_colr_header_data += 4;
  1301. if (jp2->enumcs == 14) { /* CIELab */
  1302. OPJ_UINT32 *cielab;
  1303. OPJ_UINT32 rl, ol, ra, oa, rb, ob, il;
  1304. cielab = (OPJ_UINT32*)opj_malloc(9 * sizeof(OPJ_UINT32));
  1305. if (cielab == NULL) {
  1306. opj_event_msg(p_manager, EVT_ERROR, "Not enough memory for cielab\n");
  1307. return OPJ_FALSE;
  1308. }
  1309. cielab[0] = 14; /* enumcs */
  1310. /* default values */
  1311. rl = ra = rb = ol = oa = ob = 0;
  1312. il = 0x00443530; /* D50 */
  1313. cielab[1] = 0x44454600;/* DEF */
  1314. if (p_colr_header_size == 35) {
  1315. opj_read_bytes(p_colr_header_data, &rl, 4);
  1316. p_colr_header_data += 4;
  1317. opj_read_bytes(p_colr_header_data, &ol, 4);
  1318. p_colr_header_data += 4;
  1319. opj_read_bytes(p_colr_header_data, &ra, 4);
  1320. p_colr_header_data += 4;
  1321. opj_read_bytes(p_colr_header_data, &oa, 4);
  1322. p_colr_header_data += 4;
  1323. opj_read_bytes(p_colr_header_data, &rb, 4);
  1324. p_colr_header_data += 4;
  1325. opj_read_bytes(p_colr_header_data, &ob, 4);
  1326. p_colr_header_data += 4;
  1327. opj_read_bytes(p_colr_header_data, &il, 4);
  1328. p_colr_header_data += 4;
  1329. cielab[1] = 0;
  1330. } else if (p_colr_header_size != 7) {
  1331. opj_event_msg(p_manager, EVT_WARNING,
  1332. "Bad COLR header box (CIELab, bad size: %d)\n", p_colr_header_size);
  1333. }
  1334. cielab[2] = rl;
  1335. cielab[4] = ra;
  1336. cielab[6] = rb;
  1337. cielab[3] = ol;
  1338. cielab[5] = oa;
  1339. cielab[7] = ob;
  1340. cielab[8] = il;
  1341. jp2->color.icc_profile_buf = (OPJ_BYTE*)cielab;
  1342. jp2->color.icc_profile_len = 0;
  1343. }
  1344. jp2->color.jp2_has_colr = 1;
  1345. } else if (jp2->meth == 2) {
  1346. /* ICC profile */
  1347. OPJ_INT32 it_icc_value = 0;
  1348. OPJ_INT32 icc_len = (OPJ_INT32)p_colr_header_size - 3;
  1349. jp2->color.icc_profile_len = (OPJ_UINT32)icc_len;
  1350. jp2->color.icc_profile_buf = (OPJ_BYTE*) opj_calloc(1, (size_t)icc_len);
  1351. if (!jp2->color.icc_profile_buf) {
  1352. jp2->color.icc_profile_len = 0;
  1353. return OPJ_FALSE;
  1354. }
  1355. for (it_icc_value = 0; it_icc_value < icc_len; ++it_icc_value) {
  1356. opj_read_bytes(p_colr_header_data, &l_value, 1); /* icc values */
  1357. ++p_colr_header_data;
  1358. jp2->color.icc_profile_buf[it_icc_value] = (OPJ_BYTE) l_value;
  1359. }
  1360. jp2->color.jp2_has_colr = 1;
  1361. } else if (jp2->meth > 2) {
  1362. /* ISO/IEC 15444-1:2004 (E), Table I.9 Legal METH values:
  1363. conforming JP2 reader shall ignore the entire Colour Specification box.*/
  1364. opj_event_msg(p_manager, EVT_INFO,
  1365. "COLR BOX meth value is not a regular value (%d), "
  1366. "so we will ignore the entire Colour Specification box. \n", jp2->meth);
  1367. }
  1368. return OPJ_TRUE;
  1369. }
  1370. static OPJ_BOOL opj_jp2_apply_color_postprocessing(opj_jp2_t *jp2,
  1371. opj_image_t* p_image,
  1372. opj_event_mgr_t * p_manager)
  1373. {
  1374. if (jp2->j2k->m_specific_param.m_decoder.m_numcomps_to_decode) {
  1375. /* Bypass all JP2 component transforms */
  1376. return OPJ_TRUE;
  1377. }
  1378. if (!jp2->ignore_pclr_cmap_cdef) {
  1379. if (!opj_jp2_check_color(p_image, &(jp2->color), p_manager)) {
  1380. return OPJ_FALSE;
  1381. }
  1382. if (jp2->color.jp2_pclr) {
  1383. /* Part 1, I.5.3.4: Either both or none : */
  1384. if (!jp2->color.jp2_pclr->cmap) {
  1385. opj_jp2_free_pclr(&(jp2->color));
  1386. } else {
  1387. if (!opj_jp2_apply_pclr(p_image, &(jp2->color), p_manager)) {
  1388. return OPJ_FALSE;
  1389. }
  1390. }
  1391. }
  1392. /* Apply the color space if needed */
  1393. if (jp2->color.jp2_cdef) {
  1394. opj_jp2_apply_cdef(p_image, &(jp2->color), p_manager);
  1395. }
  1396. }
  1397. return OPJ_TRUE;
  1398. }
  1399. OPJ_BOOL opj_jp2_decode(opj_jp2_t *jp2,
  1400. opj_stream_private_t *p_stream,
  1401. opj_image_t* p_image,
  1402. opj_event_mgr_t * p_manager)
  1403. {
  1404. if (!p_image) {
  1405. return OPJ_FALSE;
  1406. }
  1407. /* J2K decoding */
  1408. if (! opj_j2k_decode(jp2->j2k, p_stream, p_image, p_manager)) {
  1409. opj_event_msg(p_manager, EVT_ERROR,
  1410. "Failed to decode the codestream in the JP2 file\n");
  1411. return OPJ_FALSE;
  1412. }
  1413. return opj_jp2_apply_color_postprocessing(jp2, p_image, p_manager);
  1414. }
  1415. static OPJ_BOOL opj_jp2_write_jp2h(opj_jp2_t *jp2,
  1416. opj_stream_private_t *stream,
  1417. opj_event_mgr_t * p_manager
  1418. )
  1419. {
  1420. opj_jp2_img_header_writer_handler_t l_writers [4];
  1421. opj_jp2_img_header_writer_handler_t * l_current_writer;
  1422. OPJ_INT32 i, l_nb_pass;
  1423. /* size of data for super box*/
  1424. OPJ_UINT32 l_jp2h_size = 8;
  1425. OPJ_BOOL l_result = OPJ_TRUE;
  1426. /* to store the data of the super box */
  1427. OPJ_BYTE l_jp2h_data [8];
  1428. /* preconditions */
  1429. assert(stream != 00);
  1430. assert(jp2 != 00);
  1431. assert(p_manager != 00);
  1432. memset(l_writers, 0, sizeof(l_writers));
  1433. if (jp2->bpc == 255) {
  1434. l_nb_pass = 3;
  1435. l_writers[0].handler = opj_jp2_write_ihdr;
  1436. l_writers[1].handler = opj_jp2_write_bpcc;
  1437. l_writers[2].handler = opj_jp2_write_colr;
  1438. } else {
  1439. l_nb_pass = 2;
  1440. l_writers[0].handler = opj_jp2_write_ihdr;
  1441. l_writers[1].handler = opj_jp2_write_colr;
  1442. }
  1443. if (jp2->color.jp2_cdef != NULL) {
  1444. l_writers[l_nb_pass].handler = opj_jp2_write_cdef;
  1445. l_nb_pass++;
  1446. }
  1447. /* write box header */
  1448. /* write JP2H type */
  1449. opj_write_bytes(l_jp2h_data + 4, JP2_JP2H, 4);
  1450. l_current_writer = l_writers;
  1451. for (i = 0; i < l_nb_pass; ++i) {
  1452. l_current_writer->m_data = l_current_writer->handler(jp2,
  1453. &(l_current_writer->m_size));
  1454. if (l_current_writer->m_data == 00) {
  1455. opj_event_msg(p_manager, EVT_ERROR,
  1456. "Not enough memory to hold JP2 Header data\n");
  1457. l_result = OPJ_FALSE;
  1458. break;
  1459. }
  1460. l_jp2h_size += l_current_writer->m_size;
  1461. ++l_current_writer;
  1462. }
  1463. if (! l_result) {
  1464. l_current_writer = l_writers;
  1465. for (i = 0; i < l_nb_pass; ++i) {
  1466. if (l_current_writer->m_data != 00) {
  1467. opj_free(l_current_writer->m_data);
  1468. }
  1469. ++l_current_writer;
  1470. }
  1471. return OPJ_FALSE;
  1472. }
  1473. /* write super box size */
  1474. opj_write_bytes(l_jp2h_data, l_jp2h_size, 4);
  1475. /* write super box data on stream */
  1476. if (opj_stream_write_data(stream, l_jp2h_data, 8, p_manager) != 8) {
  1477. opj_event_msg(p_manager, EVT_ERROR,
  1478. "Stream error while writing JP2 Header box\n");
  1479. l_result = OPJ_FALSE;
  1480. }
  1481. if (l_result) {
  1482. l_current_writer = l_writers;
  1483. for (i = 0; i < l_nb_pass; ++i) {
  1484. if (opj_stream_write_data(stream, l_current_writer->m_data,
  1485. l_current_writer->m_size, p_manager) != l_current_writer->m_size) {
  1486. opj_event_msg(p_manager, EVT_ERROR,
  1487. "Stream error while writing JP2 Header box\n");
  1488. l_result = OPJ_FALSE;
  1489. break;
  1490. }
  1491. ++l_current_writer;
  1492. }
  1493. }
  1494. l_current_writer = l_writers;
  1495. /* cleanup */
  1496. for (i = 0; i < l_nb_pass; ++i) {
  1497. if (l_current_writer->m_data != 00) {
  1498. opj_free(l_current_writer->m_data);
  1499. }
  1500. ++l_current_writer;
  1501. }
  1502. return l_result;
  1503. }
  1504. static OPJ_BOOL opj_jp2_write_ftyp(opj_jp2_t *jp2,
  1505. opj_stream_private_t *cio,
  1506. opj_event_mgr_t * p_manager)
  1507. {
  1508. OPJ_UINT32 i;
  1509. OPJ_UINT32 l_ftyp_size;
  1510. OPJ_BYTE * l_ftyp_data, * l_current_data_ptr;
  1511. OPJ_BOOL l_result;
  1512. /* preconditions */
  1513. assert(cio != 00);
  1514. assert(jp2 != 00);
  1515. assert(p_manager != 00);
  1516. l_ftyp_size = 16 + 4 * jp2->numcl;
  1517. l_ftyp_data = (OPJ_BYTE *) opj_calloc(1, l_ftyp_size);
  1518. if (l_ftyp_data == 00) {
  1519. opj_event_msg(p_manager, EVT_ERROR, "Not enough memory to handle ftyp data\n");
  1520. return OPJ_FALSE;
  1521. }
  1522. l_current_data_ptr = l_ftyp_data;
  1523. opj_write_bytes(l_current_data_ptr, l_ftyp_size, 4); /* box size */
  1524. l_current_data_ptr += 4;
  1525. opj_write_bytes(l_current_data_ptr, JP2_FTYP, 4); /* FTYP */
  1526. l_current_data_ptr += 4;
  1527. opj_write_bytes(l_current_data_ptr, jp2->brand, 4); /* BR */
  1528. l_current_data_ptr += 4;
  1529. opj_write_bytes(l_current_data_ptr, jp2->minversion, 4); /* MinV */
  1530. l_current_data_ptr += 4;
  1531. for (i = 0; i < jp2->numcl; i++) {
  1532. opj_write_bytes(l_current_data_ptr, jp2->cl[i], 4); /* CL */
  1533. }
  1534. l_result = (opj_stream_write_data(cio, l_ftyp_data, l_ftyp_size,
  1535. p_manager) == l_ftyp_size);
  1536. if (! l_result) {
  1537. opj_event_msg(p_manager, EVT_ERROR,
  1538. "Error while writing ftyp data to stream\n");
  1539. }
  1540. opj_free(l_ftyp_data);
  1541. return l_result;
  1542. }
  1543. static OPJ_BOOL opj_jp2_write_jp2c(opj_jp2_t *jp2,
  1544. opj_stream_private_t *cio,
  1545. opj_event_mgr_t * p_manager)
  1546. {
  1547. OPJ_OFF_T j2k_codestream_exit;
  1548. OPJ_BYTE l_data_header [8];
  1549. /* preconditions */
  1550. assert(jp2 != 00);
  1551. assert(cio != 00);
  1552. assert(p_manager != 00);
  1553. assert(opj_stream_has_seek(cio));
  1554. j2k_codestream_exit = opj_stream_tell(cio);
  1555. opj_write_bytes(l_data_header,
  1556. (OPJ_UINT32)(j2k_codestream_exit - jp2->j2k_codestream_offset),
  1557. 4); /* size of codestream */
  1558. opj_write_bytes(l_data_header + 4, JP2_JP2C,
  1559. 4); /* JP2C */
  1560. if (! opj_stream_seek(cio, jp2->j2k_codestream_offset, p_manager)) {
  1561. opj_event_msg(p_manager, EVT_ERROR, "Failed to seek in the stream.\n");
  1562. return OPJ_FALSE;
  1563. }
  1564. if (opj_stream_write_data(cio, l_data_header, 8, p_manager) != 8) {
  1565. opj_event_msg(p_manager, EVT_ERROR, "Failed to seek in the stream.\n");
  1566. return OPJ_FALSE;
  1567. }
  1568. if (! opj_stream_seek(cio, j2k_codestream_exit, p_manager)) {
  1569. opj_event_msg(p_manager, EVT_ERROR, "Failed to seek in the stream.\n");
  1570. return OPJ_FALSE;
  1571. }
  1572. return OPJ_TRUE;
  1573. }
  1574. static OPJ_BOOL opj_jp2_write_jp(opj_jp2_t *jp2,
  1575. opj_stream_private_t *cio,
  1576. opj_event_mgr_t * p_manager)
  1577. {
  1578. /* 12 bytes will be read */
  1579. OPJ_BYTE l_signature_data [12];
  1580. /* preconditions */
  1581. assert(cio != 00);
  1582. assert(jp2 != 00);
  1583. assert(p_manager != 00);
  1584. OPJ_UNUSED(jp2);
  1585. /* write box length */
  1586. opj_write_bytes(l_signature_data, 12, 4);
  1587. /* writes box type */
  1588. opj_write_bytes(l_signature_data + 4, JP2_JP, 4);
  1589. /* writes magic number*/
  1590. opj_write_bytes(l_signature_data + 8, 0x0d0a870a, 4);
  1591. if (opj_stream_write_data(cio, l_signature_data, 12, p_manager) != 12) {
  1592. return OPJ_FALSE;
  1593. }
  1594. return OPJ_TRUE;
  1595. }
  1596. /* ----------------------------------------------------------------------- */
  1597. /* JP2 decoder interface */
  1598. /* ----------------------------------------------------------------------- */
  1599. void opj_jp2_setup_decoder(opj_jp2_t *jp2, opj_dparameters_t *parameters)
  1600. {
  1601. /* setup the J2K codec */
  1602. opj_j2k_setup_decoder(jp2->j2k, parameters);
  1603. /* further JP2 initializations go here */
  1604. jp2->color.jp2_has_colr = 0;
  1605. jp2->ignore_pclr_cmap_cdef = parameters->flags &
  1606. OPJ_DPARAMETERS_IGNORE_PCLR_CMAP_CDEF_FLAG;
  1607. }
  1608. void opj_jp2_decoder_set_strict_mode(opj_jp2_t *jp2, OPJ_BOOL strict)
  1609. {
  1610. opj_j2k_decoder_set_strict_mode(jp2->j2k, strict);
  1611. }
  1612. OPJ_BOOL opj_jp2_set_threads(opj_jp2_t *jp2, OPJ_UINT32 num_threads)
  1613. {
  1614. return opj_j2k_set_threads(jp2->j2k, num_threads);
  1615. }
  1616. /* ----------------------------------------------------------------------- */
  1617. /* JP2 encoder interface */
  1618. /* ----------------------------------------------------------------------- */
  1619. OPJ_BOOL opj_jp2_setup_encoder(opj_jp2_t *jp2,
  1620. opj_cparameters_t *parameters,
  1621. opj_image_t *image,
  1622. opj_event_mgr_t * p_manager)
  1623. {
  1624. OPJ_UINT32 i;
  1625. OPJ_UINT32 depth_0;
  1626. OPJ_UINT32 sign;
  1627. OPJ_UINT32 alpha_count;
  1628. OPJ_UINT32 color_channels = 0U;
  1629. OPJ_UINT32 alpha_channel = 0U;
  1630. if (!jp2 || !parameters || !image) {
  1631. return OPJ_FALSE;
  1632. }
  1633. /* setup the J2K codec */
  1634. /* ------------------- */
  1635. /* Check if number of components respects standard */
  1636. if (image->numcomps < 1 || image->numcomps > 16384) {
  1637. opj_event_msg(p_manager, EVT_ERROR,
  1638. "Invalid number of components specified while setting up JP2 encoder\n");
  1639. return OPJ_FALSE;
  1640. }
  1641. if (opj_j2k_setup_encoder(jp2->j2k, parameters, image,
  1642. p_manager) == OPJ_FALSE) {
  1643. return OPJ_FALSE;
  1644. }
  1645. /* setup the JP2 codec */
  1646. /* ------------------- */
  1647. /* Profile box */
  1648. jp2->brand = JP2_JP2; /* BR */
  1649. jp2->minversion = 0; /* MinV */
  1650. jp2->numcl = 1;
  1651. jp2->cl = (OPJ_UINT32*) opj_malloc(jp2->numcl * sizeof(OPJ_UINT32));
  1652. if (!jp2->cl) {
  1653. opj_event_msg(p_manager, EVT_ERROR,
  1654. "Not enough memory when setup the JP2 encoder\n");
  1655. return OPJ_FALSE;
  1656. }
  1657. jp2->cl[0] = JP2_JP2; /* CL0 : JP2 */
  1658. /* Image Header box */
  1659. jp2->numcomps = image->numcomps; /* NC */
  1660. jp2->comps = (opj_jp2_comps_t*) opj_malloc(jp2->numcomps * sizeof(
  1661. opj_jp2_comps_t));
  1662. if (!jp2->comps) {
  1663. opj_event_msg(p_manager, EVT_ERROR,
  1664. "Not enough memory when setup the JP2 encoder\n");
  1665. /* Memory of jp2->cl will be freed by opj_jp2_destroy */
  1666. return OPJ_FALSE;
  1667. }
  1668. jp2->h = image->y1 - image->y0; /* HEIGHT */
  1669. jp2->w = image->x1 - image->x0; /* WIDTH */
  1670. /* BPC */
  1671. depth_0 = image->comps[0].prec - 1;
  1672. sign = image->comps[0].sgnd;
  1673. jp2->bpc = depth_0 + (sign << 7);
  1674. for (i = 1; i < image->numcomps; i++) {
  1675. OPJ_UINT32 depth = image->comps[i].prec - 1;
  1676. sign = image->comps[i].sgnd;
  1677. if (depth_0 != depth) {
  1678. jp2->bpc = 255;
  1679. }
  1680. }
  1681. jp2->C = 7; /* C : Always 7 */
  1682. jp2->UnkC = 0; /* UnkC, colorspace specified in colr box */
  1683. jp2->IPR = 0; /* IPR, no intellectual property */
  1684. /* BitsPerComponent box */
  1685. for (i = 0; i < image->numcomps; i++) {
  1686. jp2->comps[i].bpcc = image->comps[i].prec - 1 + (image->comps[i].sgnd << 7);
  1687. }
  1688. /* Colour Specification box */
  1689. if (image->icc_profile_len) {
  1690. jp2->meth = 2;
  1691. jp2->enumcs = 0;
  1692. } else {
  1693. jp2->meth = 1;
  1694. if (image->color_space == 1) {
  1695. jp2->enumcs = 16; /* sRGB as defined by IEC 61966-2-1 */
  1696. } else if (image->color_space == 2) {
  1697. jp2->enumcs = 17; /* greyscale */
  1698. } else if (image->color_space == 3) {
  1699. jp2->enumcs = 18; /* YUV */
  1700. }
  1701. }
  1702. /* Channel Definition box */
  1703. /* FIXME not provided by parameters */
  1704. /* We try to do what we can... */
  1705. alpha_count = 0U;
  1706. for (i = 0; i < image->numcomps; i++) {
  1707. if (image->comps[i].alpha != 0) {
  1708. alpha_count++;
  1709. alpha_channel = i;
  1710. }
  1711. }
  1712. if (alpha_count == 1U) { /* no way to deal with more than 1 alpha channel */
  1713. switch (jp2->enumcs) {
  1714. case 16:
  1715. case 18:
  1716. color_channels = 3;
  1717. break;
  1718. case 17:
  1719. color_channels = 1;
  1720. break;
  1721. default:
  1722. alpha_count = 0U;
  1723. break;
  1724. }
  1725. if (alpha_count == 0U) {
  1726. opj_event_msg(p_manager, EVT_WARNING,
  1727. "Alpha channel specified but unknown enumcs. No cdef box will be created.\n");
  1728. } else if (image->numcomps < (color_channels + 1)) {
  1729. opj_event_msg(p_manager, EVT_WARNING,
  1730. "Alpha channel specified but not enough image components for an automatic cdef box creation.\n");
  1731. alpha_count = 0U;
  1732. } else if ((OPJ_UINT32)alpha_channel < color_channels) {
  1733. opj_event_msg(p_manager, EVT_WARNING,
  1734. "Alpha channel position conflicts with color channel. No cdef box will be created.\n");
  1735. alpha_count = 0U;
  1736. }
  1737. } else if (alpha_count > 1) {
  1738. opj_event_msg(p_manager, EVT_WARNING,
  1739. "Multiple alpha channels specified. No cdef box will be created.\n");
  1740. }
  1741. if (alpha_count == 1U) { /* if here, we know what we can do */
  1742. jp2->color.jp2_cdef = (opj_jp2_cdef_t*)opj_malloc(sizeof(opj_jp2_cdef_t));
  1743. if (!jp2->color.jp2_cdef) {
  1744. opj_event_msg(p_manager, EVT_ERROR,
  1745. "Not enough memory to setup the JP2 encoder\n");
  1746. return OPJ_FALSE;
  1747. }
  1748. /* no memset needed, all values will be overwritten except if jp2->color.jp2_cdef->info allocation fails, */
  1749. /* in which case jp2->color.jp2_cdef->info will be NULL => valid for destruction */
  1750. jp2->color.jp2_cdef->info = (opj_jp2_cdef_info_t*) opj_malloc(
  1751. image->numcomps * sizeof(opj_jp2_cdef_info_t));
  1752. if (!jp2->color.jp2_cdef->info) {
  1753. /* memory will be freed by opj_jp2_destroy */
  1754. opj_event_msg(p_manager, EVT_ERROR,
  1755. "Not enough memory to setup the JP2 encoder\n");
  1756. return OPJ_FALSE;
  1757. }
  1758. jp2->color.jp2_cdef->n = (OPJ_UINT16)
  1759. image->numcomps; /* cast is valid : image->numcomps [1,16384] */
  1760. for (i = 0U; i < color_channels; i++) {
  1761. jp2->color.jp2_cdef->info[i].cn = (OPJ_UINT16)
  1762. i; /* cast is valid : image->numcomps [1,16384] */
  1763. jp2->color.jp2_cdef->info[i].typ = 0U;
  1764. jp2->color.jp2_cdef->info[i].asoc = (OPJ_UINT16)(i +
  1765. 1U); /* No overflow + cast is valid : image->numcomps [1,16384] */
  1766. }
  1767. for (; i < image->numcomps; i++) {
  1768. if (image->comps[i].alpha != 0) { /* we'll be here exactly once */
  1769. jp2->color.jp2_cdef->info[i].cn = (OPJ_UINT16)
  1770. i; /* cast is valid : image->numcomps [1,16384] */
  1771. jp2->color.jp2_cdef->info[i].typ = 1U; /* Opacity channel */
  1772. jp2->color.jp2_cdef->info[i].asoc =
  1773. 0U; /* Apply alpha channel to the whole image */
  1774. } else {
  1775. /* Unknown channel */
  1776. jp2->color.jp2_cdef->info[i].cn = (OPJ_UINT16)
  1777. i; /* cast is valid : image->numcomps [1,16384] */
  1778. jp2->color.jp2_cdef->info[i].typ = 65535U;
  1779. jp2->color.jp2_cdef->info[i].asoc = 65535U;
  1780. }
  1781. }
  1782. }
  1783. jp2->precedence = 0; /* PRECEDENCE */
  1784. jp2->approx = 0; /* APPROX */
  1785. jp2->jpip_on = parameters->jpip_on;
  1786. return OPJ_TRUE;
  1787. }
  1788. OPJ_BOOL opj_jp2_encode(opj_jp2_t *jp2,
  1789. opj_stream_private_t *stream,
  1790. opj_event_mgr_t * p_manager)
  1791. {
  1792. return opj_j2k_encode(jp2->j2k, stream, p_manager);
  1793. }
  1794. OPJ_BOOL opj_jp2_end_decompress(opj_jp2_t *jp2,
  1795. opj_stream_private_t *cio,
  1796. opj_event_mgr_t * p_manager
  1797. )
  1798. {
  1799. /* preconditions */
  1800. assert(jp2 != 00);
  1801. assert(cio != 00);
  1802. assert(p_manager != 00);
  1803. /* customization of the end encoding */
  1804. if (! opj_jp2_setup_end_header_reading(jp2, p_manager)) {
  1805. return OPJ_FALSE;
  1806. }
  1807. /* write header */
  1808. if (! opj_jp2_exec(jp2, jp2->m_procedure_list, cio, p_manager)) {
  1809. return OPJ_FALSE;
  1810. }
  1811. return opj_j2k_end_decompress(jp2->j2k, cio, p_manager);
  1812. }
  1813. OPJ_BOOL opj_jp2_end_compress(opj_jp2_t *jp2,
  1814. opj_stream_private_t *cio,
  1815. opj_event_mgr_t * p_manager
  1816. )
  1817. {
  1818. /* preconditions */
  1819. assert(jp2 != 00);
  1820. assert(cio != 00);
  1821. assert(p_manager != 00);
  1822. /* customization of the end encoding */
  1823. if (! opj_jp2_setup_end_header_writing(jp2, p_manager)) {
  1824. return OPJ_FALSE;
  1825. }
  1826. if (! opj_j2k_end_compress(jp2->j2k, cio, p_manager)) {
  1827. return OPJ_FALSE;
  1828. }
  1829. /* write header */
  1830. return opj_jp2_exec(jp2, jp2->m_procedure_list, cio, p_manager);
  1831. }
  1832. static OPJ_BOOL opj_jp2_setup_end_header_writing(opj_jp2_t *jp2,
  1833. opj_event_mgr_t * p_manager)
  1834. {
  1835. /* preconditions */
  1836. assert(jp2 != 00);
  1837. assert(p_manager != 00);
  1838. #ifdef USE_JPIP
  1839. if (jp2->jpip_on) {
  1840. if (! opj_procedure_list_add_procedure(jp2->m_procedure_list,
  1841. (opj_procedure)opj_jpip_write_iptr, p_manager)) {
  1842. return OPJ_FALSE;
  1843. }
  1844. }
  1845. #endif
  1846. if (! opj_procedure_list_add_procedure(jp2->m_procedure_list,
  1847. (opj_procedure)opj_jp2_write_jp2c, p_manager)) {
  1848. return OPJ_FALSE;
  1849. }
  1850. /* DEVELOPER CORNER, add your custom procedures */
  1851. #ifdef USE_JPIP
  1852. if (jp2->jpip_on) {
  1853. if (! opj_procedure_list_add_procedure(jp2->m_procedure_list,
  1854. (opj_procedure)opj_jpip_write_cidx, p_manager)) {
  1855. return OPJ_FALSE;
  1856. }
  1857. if (! opj_procedure_list_add_procedure(jp2->m_procedure_list,
  1858. (opj_procedure)opj_jpip_write_fidx, p_manager)) {
  1859. return OPJ_FALSE;
  1860. }
  1861. }
  1862. #endif
  1863. return OPJ_TRUE;
  1864. }
  1865. static OPJ_BOOL opj_jp2_setup_end_header_reading(opj_jp2_t *jp2,
  1866. opj_event_mgr_t * p_manager)
  1867. {
  1868. /* preconditions */
  1869. assert(jp2 != 00);
  1870. assert(p_manager != 00);
  1871. if (! opj_procedure_list_add_procedure(jp2->m_procedure_list,
  1872. (opj_procedure)opj_jp2_read_header_procedure, p_manager)) {
  1873. return OPJ_FALSE;
  1874. }
  1875. /* DEVELOPER CORNER, add your custom procedures */
  1876. return OPJ_TRUE;
  1877. }
  1878. static OPJ_BOOL opj_jp2_default_validation(opj_jp2_t * jp2,
  1879. opj_stream_private_t *cio,
  1880. opj_event_mgr_t * p_manager
  1881. )
  1882. {
  1883. OPJ_BOOL l_is_valid = OPJ_TRUE;
  1884. OPJ_UINT32 i;
  1885. /* preconditions */
  1886. assert(jp2 != 00);
  1887. assert(cio != 00);
  1888. assert(p_manager != 00);
  1889. OPJ_UNUSED(p_manager);
  1890. /* JPEG2000 codec validation */
  1891. /* STATE checking */
  1892. /* make sure the state is at 0 */
  1893. l_is_valid &= (jp2->jp2_state == JP2_STATE_NONE);
  1894. /* make sure not reading a jp2h ???? WEIRD */
  1895. l_is_valid &= (jp2->jp2_img_state == JP2_IMG_STATE_NONE);
  1896. /* POINTER validation */
  1897. /* make sure a j2k codec is present */
  1898. l_is_valid &= (jp2->j2k != 00);
  1899. /* make sure a procedure list is present */
  1900. l_is_valid &= (jp2->m_procedure_list != 00);
  1901. /* make sure a validation list is present */
  1902. l_is_valid &= (jp2->m_validation_list != 00);
  1903. /* PARAMETER VALIDATION */
  1904. /* number of components */
  1905. l_is_valid &= (jp2->numcl > 0);
  1906. /* width */
  1907. l_is_valid &= (jp2->h > 0);
  1908. /* height */
  1909. l_is_valid &= (jp2->w > 0);
  1910. /* precision */
  1911. for (i = 0; i < jp2->numcomps; ++i) {
  1912. l_is_valid &= ((jp2->comps[i].bpcc & 0x7FU) <
  1913. 38U); /* 0 is valid, ignore sign for check */
  1914. }
  1915. /* METH */
  1916. l_is_valid &= ((jp2->meth > 0) && (jp2->meth < 3));
  1917. /* stream validation */
  1918. /* back and forth is needed */
  1919. l_is_valid &= opj_stream_has_seek(cio);
  1920. return l_is_valid;
  1921. }
  1922. static OPJ_BOOL opj_jp2_read_header_procedure(opj_jp2_t *jp2,
  1923. opj_stream_private_t *stream,
  1924. opj_event_mgr_t * p_manager
  1925. )
  1926. {
  1927. opj_jp2_box_t box;
  1928. OPJ_UINT32 l_nb_bytes_read;
  1929. const opj_jp2_header_handler_t * l_current_handler;
  1930. const opj_jp2_header_handler_t * l_current_handler_misplaced;
  1931. OPJ_UINT32 l_last_data_size = OPJ_BOX_SIZE;
  1932. OPJ_UINT32 l_current_data_size;
  1933. OPJ_BYTE * l_current_data = 00;
  1934. /* preconditions */
  1935. assert(stream != 00);
  1936. assert(jp2 != 00);
  1937. assert(p_manager != 00);
  1938. l_current_data = (OPJ_BYTE*)opj_calloc(1, l_last_data_size);
  1939. if (l_current_data == 00) {
  1940. opj_event_msg(p_manager, EVT_ERROR,
  1941. "Not enough memory to handle jpeg2000 file header\n");
  1942. return OPJ_FALSE;
  1943. }
  1944. while (opj_jp2_read_boxhdr(&box, &l_nb_bytes_read, stream, p_manager)) {
  1945. /* is it the codestream box ? */
  1946. if (box.type == JP2_JP2C) {
  1947. if (jp2->jp2_state & JP2_STATE_HEADER) {
  1948. jp2->jp2_state |= JP2_STATE_CODESTREAM;
  1949. opj_free(l_current_data);
  1950. return OPJ_TRUE;
  1951. } else {
  1952. opj_event_msg(p_manager, EVT_ERROR, "bad placed jpeg codestream\n");
  1953. opj_free(l_current_data);
  1954. return OPJ_FALSE;
  1955. }
  1956. } else if (box.length == 0) {
  1957. opj_event_msg(p_manager, EVT_ERROR, "Cannot handle box of undefined sizes\n");
  1958. opj_free(l_current_data);
  1959. return OPJ_FALSE;
  1960. }
  1961. /* testcase 1851.pdf.SIGSEGV.ce9.948 */
  1962. else if (box.length < l_nb_bytes_read) {
  1963. opj_event_msg(p_manager, EVT_ERROR, "invalid box size %d (%x)\n", box.length,
  1964. box.type);
  1965. opj_free(l_current_data);
  1966. return OPJ_FALSE;
  1967. }
  1968. l_current_handler = opj_jp2_find_handler(box.type);
  1969. l_current_handler_misplaced = opj_jp2_img_find_handler(box.type);
  1970. l_current_data_size = box.length - l_nb_bytes_read;
  1971. if ((l_current_handler != 00) || (l_current_handler_misplaced != 00)) {
  1972. if (l_current_handler == 00) {
  1973. opj_event_msg(p_manager, EVT_WARNING,
  1974. "Found a misplaced '%c%c%c%c' box outside jp2h box\n",
  1975. (OPJ_BYTE)(box.type >> 24), (OPJ_BYTE)(box.type >> 16),
  1976. (OPJ_BYTE)(box.type >> 8), (OPJ_BYTE)(box.type >> 0));
  1977. if (jp2->jp2_state & JP2_STATE_HEADER) {
  1978. /* read anyway, we already have jp2h */
  1979. l_current_handler = l_current_handler_misplaced;
  1980. } else {
  1981. opj_event_msg(p_manager, EVT_WARNING,
  1982. "JPEG2000 Header box not read yet, '%c%c%c%c' box will be ignored\n",
  1983. (OPJ_BYTE)(box.type >> 24), (OPJ_BYTE)(box.type >> 16),
  1984. (OPJ_BYTE)(box.type >> 8), (OPJ_BYTE)(box.type >> 0));
  1985. jp2->jp2_state |= JP2_STATE_UNKNOWN;
  1986. if (opj_stream_skip(stream, l_current_data_size,
  1987. p_manager) != l_current_data_size) {
  1988. opj_event_msg(p_manager, EVT_ERROR,
  1989. "Problem with skipping JPEG2000 box, stream error\n");
  1990. opj_free(l_current_data);
  1991. return OPJ_FALSE;
  1992. }
  1993. continue;
  1994. }
  1995. }
  1996. if ((OPJ_OFF_T)l_current_data_size > opj_stream_get_number_byte_left(stream)) {
  1997. /* do not even try to malloc if we can't read */
  1998. opj_event_msg(p_manager, EVT_ERROR,
  1999. "Invalid box size %d for box '%c%c%c%c'. Need %d bytes, %d bytes remaining \n",
  2000. box.length, (OPJ_BYTE)(box.type >> 24), (OPJ_BYTE)(box.type >> 16),
  2001. (OPJ_BYTE)(box.type >> 8), (OPJ_BYTE)(box.type >> 0), l_current_data_size,
  2002. (OPJ_UINT32)opj_stream_get_number_byte_left(stream));
  2003. opj_free(l_current_data);
  2004. return OPJ_FALSE;
  2005. }
  2006. if (l_current_data_size > l_last_data_size) {
  2007. OPJ_BYTE* new_current_data = (OPJ_BYTE*)opj_realloc(l_current_data,
  2008. l_current_data_size);
  2009. if (!new_current_data) {
  2010. opj_free(l_current_data);
  2011. opj_event_msg(p_manager, EVT_ERROR,
  2012. "Not enough memory to handle jpeg2000 box\n");
  2013. return OPJ_FALSE;
  2014. }
  2015. l_current_data = new_current_data;
  2016. l_last_data_size = l_current_data_size;
  2017. }
  2018. l_nb_bytes_read = (OPJ_UINT32)opj_stream_read_data(stream, l_current_data,
  2019. l_current_data_size, p_manager);
  2020. if (l_nb_bytes_read != l_current_data_size) {
  2021. opj_event_msg(p_manager, EVT_ERROR,
  2022. "Problem with reading JPEG2000 box, stream error\n");
  2023. opj_free(l_current_data);
  2024. return OPJ_FALSE;
  2025. }
  2026. if (! l_current_handler->handler(jp2, l_current_data, l_current_data_size,
  2027. p_manager)) {
  2028. opj_free(l_current_data);
  2029. return OPJ_FALSE;
  2030. }
  2031. } else {
  2032. if (!(jp2->jp2_state & JP2_STATE_SIGNATURE)) {
  2033. opj_event_msg(p_manager, EVT_ERROR,
  2034. "Malformed JP2 file format: first box must be JPEG 2000 signature box\n");
  2035. opj_free(l_current_data);
  2036. return OPJ_FALSE;
  2037. }
  2038. if (!(jp2->jp2_state & JP2_STATE_FILE_TYPE)) {
  2039. opj_event_msg(p_manager, EVT_ERROR,
  2040. "Malformed JP2 file format: second box must be file type box\n");
  2041. opj_free(l_current_data);
  2042. return OPJ_FALSE;
  2043. }
  2044. jp2->jp2_state |= JP2_STATE_UNKNOWN;
  2045. if (opj_stream_skip(stream, l_current_data_size,
  2046. p_manager) != l_current_data_size) {
  2047. if (jp2->jp2_state & JP2_STATE_CODESTREAM) {
  2048. /* If we already read the codestream, do not error out */
  2049. /* Needed for data/input/nonregression/issue254.jp2 */
  2050. opj_event_msg(p_manager, EVT_WARNING,
  2051. "Problem with skipping JPEG2000 box, stream error\n");
  2052. opj_free(l_current_data);
  2053. return OPJ_TRUE;
  2054. } else {
  2055. opj_event_msg(p_manager, EVT_ERROR,
  2056. "Problem with skipping JPEG2000 box, stream error\n");
  2057. opj_free(l_current_data);
  2058. return OPJ_FALSE;
  2059. }
  2060. }
  2061. }
  2062. }
  2063. opj_free(l_current_data);
  2064. return OPJ_TRUE;
  2065. }
  2066. /**
  2067. * Executes the given procedures on the given codec.
  2068. *
  2069. * @param p_procedure_list the list of procedures to execute
  2070. * @param jp2 the jpeg2000 file codec to execute the procedures on.
  2071. * @param stream the stream to execute the procedures on.
  2072. * @param p_manager the user manager.
  2073. *
  2074. * @return true if all the procedures were successfully executed.
  2075. */
  2076. static OPJ_BOOL opj_jp2_exec(opj_jp2_t * jp2,
  2077. opj_procedure_list_t * p_procedure_list,
  2078. opj_stream_private_t *stream,
  2079. opj_event_mgr_t * p_manager
  2080. )
  2081. {
  2082. OPJ_BOOL(** l_procedure)(opj_jp2_t * jp2, opj_stream_private_t *,
  2083. opj_event_mgr_t *) = 00;
  2084. OPJ_BOOL l_result = OPJ_TRUE;
  2085. OPJ_UINT32 l_nb_proc, i;
  2086. /* preconditions */
  2087. assert(p_procedure_list != 00);
  2088. assert(jp2 != 00);
  2089. assert(stream != 00);
  2090. assert(p_manager != 00);
  2091. l_nb_proc = opj_procedure_list_get_nb_procedures(p_procedure_list);
  2092. l_procedure = (OPJ_BOOL(**)(opj_jp2_t * jp2, opj_stream_private_t *,
  2093. opj_event_mgr_t *)) opj_procedure_list_get_first_procedure(p_procedure_list);
  2094. for (i = 0; i < l_nb_proc; ++i) {
  2095. l_result = l_result && (*l_procedure)(jp2, stream, p_manager);
  2096. ++l_procedure;
  2097. }
  2098. /* and clear the procedure list at the end. */
  2099. opj_procedure_list_clear(p_procedure_list);
  2100. return l_result;
  2101. }
  2102. OPJ_BOOL opj_jp2_start_compress(opj_jp2_t *jp2,
  2103. opj_stream_private_t *stream,
  2104. opj_image_t * p_image,
  2105. opj_event_mgr_t * p_manager
  2106. )
  2107. {
  2108. /* preconditions */
  2109. assert(jp2 != 00);
  2110. assert(stream != 00);
  2111. assert(p_manager != 00);
  2112. /* customization of the validation */
  2113. if (! opj_jp2_setup_encoding_validation(jp2, p_manager)) {
  2114. return OPJ_FALSE;
  2115. }
  2116. /* validation of the parameters codec */
  2117. if (! opj_jp2_exec(jp2, jp2->m_validation_list, stream, p_manager)) {
  2118. return OPJ_FALSE;
  2119. }
  2120. /* customization of the encoding */
  2121. if (! opj_jp2_setup_header_writing(jp2, p_manager)) {
  2122. return OPJ_FALSE;
  2123. }
  2124. /* write header */
  2125. if (! opj_jp2_exec(jp2, jp2->m_procedure_list, stream, p_manager)) {
  2126. return OPJ_FALSE;
  2127. }
  2128. return opj_j2k_start_compress(jp2->j2k, stream, p_image, p_manager);
  2129. }
  2130. static const opj_jp2_header_handler_t * opj_jp2_find_handler(OPJ_UINT32 p_id)
  2131. {
  2132. OPJ_UINT32 i, l_handler_size = sizeof(jp2_header) / sizeof(
  2133. opj_jp2_header_handler_t);
  2134. for (i = 0; i < l_handler_size; ++i) {
  2135. if (jp2_header[i].id == p_id) {
  2136. return &jp2_header[i];
  2137. }
  2138. }
  2139. return NULL;
  2140. }
  2141. /**
  2142. * Finds the image execution function related to the given box id.
  2143. *
  2144. * @param p_id the id of the handler to fetch.
  2145. *
  2146. * @return the given handler or 00 if it could not be found.
  2147. */
  2148. static const opj_jp2_header_handler_t * opj_jp2_img_find_handler(
  2149. OPJ_UINT32 p_id)
  2150. {
  2151. OPJ_UINT32 i, l_handler_size = sizeof(jp2_img_header) / sizeof(
  2152. opj_jp2_header_handler_t);
  2153. for (i = 0; i < l_handler_size; ++i) {
  2154. if (jp2_img_header[i].id == p_id) {
  2155. return &jp2_img_header[i];
  2156. }
  2157. }
  2158. return NULL;
  2159. }
  2160. /**
  2161. * Reads a jpeg2000 file signature box.
  2162. *
  2163. * @param p_header_data the data contained in the signature box.
  2164. * @param jp2 the jpeg2000 file codec.
  2165. * @param p_header_size the size of the data contained in the signature box.
  2166. * @param p_manager the user event manager.
  2167. *
  2168. * @return true if the file signature box is valid.
  2169. */
  2170. static OPJ_BOOL opj_jp2_read_jp(opj_jp2_t *jp2,
  2171. OPJ_BYTE * p_header_data,
  2172. OPJ_UINT32 p_header_size,
  2173. opj_event_mgr_t * p_manager
  2174. )
  2175. {
  2176. OPJ_UINT32 l_magic_number;
  2177. /* preconditions */
  2178. assert(p_header_data != 00);
  2179. assert(jp2 != 00);
  2180. assert(p_manager != 00);
  2181. if (jp2->jp2_state != JP2_STATE_NONE) {
  2182. opj_event_msg(p_manager, EVT_ERROR,
  2183. "The signature box must be the first box in the file.\n");
  2184. return OPJ_FALSE;
  2185. }
  2186. /* assure length of data is correct (4 -> magic number) */
  2187. if (p_header_size != 4) {
  2188. opj_event_msg(p_manager, EVT_ERROR, "Error with JP signature Box size\n");
  2189. return OPJ_FALSE;
  2190. }
  2191. /* rearrange data */
  2192. opj_read_bytes(p_header_data, &l_magic_number, 4);
  2193. if (l_magic_number != 0x0d0a870a) {
  2194. opj_event_msg(p_manager, EVT_ERROR,
  2195. "Error with JP Signature : bad magic number\n");
  2196. return OPJ_FALSE;
  2197. }
  2198. jp2->jp2_state |= JP2_STATE_SIGNATURE;
  2199. return OPJ_TRUE;
  2200. }
  2201. /**
  2202. * Reads a a FTYP box - File type box
  2203. *
  2204. * @param p_header_data the data contained in the FTYP box.
  2205. * @param jp2 the jpeg2000 file codec.
  2206. * @param p_header_size the size of the data contained in the FTYP box.
  2207. * @param p_manager the user event manager.
  2208. *
  2209. * @return true if the FTYP box is valid.
  2210. */
  2211. static OPJ_BOOL opj_jp2_read_ftyp(opj_jp2_t *jp2,
  2212. OPJ_BYTE * p_header_data,
  2213. OPJ_UINT32 p_header_size,
  2214. opj_event_mgr_t * p_manager
  2215. )
  2216. {
  2217. OPJ_UINT32 i, l_remaining_bytes;
  2218. /* preconditions */
  2219. assert(p_header_data != 00);
  2220. assert(jp2 != 00);
  2221. assert(p_manager != 00);
  2222. if (jp2->jp2_state != JP2_STATE_SIGNATURE) {
  2223. opj_event_msg(p_manager, EVT_ERROR,
  2224. "The ftyp box must be the second box in the file.\n");
  2225. return OPJ_FALSE;
  2226. }
  2227. /* assure length of data is correct */
  2228. if (p_header_size < 8) {
  2229. opj_event_msg(p_manager, EVT_ERROR, "Error with FTYP signature Box size\n");
  2230. return OPJ_FALSE;
  2231. }
  2232. opj_read_bytes(p_header_data, &jp2->brand, 4); /* BR */
  2233. p_header_data += 4;
  2234. opj_read_bytes(p_header_data, &jp2->minversion, 4); /* MinV */
  2235. p_header_data += 4;
  2236. l_remaining_bytes = p_header_size - 8;
  2237. /* the number of remaining bytes should be a multiple of 4 */
  2238. if ((l_remaining_bytes & 0x3) != 0) {
  2239. opj_event_msg(p_manager, EVT_ERROR, "Error with FTYP signature Box size\n");
  2240. return OPJ_FALSE;
  2241. }
  2242. /* div by 4 */
  2243. jp2->numcl = l_remaining_bytes >> 2;
  2244. if (jp2->numcl) {
  2245. jp2->cl = (OPJ_UINT32 *) opj_calloc(jp2->numcl, sizeof(OPJ_UINT32));
  2246. if (jp2->cl == 00) {
  2247. opj_event_msg(p_manager, EVT_ERROR, "Not enough memory with FTYP Box\n");
  2248. return OPJ_FALSE;
  2249. }
  2250. }
  2251. for (i = 0; i < jp2->numcl; ++i) {
  2252. opj_read_bytes(p_header_data, &jp2->cl[i], 4); /* CLi */
  2253. p_header_data += 4;
  2254. }
  2255. jp2->jp2_state |= JP2_STATE_FILE_TYPE;
  2256. return OPJ_TRUE;
  2257. }
  2258. static OPJ_BOOL opj_jp2_skip_jp2c(opj_jp2_t *jp2,
  2259. opj_stream_private_t *stream,
  2260. opj_event_mgr_t * p_manager)
  2261. {
  2262. /* preconditions */
  2263. assert(jp2 != 00);
  2264. assert(stream != 00);
  2265. assert(p_manager != 00);
  2266. jp2->j2k_codestream_offset = opj_stream_tell(stream);
  2267. if (opj_stream_skip(stream, 8, p_manager) != 8) {
  2268. return OPJ_FALSE;
  2269. }
  2270. return OPJ_TRUE;
  2271. }
  2272. static OPJ_BOOL opj_jpip_skip_iptr(opj_jp2_t *jp2,
  2273. opj_stream_private_t *stream,
  2274. opj_event_mgr_t * p_manager)
  2275. {
  2276. /* preconditions */
  2277. assert(jp2 != 00);
  2278. assert(stream != 00);
  2279. assert(p_manager != 00);
  2280. jp2->jpip_iptr_offset = opj_stream_tell(stream);
  2281. if (opj_stream_skip(stream, 24, p_manager) != 24) {
  2282. return OPJ_FALSE;
  2283. }
  2284. return OPJ_TRUE;
  2285. }
  2286. /**
  2287. * Reads the Jpeg2000 file Header box - JP2 Header box (warning, this is a super box).
  2288. *
  2289. * @param p_header_data the data contained in the file header box.
  2290. * @param jp2 the jpeg2000 file codec.
  2291. * @param p_header_size the size of the data contained in the file header box.
  2292. * @param p_manager the user event manager.
  2293. *
  2294. * @return true if the JP2 Header box was successfully recognized.
  2295. */
  2296. static OPJ_BOOL opj_jp2_read_jp2h(opj_jp2_t *jp2,
  2297. OPJ_BYTE *p_header_data,
  2298. OPJ_UINT32 p_header_size,
  2299. opj_event_mgr_t * p_manager
  2300. )
  2301. {
  2302. OPJ_UINT32 l_box_size = 0, l_current_data_size = 0;
  2303. opj_jp2_box_t box;
  2304. const opj_jp2_header_handler_t * l_current_handler;
  2305. OPJ_BOOL l_has_ihdr = 0;
  2306. /* preconditions */
  2307. assert(p_header_data != 00);
  2308. assert(jp2 != 00);
  2309. assert(p_manager != 00);
  2310. /* make sure the box is well placed */
  2311. if ((jp2->jp2_state & JP2_STATE_FILE_TYPE) != JP2_STATE_FILE_TYPE) {
  2312. opj_event_msg(p_manager, EVT_ERROR,
  2313. "The box must be the first box in the file.\n");
  2314. return OPJ_FALSE;
  2315. }
  2316. jp2->jp2_img_state = JP2_IMG_STATE_NONE;
  2317. /* iterate while remaining data */
  2318. while (p_header_size > 0) {
  2319. if (! opj_jp2_read_boxhdr_char(&box, p_header_data, &l_box_size, p_header_size,
  2320. p_manager)) {
  2321. opj_event_msg(p_manager, EVT_ERROR,
  2322. "Stream error while reading JP2 Header box\n");
  2323. return OPJ_FALSE;
  2324. }
  2325. if (box.length > p_header_size) {
  2326. opj_event_msg(p_manager, EVT_ERROR,
  2327. "Stream error while reading JP2 Header box: box length is inconsistent.\n");
  2328. return OPJ_FALSE;
  2329. }
  2330. l_current_handler = opj_jp2_img_find_handler(box.type);
  2331. l_current_data_size = box.length - l_box_size;
  2332. p_header_data += l_box_size;
  2333. if (l_current_handler != 00) {
  2334. if (! l_current_handler->handler(jp2, p_header_data, l_current_data_size,
  2335. p_manager)) {
  2336. return OPJ_FALSE;
  2337. }
  2338. } else {
  2339. jp2->jp2_img_state |= JP2_IMG_STATE_UNKNOWN;
  2340. }
  2341. if (box.type == JP2_IHDR) {
  2342. l_has_ihdr = 1;
  2343. }
  2344. p_header_data += l_current_data_size;
  2345. p_header_size -= box.length;
  2346. }
  2347. if (l_has_ihdr == 0) {
  2348. opj_event_msg(p_manager, EVT_ERROR,
  2349. "Stream error while reading JP2 Header box: no 'ihdr' box.\n");
  2350. return OPJ_FALSE;
  2351. }
  2352. jp2->jp2_state |= JP2_STATE_HEADER;
  2353. jp2->has_jp2h = 1;
  2354. return OPJ_TRUE;
  2355. }
  2356. static OPJ_BOOL opj_jp2_read_boxhdr_char(opj_jp2_box_t *box,
  2357. OPJ_BYTE * p_data,
  2358. OPJ_UINT32 * p_number_bytes_read,
  2359. OPJ_UINT32 p_box_max_size,
  2360. opj_event_mgr_t * p_manager
  2361. )
  2362. {
  2363. OPJ_UINT32 l_value;
  2364. /* preconditions */
  2365. assert(p_data != 00);
  2366. assert(box != 00);
  2367. assert(p_number_bytes_read != 00);
  2368. assert(p_manager != 00);
  2369. if (p_box_max_size < 8) {
  2370. opj_event_msg(p_manager, EVT_ERROR, "Cannot handle box of less than 8 bytes\n");
  2371. return OPJ_FALSE;
  2372. }
  2373. /* process read data */
  2374. opj_read_bytes(p_data, &l_value, 4);
  2375. p_data += 4;
  2376. box->length = (OPJ_UINT32)(l_value);
  2377. opj_read_bytes(p_data, &l_value, 4);
  2378. p_data += 4;
  2379. box->type = (OPJ_UINT32)(l_value);
  2380. *p_number_bytes_read = 8;
  2381. /* do we have a "special very large box ?" */
  2382. /* read then the XLBox */
  2383. if (box->length == 1) {
  2384. OPJ_UINT32 l_xl_part_size;
  2385. if (p_box_max_size < 16) {
  2386. opj_event_msg(p_manager, EVT_ERROR,
  2387. "Cannot handle XL box of less than 16 bytes\n");
  2388. return OPJ_FALSE;
  2389. }
  2390. opj_read_bytes(p_data, &l_xl_part_size, 4);
  2391. p_data += 4;
  2392. *p_number_bytes_read += 4;
  2393. if (l_xl_part_size != 0) {
  2394. opj_event_msg(p_manager, EVT_ERROR,
  2395. "Cannot handle box sizes higher than 2^32\n");
  2396. return OPJ_FALSE;
  2397. }
  2398. opj_read_bytes(p_data, &l_value, 4);
  2399. *p_number_bytes_read += 4;
  2400. box->length = (OPJ_UINT32)(l_value);
  2401. if (box->length == 0) {
  2402. opj_event_msg(p_manager, EVT_ERROR, "Cannot handle box of undefined sizes\n");
  2403. return OPJ_FALSE;
  2404. }
  2405. } else if (box->length == 0) {
  2406. opj_event_msg(p_manager, EVT_ERROR, "Cannot handle box of undefined sizes\n");
  2407. return OPJ_FALSE;
  2408. }
  2409. if (box->length < *p_number_bytes_read) {
  2410. opj_event_msg(p_manager, EVT_ERROR, "Box length is inconsistent.\n");
  2411. return OPJ_FALSE;
  2412. }
  2413. return OPJ_TRUE;
  2414. }
  2415. OPJ_BOOL opj_jp2_read_header(opj_stream_private_t *p_stream,
  2416. opj_jp2_t *jp2,
  2417. opj_image_t ** p_image,
  2418. opj_event_mgr_t * p_manager
  2419. )
  2420. {
  2421. int ret;
  2422. /* preconditions */
  2423. assert(jp2 != 00);
  2424. assert(p_stream != 00);
  2425. assert(p_manager != 00);
  2426. /* customization of the validation */
  2427. if (! opj_jp2_setup_decoding_validation(jp2, p_manager)) {
  2428. return OPJ_FALSE;
  2429. }
  2430. /* customization of the encoding */
  2431. if (! opj_jp2_setup_header_reading(jp2, p_manager)) {
  2432. return OPJ_FALSE;
  2433. }
  2434. /* validation of the parameters codec */
  2435. if (! opj_jp2_exec(jp2, jp2->m_validation_list, p_stream, p_manager)) {
  2436. return OPJ_FALSE;
  2437. }
  2438. /* read header */
  2439. if (! opj_jp2_exec(jp2, jp2->m_procedure_list, p_stream, p_manager)) {
  2440. return OPJ_FALSE;
  2441. }
  2442. if (jp2->has_jp2h == 0) {
  2443. opj_event_msg(p_manager, EVT_ERROR, "JP2H box missing. Required.\n");
  2444. return OPJ_FALSE;
  2445. }
  2446. if (jp2->has_ihdr == 0) {
  2447. opj_event_msg(p_manager, EVT_ERROR, "IHDR box_missing. Required.\n");
  2448. return OPJ_FALSE;
  2449. }
  2450. ret = opj_j2k_read_header(p_stream,
  2451. jp2->j2k,
  2452. p_image,
  2453. p_manager);
  2454. if (p_image && *p_image) {
  2455. /* Set Image Color Space */
  2456. if (jp2->enumcs == 16) {
  2457. (*p_image)->color_space = OPJ_CLRSPC_SRGB;
  2458. } else if (jp2->enumcs == 17) {
  2459. (*p_image)->color_space = OPJ_CLRSPC_GRAY;
  2460. } else if (jp2->enumcs == 18) {
  2461. (*p_image)->color_space = OPJ_CLRSPC_SYCC;
  2462. } else if (jp2->enumcs == 24) {
  2463. (*p_image)->color_space = OPJ_CLRSPC_EYCC;
  2464. } else if (jp2->enumcs == 12) {
  2465. (*p_image)->color_space = OPJ_CLRSPC_CMYK;
  2466. } else {
  2467. (*p_image)->color_space = OPJ_CLRSPC_UNKNOWN;
  2468. }
  2469. if (jp2->color.icc_profile_buf) {
  2470. (*p_image)->icc_profile_buf = jp2->color.icc_profile_buf;
  2471. (*p_image)->icc_profile_len = jp2->color.icc_profile_len;
  2472. jp2->color.icc_profile_buf = NULL;
  2473. }
  2474. }
  2475. return ret;
  2476. }
  2477. static OPJ_BOOL opj_jp2_setup_encoding_validation(opj_jp2_t *jp2,
  2478. opj_event_mgr_t * p_manager)
  2479. {
  2480. /* preconditions */
  2481. assert(jp2 != 00);
  2482. assert(p_manager != 00);
  2483. if (! opj_procedure_list_add_procedure(jp2->m_validation_list,
  2484. (opj_procedure)opj_jp2_default_validation, p_manager)) {
  2485. return OPJ_FALSE;
  2486. }
  2487. /* DEVELOPER CORNER, add your custom validation procedure */
  2488. return OPJ_TRUE;
  2489. }
  2490. static OPJ_BOOL opj_jp2_setup_decoding_validation(opj_jp2_t *jp2,
  2491. opj_event_mgr_t * p_manager)
  2492. {
  2493. /* preconditions */
  2494. assert(jp2 != 00);
  2495. assert(p_manager != 00);
  2496. OPJ_UNUSED(jp2);
  2497. OPJ_UNUSED(p_manager);
  2498. /* DEVELOPER CORNER, add your custom validation procedure */
  2499. return OPJ_TRUE;
  2500. }
  2501. static OPJ_BOOL opj_jp2_setup_header_writing(opj_jp2_t *jp2,
  2502. opj_event_mgr_t * p_manager)
  2503. {
  2504. /* preconditions */
  2505. assert(jp2 != 00);
  2506. assert(p_manager != 00);
  2507. if (! opj_procedure_list_add_procedure(jp2->m_procedure_list,
  2508. (opj_procedure)opj_jp2_write_jp, p_manager)) {
  2509. return OPJ_FALSE;
  2510. }
  2511. if (! opj_procedure_list_add_procedure(jp2->m_procedure_list,
  2512. (opj_procedure)opj_jp2_write_ftyp, p_manager)) {
  2513. return OPJ_FALSE;
  2514. }
  2515. if (! opj_procedure_list_add_procedure(jp2->m_procedure_list,
  2516. (opj_procedure)opj_jp2_write_jp2h, p_manager)) {
  2517. return OPJ_FALSE;
  2518. }
  2519. if (jp2->jpip_on) {
  2520. if (! opj_procedure_list_add_procedure(jp2->m_procedure_list,
  2521. (opj_procedure)opj_jpip_skip_iptr, p_manager)) {
  2522. return OPJ_FALSE;
  2523. }
  2524. }
  2525. if (! opj_procedure_list_add_procedure(jp2->m_procedure_list,
  2526. (opj_procedure)opj_jp2_skip_jp2c, p_manager)) {
  2527. return OPJ_FALSE;
  2528. }
  2529. /* DEVELOPER CORNER, insert your custom procedures */
  2530. return OPJ_TRUE;
  2531. }
  2532. static OPJ_BOOL opj_jp2_setup_header_reading(opj_jp2_t *jp2,
  2533. opj_event_mgr_t * p_manager)
  2534. {
  2535. /* preconditions */
  2536. assert(jp2 != 00);
  2537. assert(p_manager != 00);
  2538. if (! opj_procedure_list_add_procedure(jp2->m_procedure_list,
  2539. (opj_procedure)opj_jp2_read_header_procedure, p_manager)) {
  2540. return OPJ_FALSE;
  2541. }
  2542. /* DEVELOPER CORNER, add your custom procedures */
  2543. return OPJ_TRUE;
  2544. }
  2545. OPJ_BOOL opj_jp2_read_tile_header(opj_jp2_t * p_jp2,
  2546. OPJ_UINT32 * p_tile_index,
  2547. OPJ_UINT32 * p_data_size,
  2548. OPJ_INT32 * p_tile_x0,
  2549. OPJ_INT32 * p_tile_y0,
  2550. OPJ_INT32 * p_tile_x1,
  2551. OPJ_INT32 * p_tile_y1,
  2552. OPJ_UINT32 * p_nb_comps,
  2553. OPJ_BOOL * p_go_on,
  2554. opj_stream_private_t *p_stream,
  2555. opj_event_mgr_t * p_manager
  2556. )
  2557. {
  2558. return opj_j2k_read_tile_header(p_jp2->j2k,
  2559. p_tile_index,
  2560. p_data_size,
  2561. p_tile_x0, p_tile_y0,
  2562. p_tile_x1, p_tile_y1,
  2563. p_nb_comps,
  2564. p_go_on,
  2565. p_stream,
  2566. p_manager);
  2567. }
  2568. OPJ_BOOL opj_jp2_write_tile(opj_jp2_t *p_jp2,
  2569. OPJ_UINT32 p_tile_index,
  2570. OPJ_BYTE * p_data,
  2571. OPJ_UINT32 p_data_size,
  2572. opj_stream_private_t *p_stream,
  2573. opj_event_mgr_t * p_manager
  2574. )
  2575. {
  2576. return opj_j2k_write_tile(p_jp2->j2k, p_tile_index, p_data, p_data_size,
  2577. p_stream, p_manager);
  2578. }
  2579. OPJ_BOOL opj_jp2_decode_tile(opj_jp2_t * p_jp2,
  2580. OPJ_UINT32 p_tile_index,
  2581. OPJ_BYTE * p_data,
  2582. OPJ_UINT32 p_data_size,
  2583. opj_stream_private_t *p_stream,
  2584. opj_event_mgr_t * p_manager
  2585. )
  2586. {
  2587. return opj_j2k_decode_tile(p_jp2->j2k, p_tile_index, p_data, p_data_size,
  2588. p_stream, p_manager);
  2589. }
  2590. void opj_jp2_destroy(opj_jp2_t *jp2)
  2591. {
  2592. if (jp2) {
  2593. /* destroy the J2K codec */
  2594. opj_j2k_destroy(jp2->j2k);
  2595. jp2->j2k = 00;
  2596. if (jp2->comps) {
  2597. opj_free(jp2->comps);
  2598. jp2->comps = 00;
  2599. }
  2600. if (jp2->cl) {
  2601. opj_free(jp2->cl);
  2602. jp2->cl = 00;
  2603. }
  2604. if (jp2->color.icc_profile_buf) {
  2605. opj_free(jp2->color.icc_profile_buf);
  2606. jp2->color.icc_profile_buf = 00;
  2607. }
  2608. if (jp2->color.jp2_cdef) {
  2609. if (jp2->color.jp2_cdef->info) {
  2610. opj_free(jp2->color.jp2_cdef->info);
  2611. jp2->color.jp2_cdef->info = NULL;
  2612. }
  2613. opj_free(jp2->color.jp2_cdef);
  2614. jp2->color.jp2_cdef = 00;
  2615. }
  2616. if (jp2->color.jp2_pclr) {
  2617. if (jp2->color.jp2_pclr->cmap) {
  2618. opj_free(jp2->color.jp2_pclr->cmap);
  2619. jp2->color.jp2_pclr->cmap = NULL;
  2620. }
  2621. if (jp2->color.jp2_pclr->channel_sign) {
  2622. opj_free(jp2->color.jp2_pclr->channel_sign);
  2623. jp2->color.jp2_pclr->channel_sign = NULL;
  2624. }
  2625. if (jp2->color.jp2_pclr->channel_size) {
  2626. opj_free(jp2->color.jp2_pclr->channel_size);
  2627. jp2->color.jp2_pclr->channel_size = NULL;
  2628. }
  2629. if (jp2->color.jp2_pclr->entries) {
  2630. opj_free(jp2->color.jp2_pclr->entries);
  2631. jp2->color.jp2_pclr->entries = NULL;
  2632. }
  2633. opj_free(jp2->color.jp2_pclr);
  2634. jp2->color.jp2_pclr = 00;
  2635. }
  2636. if (jp2->m_validation_list) {
  2637. opj_procedure_list_destroy(jp2->m_validation_list);
  2638. jp2->m_validation_list = 00;
  2639. }
  2640. if (jp2->m_procedure_list) {
  2641. opj_procedure_list_destroy(jp2->m_procedure_list);
  2642. jp2->m_procedure_list = 00;
  2643. }
  2644. opj_free(jp2);
  2645. }
  2646. }
  2647. OPJ_BOOL opj_jp2_set_decoded_components(opj_jp2_t *p_jp2,
  2648. OPJ_UINT32 numcomps,
  2649. const OPJ_UINT32* comps_indices,
  2650. opj_event_mgr_t * p_manager)
  2651. {
  2652. return opj_j2k_set_decoded_components(p_jp2->j2k,
  2653. numcomps, comps_indices,
  2654. p_manager);
  2655. }
  2656. OPJ_BOOL opj_jp2_set_decode_area(opj_jp2_t *p_jp2,
  2657. opj_image_t* p_image,
  2658. OPJ_INT32 p_start_x, OPJ_INT32 p_start_y,
  2659. OPJ_INT32 p_end_x, OPJ_INT32 p_end_y,
  2660. opj_event_mgr_t * p_manager
  2661. )
  2662. {
  2663. return opj_j2k_set_decode_area(p_jp2->j2k, p_image, p_start_x, p_start_y,
  2664. p_end_x, p_end_y, p_manager);
  2665. }
  2666. OPJ_BOOL opj_jp2_get_tile(opj_jp2_t *p_jp2,
  2667. opj_stream_private_t *p_stream,
  2668. opj_image_t* p_image,
  2669. opj_event_mgr_t * p_manager,
  2670. OPJ_UINT32 tile_index
  2671. )
  2672. {
  2673. if (!p_image) {
  2674. return OPJ_FALSE;
  2675. }
  2676. opj_event_msg(p_manager, EVT_WARNING,
  2677. "JP2 box which are after the codestream will not be read by this function.\n");
  2678. if (! opj_j2k_get_tile(p_jp2->j2k, p_stream, p_image, p_manager, tile_index)) {
  2679. opj_event_msg(p_manager, EVT_ERROR,
  2680. "Failed to decode the codestream in the JP2 file\n");
  2681. return OPJ_FALSE;
  2682. }
  2683. return opj_jp2_apply_color_postprocessing(p_jp2, p_image, p_manager);
  2684. }
  2685. /* ----------------------------------------------------------------------- */
  2686. /* JP2 encoder interface */
  2687. /* ----------------------------------------------------------------------- */
  2688. opj_jp2_t* opj_jp2_create(OPJ_BOOL p_is_decoder)
  2689. {
  2690. opj_jp2_t *jp2 = (opj_jp2_t*)opj_calloc(1, sizeof(opj_jp2_t));
  2691. if (jp2) {
  2692. /* create the J2K codec */
  2693. if (! p_is_decoder) {
  2694. jp2->j2k = opj_j2k_create_compress();
  2695. } else {
  2696. jp2->j2k = opj_j2k_create_decompress();
  2697. }
  2698. if (jp2->j2k == 00) {
  2699. opj_jp2_destroy(jp2);
  2700. return 00;
  2701. }
  2702. /* Color structure */
  2703. jp2->color.icc_profile_buf = NULL;
  2704. jp2->color.icc_profile_len = 0;
  2705. jp2->color.jp2_cdef = NULL;
  2706. jp2->color.jp2_pclr = NULL;
  2707. jp2->color.jp2_has_colr = 0;
  2708. /* validation list creation */
  2709. jp2->m_validation_list = opj_procedure_list_create();
  2710. if (! jp2->m_validation_list) {
  2711. opj_jp2_destroy(jp2);
  2712. return 00;
  2713. }
  2714. /* execution list creation */
  2715. jp2->m_procedure_list = opj_procedure_list_create();
  2716. if (! jp2->m_procedure_list) {
  2717. opj_jp2_destroy(jp2);
  2718. return 00;
  2719. }
  2720. }
  2721. return jp2;
  2722. }
  2723. void jp2_dump(opj_jp2_t* p_jp2, OPJ_INT32 flag, FILE* out_stream)
  2724. {
  2725. /* preconditions */
  2726. assert(p_jp2 != 00);
  2727. j2k_dump(p_jp2->j2k,
  2728. flag,
  2729. out_stream);
  2730. }
  2731. opj_codestream_index_t* jp2_get_cstr_index(opj_jp2_t* p_jp2)
  2732. {
  2733. return j2k_get_cstr_index(p_jp2->j2k);
  2734. }
  2735. opj_codestream_info_v2_t* jp2_get_cstr_info(opj_jp2_t* p_jp2)
  2736. {
  2737. return j2k_get_cstr_info(p_jp2->j2k);
  2738. }
  2739. OPJ_BOOL opj_jp2_set_decoded_resolution_factor(opj_jp2_t *p_jp2,
  2740. OPJ_UINT32 res_factor,
  2741. opj_event_mgr_t * p_manager)
  2742. {
  2743. return opj_j2k_set_decoded_resolution_factor(p_jp2->j2k, res_factor, p_manager);
  2744. }
  2745. /* ----------------------------------------------------------------------- */
  2746. OPJ_BOOL opj_jp2_encoder_set_extra_options(
  2747. opj_jp2_t *p_jp2,
  2748. const char* const* p_options,
  2749. opj_event_mgr_t * p_manager)
  2750. {
  2751. return opj_j2k_encoder_set_extra_options(p_jp2->j2k, p_options, p_manager);
  2752. }
  2753. /* ----------------------------------------------------------------------- */
  2754. /* JPIP specific */
  2755. #ifdef USE_JPIP
  2756. static OPJ_BOOL opj_jpip_write_iptr(opj_jp2_t *jp2,
  2757. opj_stream_private_t *cio,
  2758. opj_event_mgr_t * p_manager)
  2759. {
  2760. OPJ_OFF_T j2k_codestream_exit;
  2761. OPJ_BYTE l_data_header [24];
  2762. /* preconditions */
  2763. assert(jp2 != 00);
  2764. assert(cio != 00);
  2765. assert(p_manager != 00);
  2766. assert(opj_stream_has_seek(cio));
  2767. j2k_codestream_exit = opj_stream_tell(cio);
  2768. opj_write_bytes(l_data_header, 24, 4); /* size of iptr */
  2769. opj_write_bytes(l_data_header + 4, JPIP_IPTR,
  2770. 4); /* IPTR */
  2771. #if 0
  2772. opj_write_bytes(l_data_header + 4 + 4, 0, 8); /* offset */
  2773. opj_write_bytes(l_data_header + 8 + 8, 0, 8); /* length */
  2774. #else
  2775. opj_write_double(l_data_header + 4 + 4, 0); /* offset */
  2776. opj_write_double(l_data_header + 8 + 8, 0); /* length */
  2777. #endif
  2778. if (! opj_stream_seek(cio, jp2->jpip_iptr_offset, p_manager)) {
  2779. opj_event_msg(p_manager, EVT_ERROR, "Failed to seek in the stream.\n");
  2780. return OPJ_FALSE;
  2781. }
  2782. if (opj_stream_write_data(cio, l_data_header, 24, p_manager) != 24) {
  2783. opj_event_msg(p_manager, EVT_ERROR, "Failed to seek in the stream.\n");
  2784. return OPJ_FALSE;
  2785. }
  2786. if (! opj_stream_seek(cio, j2k_codestream_exit, p_manager)) {
  2787. opj_event_msg(p_manager, EVT_ERROR, "Failed to seek in the stream.\n");
  2788. return OPJ_FALSE;
  2789. }
  2790. return OPJ_TRUE;
  2791. }
  2792. static OPJ_BOOL opj_jpip_write_fidx(opj_jp2_t *jp2,
  2793. opj_stream_private_t *cio,
  2794. opj_event_mgr_t * p_manager)
  2795. {
  2796. OPJ_OFF_T j2k_codestream_exit;
  2797. OPJ_BYTE l_data_header [24];
  2798. OPJ_UNUSED(jp2);
  2799. /* preconditions */
  2800. assert(jp2 != 00);
  2801. assert(cio != 00);
  2802. assert(p_manager != 00);
  2803. assert(opj_stream_has_seek(cio));
  2804. opj_write_bytes(l_data_header, 24, 4); /* size of iptr */
  2805. opj_write_bytes(l_data_header + 4, JPIP_FIDX,
  2806. 4); /* IPTR */
  2807. opj_write_double(l_data_header + 4 + 4, 0); /* offset */
  2808. opj_write_double(l_data_header + 8 + 8, 0); /* length */
  2809. if (opj_stream_write_data(cio, l_data_header, 24, p_manager) != 24) {
  2810. opj_event_msg(p_manager, EVT_ERROR, "Failed to seek in the stream.\n");
  2811. return OPJ_FALSE;
  2812. }
  2813. j2k_codestream_exit = opj_stream_tell(cio);
  2814. if (! opj_stream_seek(cio, j2k_codestream_exit, p_manager)) {
  2815. opj_event_msg(p_manager, EVT_ERROR, "Failed to seek in the stream.\n");
  2816. return OPJ_FALSE;
  2817. }
  2818. return OPJ_TRUE;
  2819. }
  2820. static OPJ_BOOL opj_jpip_write_cidx(opj_jp2_t *jp2,
  2821. opj_stream_private_t *cio,
  2822. opj_event_mgr_t * p_manager)
  2823. {
  2824. OPJ_OFF_T j2k_codestream_exit;
  2825. OPJ_BYTE l_data_header [24];
  2826. OPJ_UNUSED(jp2);
  2827. /* preconditions */
  2828. assert(jp2 != 00);
  2829. assert(cio != 00);
  2830. assert(p_manager != 00);
  2831. assert(opj_stream_has_seek(cio));
  2832. j2k_codestream_exit = opj_stream_tell(cio);
  2833. opj_write_bytes(l_data_header, 24, 4); /* size of iptr */
  2834. opj_write_bytes(l_data_header + 4, JPIP_CIDX,
  2835. 4); /* IPTR */
  2836. #if 0
  2837. opj_write_bytes(l_data_header + 4 + 4, 0, 8); /* offset */
  2838. opj_write_bytes(l_data_header + 8 + 8, 0, 8); /* length */
  2839. #else
  2840. opj_write_double(l_data_header + 4 + 4, 0); /* offset */
  2841. opj_write_double(l_data_header + 8 + 8, 0); /* length */
  2842. #endif
  2843. if (! opj_stream_seek(cio, j2k_codestream_exit, p_manager)) {
  2844. opj_event_msg(p_manager, EVT_ERROR, "Failed to seek in the stream.\n");
  2845. return OPJ_FALSE;
  2846. }
  2847. if (opj_stream_write_data(cio, l_data_header, 24, p_manager) != 24) {
  2848. opj_event_msg(p_manager, EVT_ERROR, "Failed to seek in the stream.\n");
  2849. return OPJ_FALSE;
  2850. }
  2851. j2k_codestream_exit = opj_stream_tell(cio);
  2852. if (! opj_stream_seek(cio, j2k_codestream_exit, p_manager)) {
  2853. opj_event_msg(p_manager, EVT_ERROR, "Failed to seek in the stream.\n");
  2854. return OPJ_FALSE;
  2855. }
  2856. return OPJ_TRUE;
  2857. }
  2858. #if 0
  2859. static void write_prxy(int offset_jp2c, int length_jp2c, int offset_idx,
  2860. int length_idx, opj_stream_private_t *cio,
  2861. opj_event_mgr_t * p_manager)
  2862. {
  2863. OPJ_BYTE l_data_header [8];
  2864. OPJ_OFF_T len, lenp;
  2865. lenp = opj_stream_tell(cio);
  2866. opj_stream_skip(cio, 4, p_manager); /* L [at the end] */
  2867. opj_write_bytes(l_data_header, JPIP_PRXY, 4); /* IPTR */
  2868. opj_stream_write_data(cio, l_data_header, 4, p_manager);
  2869. opj_write_bytes(l_data_header, offset_jp2c, 8); /* OOFF */
  2870. opj_stream_write_data(cio, l_data_header, 8, p_manager);
  2871. opj_write_bytes(l_data_header, length_jp2c, 4); /* OBH part 1 */
  2872. opj_write_bytes(l_data_header + 4, JP2_JP2C, 4); /* OBH part 2 */
  2873. opj_stream_write_data(cio, l_data_header, 8, p_manager);
  2874. opj_write_bytes(l_data_header, 1, 1); /* NI */
  2875. opj_stream_write_data(cio, l_data_header, 1, p_manager);
  2876. opj_write_bytes(l_data_header, offset_idx, 8); /* IOFF */
  2877. opj_stream_write_data(cio, l_data_header, 8, p_manager);
  2878. opj_write_bytes(l_data_header, length_idx, 4); /* IBH part 1 */
  2879. opj_write_bytes(l_data_header + 4, JPIP_CIDX, 4); /* IBH part 2 */
  2880. opj_stream_write_data(cio, l_data_header, 8, p_manager);
  2881. len = opj_stream_tell(cio) - lenp;
  2882. opj_stream_skip(cio, lenp, p_manager);
  2883. opj_write_bytes(l_data_header, len, 4); /* L */
  2884. opj_stream_write_data(cio, l_data_header, 4, p_manager);
  2885. opj_stream_seek(cio, lenp + len, p_manager);
  2886. }
  2887. #endif
  2888. #if 0
  2889. static int write_fidx(int offset_jp2c, int length_jp2c, int offset_idx,
  2890. int length_idx, opj_stream_private_t *cio,
  2891. opj_event_mgr_t * p_manager)
  2892. {
  2893. OPJ_BYTE l_data_header [4];
  2894. OPJ_OFF_T len, lenp;
  2895. lenp = opj_stream_tell(cio);
  2896. opj_stream_skip(cio, 4, p_manager);
  2897. opj_write_bytes(l_data_header, JPIP_FIDX, 4); /* FIDX */
  2898. opj_stream_write_data(cio, l_data_header, 4, p_manager);
  2899. write_prxy(offset_jp2c, length_jp2c, offset_idx, length_idx, cio, p_manager);
  2900. len = opj_stream_tell(cio) - lenp;
  2901. opj_stream_skip(cio, lenp, p_manager);
  2902. opj_write_bytes(l_data_header, len, 4); /* L */
  2903. opj_stream_write_data(cio, l_data_header, 4, p_manager);
  2904. opj_stream_seek(cio, lenp + len, p_manager);
  2905. return len;
  2906. }
  2907. #endif
  2908. #endif /* USE_JPIP */