rfreeimage 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (860) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +1 -0
  4. data/Rakefile +34 -0
  5. data/ext/rfreeimage/extconf.rb +35 -0
  6. data/ext/rfreeimage/rfi_main.c +389 -0
  7. data/lib/rfreeimage/image.rb +26 -0
  8. data/lib/rfreeimage/version.rb +3 -0
  9. data/lib/rfreeimage.rb +3 -0
  10. data/rfreeimage.gemspec +32 -0
  11. data/vendor/FreeImage/Makefile +34 -0
  12. data/vendor/FreeImage/Makefile.cygwin +74 -0
  13. data/vendor/FreeImage/Makefile.fip +84 -0
  14. data/vendor/FreeImage/Makefile.gnu +83 -0
  15. data/vendor/FreeImage/Makefile.iphone +96 -0
  16. data/vendor/FreeImage/Makefile.mingw +136 -0
  17. data/vendor/FreeImage/Makefile.osx +115 -0
  18. data/vendor/FreeImage/Makefile.solaris +66 -0
  19. data/vendor/FreeImage/Makefile.srcs +6 -0
  20. data/vendor/FreeImage/README.iphone +19 -0
  21. data/vendor/FreeImage/README.linux +50 -0
  22. data/vendor/FreeImage/README.minGW +236 -0
  23. data/vendor/FreeImage/README.osx +44 -0
  24. data/vendor/FreeImage/README.solaris +67 -0
  25. data/vendor/FreeImage/Source/CacheFile.h +92 -0
  26. data/vendor/FreeImage/Source/DeprecationManager/Deprecated.cpp +36 -0
  27. data/vendor/FreeImage/Source/DeprecationManager/DeprecationMgr.cpp +103 -0
  28. data/vendor/FreeImage/Source/DeprecationManager/DeprecationMgr.h +83 -0
  29. data/vendor/FreeImage/Source/FreeImage/BitmapAccess.cpp +1573 -0
  30. data/vendor/FreeImage/Source/FreeImage/CacheFile.cpp +271 -0
  31. data/vendor/FreeImage/Source/FreeImage/ColorLookup.cpp +785 -0
  32. data/vendor/FreeImage/Source/FreeImage/Conversion.cpp +551 -0
  33. data/vendor/FreeImage/Source/FreeImage/Conversion16_555.cpp +209 -0
  34. data/vendor/FreeImage/Source/FreeImage/Conversion16_565.cpp +204 -0
  35. data/vendor/FreeImage/Source/FreeImage/Conversion24.cpp +252 -0
  36. data/vendor/FreeImage/Source/FreeImage/Conversion32.cpp +345 -0
  37. data/vendor/FreeImage/Source/FreeImage/Conversion4.cpp +246 -0
  38. data/vendor/FreeImage/Source/FreeImage/Conversion8.cpp +305 -0
  39. data/vendor/FreeImage/Source/FreeImage/ConversionFloat.cpp +194 -0
  40. data/vendor/FreeImage/Source/FreeImage/ConversionRGB16.cpp +144 -0
  41. data/vendor/FreeImage/Source/FreeImage/ConversionRGBA16.cpp +147 -0
  42. data/vendor/FreeImage/Source/FreeImage/ConversionRGBAF.cpp +250 -0
  43. data/vendor/FreeImage/Source/FreeImage/ConversionRGBF.cpp +243 -0
  44. data/vendor/FreeImage/Source/FreeImage/ConversionType.cpp +699 -0
  45. data/vendor/FreeImage/Source/FreeImage/ConversionUINT16.cpp +134 -0
  46. data/vendor/FreeImage/Source/FreeImage/FreeImage.cpp +226 -0
  47. data/vendor/FreeImage/Source/FreeImage/FreeImageC.c +22 -0
  48. data/vendor/FreeImage/Source/FreeImage/FreeImageIO.cpp +175 -0
  49. data/vendor/FreeImage/Source/FreeImage/GetType.cpp +92 -0
  50. data/vendor/FreeImage/Source/FreeImage/Halftoning.cpp +474 -0
  51. data/vendor/FreeImage/Source/FreeImage/J2KHelper.cpp +591 -0
  52. data/vendor/FreeImage/Source/FreeImage/J2KHelper.h +36 -0
  53. data/vendor/FreeImage/Source/FreeImage/LFPQuantizer.cpp +208 -0
  54. data/vendor/FreeImage/Source/FreeImage/MNGHelper.cpp +1320 -0
  55. data/vendor/FreeImage/Source/FreeImage/MemoryIO.cpp +237 -0
  56. data/vendor/FreeImage/Source/FreeImage/MultiPage.cpp +974 -0
  57. data/vendor/FreeImage/Source/FreeImage/NNQuantizer.cpp +507 -0
  58. data/vendor/FreeImage/Source/FreeImage/PSDParser.cpp +1057 -0
  59. data/vendor/FreeImage/Source/FreeImage/PSDParser.h +271 -0
  60. data/vendor/FreeImage/Source/FreeImage/PixelAccess.cpp +197 -0
  61. data/vendor/FreeImage/Source/FreeImage/Plugin.cpp +822 -0
  62. data/vendor/FreeImage/Source/FreeImage/PluginBMP.cpp +1494 -0
  63. data/vendor/FreeImage/Source/FreeImage/PluginCUT.cpp +240 -0
  64. data/vendor/FreeImage/Source/FreeImage/PluginDDS.cpp +655 -0
  65. data/vendor/FreeImage/Source/FreeImage/PluginEXR.cpp +773 -0
  66. data/vendor/FreeImage/Source/FreeImage/PluginG3.cpp +433 -0
  67. data/vendor/FreeImage/Source/FreeImage/PluginGIF.cpp +1407 -0
  68. data/vendor/FreeImage/Source/FreeImage/PluginHDR.cpp +722 -0
  69. data/vendor/FreeImage/Source/FreeImage/PluginICO.cpp +824 -0
  70. data/vendor/FreeImage/Source/FreeImage/PluginIFF.cpp +459 -0
  71. data/vendor/FreeImage/Source/FreeImage/PluginJ2K.cpp +328 -0
  72. data/vendor/FreeImage/Source/FreeImage/PluginJNG.cpp +162 -0
  73. data/vendor/FreeImage/Source/FreeImage/PluginJP2.cpp +328 -0
  74. data/vendor/FreeImage/Source/FreeImage/PluginJPEG.cpp +1706 -0
  75. data/vendor/FreeImage/Source/FreeImage/PluginJXR.cpp +1475 -0
  76. data/vendor/FreeImage/Source/FreeImage/PluginKOALA.cpp +243 -0
  77. data/vendor/FreeImage/Source/FreeImage/PluginMNG.cpp +153 -0
  78. data/vendor/FreeImage/Source/FreeImage/PluginPCD.cpp +251 -0
  79. data/vendor/FreeImage/Source/FreeImage/PluginPCX.cpp +659 -0
  80. data/vendor/FreeImage/Source/FreeImage/PluginPFM.cpp +409 -0
  81. data/vendor/FreeImage/Source/FreeImage/PluginPICT.cpp +1343 -0
  82. data/vendor/FreeImage/Source/FreeImage/PluginPNG.cpp +1115 -0
  83. data/vendor/FreeImage/Source/FreeImage/PluginPNM.cpp +838 -0
  84. data/vendor/FreeImage/Source/FreeImage/PluginPSD.cpp +131 -0
  85. data/vendor/FreeImage/Source/FreeImage/PluginRAS.cpp +512 -0
  86. data/vendor/FreeImage/Source/FreeImage/PluginRAW.cpp +793 -0
  87. data/vendor/FreeImage/Source/FreeImage/PluginSGI.cpp +425 -0
  88. data/vendor/FreeImage/Source/FreeImage/PluginTARGA.cpp +1591 -0
  89. data/vendor/FreeImage/Source/FreeImage/PluginTIFF.cpp +2631 -0
  90. data/vendor/FreeImage/Source/FreeImage/PluginWBMP.cpp +372 -0
  91. data/vendor/FreeImage/Source/FreeImage/PluginWebP.cpp +698 -0
  92. data/vendor/FreeImage/Source/FreeImage/PluginXBM.cpp +399 -0
  93. data/vendor/FreeImage/Source/FreeImage/PluginXPM.cpp +487 -0
  94. data/vendor/FreeImage/Source/FreeImage/TIFFLogLuv.cpp +65 -0
  95. data/vendor/FreeImage/Source/FreeImage/ToneMapping.cpp +75 -0
  96. data/vendor/FreeImage/Source/FreeImage/WuQuantizer.cpp +559 -0
  97. data/vendor/FreeImage/Source/FreeImage/ZLibInterface.cpp +223 -0
  98. data/vendor/FreeImage/Source/FreeImage/tmoColorConvert.cpp +479 -0
  99. data/vendor/FreeImage/Source/FreeImage/tmoDrago03.cpp +295 -0
  100. data/vendor/FreeImage/Source/FreeImage/tmoFattal02.cpp +689 -0
  101. data/vendor/FreeImage/Source/FreeImage/tmoReinhard05.cpp +260 -0
  102. data/vendor/FreeImage/Source/FreeImage.h +1153 -0
  103. data/vendor/FreeImage/Source/FreeImageIO.h +63 -0
  104. data/vendor/FreeImage/Source/FreeImageToolkit/BSplineRotate.cpp +730 -0
  105. data/vendor/FreeImage/Source/FreeImageToolkit/Background.cpp +895 -0
  106. data/vendor/FreeImage/Source/FreeImageToolkit/Channels.cpp +488 -0
  107. data/vendor/FreeImage/Source/FreeImageToolkit/ClassicRotate.cpp +917 -0
  108. data/vendor/FreeImage/Source/FreeImageToolkit/Colors.cpp +967 -0
  109. data/vendor/FreeImage/Source/FreeImageToolkit/CopyPaste.cpp +861 -0
  110. data/vendor/FreeImage/Source/FreeImageToolkit/Display.cpp +230 -0
  111. data/vendor/FreeImage/Source/FreeImageToolkit/Filters.h +287 -0
  112. data/vendor/FreeImage/Source/FreeImageToolkit/Flip.cpp +166 -0
  113. data/vendor/FreeImage/Source/FreeImageToolkit/JPEGTransform.cpp +623 -0
  114. data/vendor/FreeImage/Source/FreeImageToolkit/MultigridPoissonSolver.cpp +505 -0
  115. data/vendor/FreeImage/Source/FreeImageToolkit/Rescale.cpp +192 -0
  116. data/vendor/FreeImage/Source/FreeImageToolkit/Resize.cpp +2116 -0
  117. data/vendor/FreeImage/Source/FreeImageToolkit/Resize.h +196 -0
  118. data/vendor/FreeImage/Source/LibJPEG/ansi2knr.c +739 -0
  119. data/vendor/FreeImage/Source/LibJPEG/cderror.h +134 -0
  120. data/vendor/FreeImage/Source/LibJPEG/cdjpeg.c +181 -0
  121. data/vendor/FreeImage/Source/LibJPEG/cdjpeg.h +187 -0
  122. data/vendor/FreeImage/Source/LibJPEG/cjpeg.c +664 -0
  123. data/vendor/FreeImage/Source/LibJPEG/ckconfig.c +402 -0
  124. data/vendor/FreeImage/Source/LibJPEG/djpeg.c +617 -0
  125. data/vendor/FreeImage/Source/LibJPEG/example.c +433 -0
  126. data/vendor/FreeImage/Source/LibJPEG/jaricom.c +153 -0
  127. data/vendor/FreeImage/Source/LibJPEG/jcapimin.c +288 -0
  128. data/vendor/FreeImage/Source/LibJPEG/jcapistd.c +162 -0
  129. data/vendor/FreeImage/Source/LibJPEG/jcarith.c +944 -0
  130. data/vendor/FreeImage/Source/LibJPEG/jccoefct.c +454 -0
  131. data/vendor/FreeImage/Source/LibJPEG/jccolor.c +604 -0
  132. data/vendor/FreeImage/Source/LibJPEG/jcdctmgr.c +477 -0
  133. data/vendor/FreeImage/Source/LibJPEG/jchuff.c +1573 -0
  134. data/vendor/FreeImage/Source/LibJPEG/jcinit.c +84 -0
  135. data/vendor/FreeImage/Source/LibJPEG/jcmainct.c +297 -0
  136. data/vendor/FreeImage/Source/LibJPEG/jcmarker.c +719 -0
  137. data/vendor/FreeImage/Source/LibJPEG/jcmaster.c +856 -0
  138. data/vendor/FreeImage/Source/LibJPEG/jcomapi.c +106 -0
  139. data/vendor/FreeImage/Source/LibJPEG/jconfig.h +161 -0
  140. data/vendor/FreeImage/Source/LibJPEG/jcparam.c +675 -0
  141. data/vendor/FreeImage/Source/LibJPEG/jcprepct.c +358 -0
  142. data/vendor/FreeImage/Source/LibJPEG/jcsample.c +545 -0
  143. data/vendor/FreeImage/Source/LibJPEG/jctrans.c +385 -0
  144. data/vendor/FreeImage/Source/LibJPEG/jdapimin.c +399 -0
  145. data/vendor/FreeImage/Source/LibJPEG/jdapistd.c +276 -0
  146. data/vendor/FreeImage/Source/LibJPEG/jdarith.c +796 -0
  147. data/vendor/FreeImage/Source/LibJPEG/jdatadst.c +270 -0
  148. data/vendor/FreeImage/Source/LibJPEG/jdatasrc.c +275 -0
  149. data/vendor/FreeImage/Source/LibJPEG/jdcoefct.c +741 -0
  150. data/vendor/FreeImage/Source/LibJPEG/jdcolor.c +748 -0
  151. data/vendor/FreeImage/Source/LibJPEG/jdct.h +393 -0
  152. data/vendor/FreeImage/Source/LibJPEG/jddctmgr.c +384 -0
  153. data/vendor/FreeImage/Source/LibJPEG/jdhuff.c +1554 -0
  154. data/vendor/FreeImage/Source/LibJPEG/jdinput.c +662 -0
  155. data/vendor/FreeImage/Source/LibJPEG/jdmainct.c +513 -0
  156. data/vendor/FreeImage/Source/LibJPEG/jdmarker.c +1511 -0
  157. data/vendor/FreeImage/Source/LibJPEG/jdmaster.c +543 -0
  158. data/vendor/FreeImage/Source/LibJPEG/jdmerge.c +401 -0
  159. data/vendor/FreeImage/Source/LibJPEG/jdpostct.c +290 -0
  160. data/vendor/FreeImage/Source/LibJPEG/jdsample.c +361 -0
  161. data/vendor/FreeImage/Source/LibJPEG/jdtrans.c +140 -0
  162. data/vendor/FreeImage/Source/LibJPEG/jerror.c +253 -0
  163. data/vendor/FreeImage/Source/LibJPEG/jerror.h +304 -0
  164. data/vendor/FreeImage/Source/LibJPEG/jfdctflt.c +174 -0
  165. data/vendor/FreeImage/Source/LibJPEG/jfdctfst.c +230 -0
  166. data/vendor/FreeImage/Source/LibJPEG/jfdctint.c +4406 -0
  167. data/vendor/FreeImage/Source/LibJPEG/jidctflt.c +235 -0
  168. data/vendor/FreeImage/Source/LibJPEG/jidctfst.c +368 -0
  169. data/vendor/FreeImage/Source/LibJPEG/jidctint.c +5179 -0
  170. data/vendor/FreeImage/Source/LibJPEG/jinclude.h +91 -0
  171. data/vendor/FreeImage/Source/LibJPEG/jmemansi.c +167 -0
  172. data/vendor/FreeImage/Source/LibJPEG/jmemdos.c +638 -0
  173. data/vendor/FreeImage/Source/LibJPEG/jmemmac.c +289 -0
  174. data/vendor/FreeImage/Source/LibJPEG/jmemmgr.c +1119 -0
  175. data/vendor/FreeImage/Source/LibJPEG/jmemname.c +276 -0
  176. data/vendor/FreeImage/Source/LibJPEG/jmemnobs.c +109 -0
  177. data/vendor/FreeImage/Source/LibJPEG/jmemsys.h +198 -0
  178. data/vendor/FreeImage/Source/LibJPEG/jmorecfg.h +442 -0
  179. data/vendor/FreeImage/Source/LibJPEG/jpegint.h +426 -0
  180. data/vendor/FreeImage/Source/LibJPEG/jpeglib.h +1180 -0
  181. data/vendor/FreeImage/Source/LibJPEG/jpegtran.c +577 -0
  182. data/vendor/FreeImage/Source/LibJPEG/jquant1.c +857 -0
  183. data/vendor/FreeImage/Source/LibJPEG/jquant2.c +1311 -0
  184. data/vendor/FreeImage/Source/LibJPEG/jutils.c +227 -0
  185. data/vendor/FreeImage/Source/LibJPEG/jversion.h +14 -0
  186. data/vendor/FreeImage/Source/LibJPEG/rdbmp.c +480 -0
  187. data/vendor/FreeImage/Source/LibJPEG/rdcolmap.c +253 -0
  188. data/vendor/FreeImage/Source/LibJPEG/rdgif.c +38 -0
  189. data/vendor/FreeImage/Source/LibJPEG/rdjpgcom.c +515 -0
  190. data/vendor/FreeImage/Source/LibJPEG/rdppm.c +459 -0
  191. data/vendor/FreeImage/Source/LibJPEG/rdrle.c +387 -0
  192. data/vendor/FreeImage/Source/LibJPEG/rdswitch.c +365 -0
  193. data/vendor/FreeImage/Source/LibJPEG/rdtarga.c +500 -0
  194. data/vendor/FreeImage/Source/LibJPEG/transupp.c +1763 -0
  195. data/vendor/FreeImage/Source/LibJPEG/transupp.h +219 -0
  196. data/vendor/FreeImage/Source/LibJPEG/wrbmp.c +442 -0
  197. data/vendor/FreeImage/Source/LibJPEG/wrgif.c +399 -0
  198. data/vendor/FreeImage/Source/LibJPEG/wrjpgcom.c +583 -0
  199. data/vendor/FreeImage/Source/LibJPEG/wrppm.c +269 -0
  200. data/vendor/FreeImage/Source/LibJPEG/wrrle.c +305 -0
  201. data/vendor/FreeImage/Source/LibJPEG/wrtarga.c +253 -0
  202. data/vendor/FreeImage/Source/LibJXR/common/include/guiddef.h +230 -0
  203. data/vendor/FreeImage/Source/LibJXR/common/include/wmsal.h +757 -0
  204. data/vendor/FreeImage/Source/LibJXR/common/include/wmspecstring.h +342 -0
  205. data/vendor/FreeImage/Source/LibJXR/common/include/wmspecstrings_adt.h +71 -0
  206. data/vendor/FreeImage/Source/LibJXR/common/include/wmspecstrings_strict.h +1096 -0
  207. data/vendor/FreeImage/Source/LibJXR/common/include/wmspecstrings_undef.h +406 -0
  208. data/vendor/FreeImage/Source/LibJXR/image/decode/JXRTranscode.c +987 -0
  209. data/vendor/FreeImage/Source/LibJXR/image/decode/decode.c +200 -0
  210. data/vendor/FreeImage/Source/LibJXR/image/decode/decode.h +143 -0
  211. data/vendor/FreeImage/Source/LibJXR/image/decode/postprocess.c +288 -0
  212. data/vendor/FreeImage/Source/LibJXR/image/decode/segdec.c +1205 -0
  213. data/vendor/FreeImage/Source/LibJXR/image/decode/strInvTransform.c +1888 -0
  214. data/vendor/FreeImage/Source/LibJXR/image/decode/strPredQuantDec.c +539 -0
  215. data/vendor/FreeImage/Source/LibJXR/image/decode/strdec.c +3628 -0
  216. data/vendor/FreeImage/Source/LibJXR/image/decode/strdec_x86.c +1640 -0
  217. data/vendor/FreeImage/Source/LibJXR/image/encode/encode.c +144 -0
  218. data/vendor/FreeImage/Source/LibJXR/image/encode/encode.h +113 -0
  219. data/vendor/FreeImage/Source/LibJXR/image/encode/segenc.c +1186 -0
  220. data/vendor/FreeImage/Source/LibJXR/image/encode/strFwdTransform.c +1111 -0
  221. data/vendor/FreeImage/Source/LibJXR/image/encode/strPredQuantEnc.c +511 -0
  222. data/vendor/FreeImage/Source/LibJXR/image/encode/strenc.c +2370 -0
  223. data/vendor/FreeImage/Source/LibJXR/image/encode/strenc_x86.c +409 -0
  224. data/vendor/FreeImage/Source/LibJXR/image/sys/adapthuff.c +511 -0
  225. data/vendor/FreeImage/Source/LibJXR/image/sys/ansi.h +61 -0
  226. data/vendor/FreeImage/Source/LibJXR/image/sys/common.h +131 -0
  227. data/vendor/FreeImage/Source/LibJXR/image/sys/image.c +183 -0
  228. data/vendor/FreeImage/Source/LibJXR/image/sys/perfTimer.h +115 -0
  229. data/vendor/FreeImage/Source/LibJXR/image/sys/perfTimerANSI.c +274 -0
  230. data/vendor/FreeImage/Source/LibJXR/image/sys/strPredQuant.c +306 -0
  231. data/vendor/FreeImage/Source/LibJXR/image/sys/strTransform.c +85 -0
  232. data/vendor/FreeImage/Source/LibJXR/image/sys/strTransform.h +50 -0
  233. data/vendor/FreeImage/Source/LibJXR/image/sys/strcodec.c +1251 -0
  234. data/vendor/FreeImage/Source/LibJXR/image/sys/strcodec.h +681 -0
  235. data/vendor/FreeImage/Source/LibJXR/image/sys/windowsmediaphoto.h +515 -0
  236. data/vendor/FreeImage/Source/LibJXR/image/sys/xplatform_image.h +84 -0
  237. data/vendor/FreeImage/Source/LibJXR/image/x86/x86.h +58 -0
  238. data/vendor/FreeImage/Source/LibJXR/jxrgluelib/JXRGlue.c +930 -0
  239. data/vendor/FreeImage/Source/LibJXR/jxrgluelib/JXRGlue.h +636 -0
  240. data/vendor/FreeImage/Source/LibJXR/jxrgluelib/JXRGlueJxr.c +2246 -0
  241. data/vendor/FreeImage/Source/LibJXR/jxrgluelib/JXRGluePFC.c +2338 -0
  242. data/vendor/FreeImage/Source/LibJXR/jxrgluelib/JXRMeta.c +905 -0
  243. data/vendor/FreeImage/Source/LibJXR/jxrgluelib/JXRMeta.h +258 -0
  244. data/vendor/FreeImage/Source/LibOpenJPEG/bio.c +188 -0
  245. data/vendor/FreeImage/Source/LibOpenJPEG/bio.h +128 -0
  246. data/vendor/FreeImage/Source/LibOpenJPEG/cidx_manager.c +239 -0
  247. data/vendor/FreeImage/Source/LibOpenJPEG/cidx_manager.h +68 -0
  248. data/vendor/FreeImage/Source/LibOpenJPEG/cio.c +644 -0
  249. data/vendor/FreeImage/Source/LibOpenJPEG/cio.h +393 -0
  250. data/vendor/FreeImage/Source/LibOpenJPEG/dwt.c +919 -0
  251. data/vendor/FreeImage/Source/LibOpenJPEG/dwt.h +116 -0
  252. data/vendor/FreeImage/Source/LibOpenJPEG/event.c +141 -0
  253. data/vendor/FreeImage/Source/LibOpenJPEG/event.h +97 -0
  254. data/vendor/FreeImage/Source/LibOpenJPEG/function_list.c +114 -0
  255. data/vendor/FreeImage/Source/LibOpenJPEG/function_list.h +126 -0
  256. data/vendor/FreeImage/Source/LibOpenJPEG/image.c +235 -0
  257. data/vendor/FreeImage/Source/LibOpenJPEG/image.h +63 -0
  258. data/vendor/FreeImage/Source/LibOpenJPEG/indexbox_manager.h +148 -0
  259. data/vendor/FreeImage/Source/LibOpenJPEG/invert.c +289 -0
  260. data/vendor/FreeImage/Source/LibOpenJPEG/invert.h +59 -0
  261. data/vendor/FreeImage/Source/LibOpenJPEG/j2k.c +10238 -0
  262. data/vendor/FreeImage/Source/LibOpenJPEG/j2k.h +838 -0
  263. data/vendor/FreeImage/Source/LibOpenJPEG/jp2.c +2776 -0
  264. data/vendor/FreeImage/Source/LibOpenJPEG/jp2.h +490 -0
  265. data/vendor/FreeImage/Source/LibOpenJPEG/mct.c +319 -0
  266. data/vendor/FreeImage/Source/LibOpenJPEG/mct.h +149 -0
  267. data/vendor/FreeImage/Source/LibOpenJPEG/mqc.c +604 -0
  268. data/vendor/FreeImage/Source/LibOpenJPEG/mqc.h +201 -0
  269. data/vendor/FreeImage/Source/LibOpenJPEG/openjpeg.c +955 -0
  270. data/vendor/FreeImage/Source/LibOpenJPEG/openjpeg.h +1475 -0
  271. data/vendor/FreeImage/Source/LibOpenJPEG/opj_clock.c +59 -0
  272. data/vendor/FreeImage/Source/LibOpenJPEG/opj_clock.h +54 -0
  273. data/vendor/FreeImage/Source/LibOpenJPEG/opj_codec.h +160 -0
  274. data/vendor/FreeImage/Source/LibOpenJPEG/opj_config.h +9 -0
  275. data/vendor/FreeImage/Source/LibOpenJPEG/opj_config_private.h +16 -0
  276. data/vendor/FreeImage/Source/LibOpenJPEG/opj_includes.h +175 -0
  277. data/vendor/FreeImage/Source/LibOpenJPEG/opj_intmath.h +172 -0
  278. data/vendor/FreeImage/Source/LibOpenJPEG/opj_inttypes.h +43 -0
  279. data/vendor/FreeImage/Source/LibOpenJPEG/opj_malloc.h +180 -0
  280. data/vendor/FreeImage/Source/LibOpenJPEG/opj_stdint.h +47 -0
  281. data/vendor/FreeImage/Source/LibOpenJPEG/phix_manager.c +191 -0
  282. data/vendor/FreeImage/Source/LibOpenJPEG/pi.c +1870 -0
  283. data/vendor/FreeImage/Source/LibOpenJPEG/pi.h +182 -0
  284. data/vendor/FreeImage/Source/LibOpenJPEG/ppix_manager.c +194 -0
  285. data/vendor/FreeImage/Source/LibOpenJPEG/raw.c +89 -0
  286. data/vendor/FreeImage/Source/LibOpenJPEG/raw.h +100 -0
  287. data/vendor/FreeImage/Source/LibOpenJPEG/t1.c +1751 -0
  288. data/vendor/FreeImage/Source/LibOpenJPEG/t1.h +157 -0
  289. data/vendor/FreeImage/Source/LibOpenJPEG/t1_generate_luts.c +276 -0
  290. data/vendor/FreeImage/Source/LibOpenJPEG/t1_luts.h +143 -0
  291. data/vendor/FreeImage/Source/LibOpenJPEG/t2.c +1334 -0
  292. data/vendor/FreeImage/Source/LibOpenJPEG/t2.h +127 -0
  293. data/vendor/FreeImage/Source/LibOpenJPEG/tcd.c +2123 -0
  294. data/vendor/FreeImage/Source/LibOpenJPEG/tcd.h +348 -0
  295. data/vendor/FreeImage/Source/LibOpenJPEG/tgt.c +331 -0
  296. data/vendor/FreeImage/Source/LibOpenJPEG/tgt.h +140 -0
  297. data/vendor/FreeImage/Source/LibOpenJPEG/thix_manager.c +134 -0
  298. data/vendor/FreeImage/Source/LibOpenJPEG/tpix_manager.c +185 -0
  299. data/vendor/FreeImage/Source/LibPNG/example.c +1061 -0
  300. data/vendor/FreeImage/Source/LibPNG/png.c +4493 -0
  301. data/vendor/FreeImage/Source/LibPNG/png.h +3282 -0
  302. data/vendor/FreeImage/Source/LibPNG/pngconf.h +644 -0
  303. data/vendor/FreeImage/Source/LibPNG/pngdebug.h +154 -0
  304. data/vendor/FreeImage/Source/LibPNG/pngerror.c +963 -0
  305. data/vendor/FreeImage/Source/LibPNG/pngget.c +1213 -0
  306. data/vendor/FreeImage/Source/LibPNG/pnginfo.h +260 -0
  307. data/vendor/FreeImage/Source/LibPNG/pnglibconf.h +218 -0
  308. data/vendor/FreeImage/Source/LibPNG/pngmem.c +281 -0
  309. data/vendor/FreeImage/Source/LibPNG/pngpread.c +1168 -0
  310. data/vendor/FreeImage/Source/LibPNG/pngpriv.h +1944 -0
  311. data/vendor/FreeImage/Source/LibPNG/pngread.c +4121 -0
  312. data/vendor/FreeImage/Source/LibPNG/pngrio.c +120 -0
  313. data/vendor/FreeImage/Source/LibPNG/pngrtran.c +4994 -0
  314. data/vendor/FreeImage/Source/LibPNG/pngrutil.c +4474 -0
  315. data/vendor/FreeImage/Source/LibPNG/pngset.c +1611 -0
  316. data/vendor/FreeImage/Source/LibPNG/pngstruct.h +489 -0
  317. data/vendor/FreeImage/Source/LibPNG/pngtest.c +2011 -0
  318. data/vendor/FreeImage/Source/LibPNG/pngtrans.c +849 -0
  319. data/vendor/FreeImage/Source/LibPNG/pngwio.c +168 -0
  320. data/vendor/FreeImage/Source/LibPNG/pngwrite.c +2455 -0
  321. data/vendor/FreeImage/Source/LibPNG/pngwtran.c +574 -0
  322. data/vendor/FreeImage/Source/LibPNG/pngwutil.c +3029 -0
  323. data/vendor/FreeImage/Source/LibRawLite/dcraw/dcraw.c +15462 -0
  324. data/vendor/FreeImage/Source/LibRawLite/internal/aahd_demosaic.cpp +706 -0
  325. data/vendor/FreeImage/Source/LibRawLite/internal/dcb_demosaicing.c +710 -0
  326. data/vendor/FreeImage/Source/LibRawLite/internal/dcraw_common.cpp +13593 -0
  327. data/vendor/FreeImage/Source/LibRawLite/internal/dcraw_fileio.cpp +240 -0
  328. data/vendor/FreeImage/Source/LibRawLite/internal/defines.h +167 -0
  329. data/vendor/FreeImage/Source/LibRawLite/internal/demosaic_packs.cpp +99 -0
  330. data/vendor/FreeImage/Source/LibRawLite/internal/dht_demosaic.cpp +873 -0
  331. data/vendor/FreeImage/Source/LibRawLite/internal/libraw_internal_funcs.h +282 -0
  332. data/vendor/FreeImage/Source/LibRawLite/internal/libraw_x3f.cpp +1919 -0
  333. data/vendor/FreeImage/Source/LibRawLite/internal/var_defines.h +216 -0
  334. data/vendor/FreeImage/Source/LibRawLite/internal/wf_filtering.cpp +1950 -0
  335. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw.h +338 -0
  336. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw_alloc.h +99 -0
  337. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw_const.h +233 -0
  338. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw_datastream.h +238 -0
  339. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw_internal.h +225 -0
  340. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw_types.h +442 -0
  341. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw_version.h +62 -0
  342. data/vendor/FreeImage/Source/LibRawLite/src/libraw_c_api.cpp +230 -0
  343. data/vendor/FreeImage/Source/LibRawLite/src/libraw_cxx.cpp +4533 -0
  344. data/vendor/FreeImage/Source/LibRawLite/src/libraw_datastream.cpp +703 -0
  345. data/vendor/FreeImage/Source/LibTIFF4/mkg3states.c +451 -0
  346. data/vendor/FreeImage/Source/LibTIFF4/mkspans.c +82 -0
  347. data/vendor/FreeImage/Source/LibTIFF4/t4.h +292 -0
  348. data/vendor/FreeImage/Source/LibTIFF4/tif_aux.c +358 -0
  349. data/vendor/FreeImage/Source/LibTIFF4/tif_close.c +140 -0
  350. data/vendor/FreeImage/Source/LibTIFF4/tif_codec.c +166 -0
  351. data/vendor/FreeImage/Source/LibTIFF4/tif_color.c +287 -0
  352. data/vendor/FreeImage/Source/LibTIFF4/tif_compress.c +304 -0
  353. data/vendor/FreeImage/Source/LibTIFF4/tif_config.h +97 -0
  354. data/vendor/FreeImage/Source/LibTIFF4/tif_config.vc.h +74 -0
  355. data/vendor/FreeImage/Source/LibTIFF4/tif_config.wince.h +71 -0
  356. data/vendor/FreeImage/Source/LibTIFF4/tif_dir.c +1700 -0
  357. data/vendor/FreeImage/Source/LibTIFF4/tif_dir.h +308 -0
  358. data/vendor/FreeImage/Source/LibTIFF4/tif_dirinfo.c +959 -0
  359. data/vendor/FreeImage/Source/LibTIFF4/tif_dirread.c +5640 -0
  360. data/vendor/FreeImage/Source/LibTIFF4/tif_dirwrite.c +2910 -0
  361. data/vendor/FreeImage/Source/LibTIFF4/tif_dumpmode.c +143 -0
  362. data/vendor/FreeImage/Source/LibTIFF4/tif_error.c +80 -0
  363. data/vendor/FreeImage/Source/LibTIFF4/tif_extension.c +118 -0
  364. data/vendor/FreeImage/Source/LibTIFF4/tif_fax3.c +1595 -0
  365. data/vendor/FreeImage/Source/LibTIFF4/tif_fax3.h +538 -0
  366. data/vendor/FreeImage/Source/LibTIFF4/tif_fax3sm.c +1260 -0
  367. data/vendor/FreeImage/Source/LibTIFF4/tif_flush.c +118 -0
  368. data/vendor/FreeImage/Source/LibTIFF4/tif_getimage.c +2890 -0
  369. data/vendor/FreeImage/Source/LibTIFF4/tif_jbig.c +213 -0
  370. data/vendor/FreeImage/Source/LibTIFF4/tif_jpeg.c +2354 -0
  371. data/vendor/FreeImage/Source/LibTIFF4/tif_jpeg_12.c +65 -0
  372. data/vendor/FreeImage/Source/LibTIFF4/tif_luv.c +1683 -0
  373. data/vendor/FreeImage/Source/LibTIFF4/tif_lzma.c +495 -0
  374. data/vendor/FreeImage/Source/LibTIFF4/tif_lzw.c +1169 -0
  375. data/vendor/FreeImage/Source/LibTIFF4/tif_next.c +181 -0
  376. data/vendor/FreeImage/Source/LibTIFF4/tif_ojpeg.c +2501 -0
  377. data/vendor/FreeImage/Source/LibTIFF4/tif_open.c +725 -0
  378. data/vendor/FreeImage/Source/LibTIFF4/tif_packbits.c +300 -0
  379. data/vendor/FreeImage/Source/LibTIFF4/tif_pixarlog.c +1442 -0
  380. data/vendor/FreeImage/Source/LibTIFF4/tif_predict.c +764 -0
  381. data/vendor/FreeImage/Source/LibTIFF4/tif_predict.h +77 -0
  382. data/vendor/FreeImage/Source/LibTIFF4/tif_print.c +716 -0
  383. data/vendor/FreeImage/Source/LibTIFF4/tif_read.c +1086 -0
  384. data/vendor/FreeImage/Source/LibTIFF4/tif_strip.c +383 -0
  385. data/vendor/FreeImage/Source/LibTIFF4/tif_swab.c +310 -0
  386. data/vendor/FreeImage/Source/LibTIFF4/tif_thunder.c +207 -0
  387. data/vendor/FreeImage/Source/LibTIFF4/tif_tile.c +299 -0
  388. data/vendor/FreeImage/Source/LibTIFF4/tif_unix.c +325 -0
  389. data/vendor/FreeImage/Source/LibTIFF4/tif_version.c +40 -0
  390. data/vendor/FreeImage/Source/LibTIFF4/tif_vms.c +603 -0
  391. data/vendor/FreeImage/Source/LibTIFF4/tif_warning.c +81 -0
  392. data/vendor/FreeImage/Source/LibTIFF4/tif_win32.c +443 -0
  393. data/vendor/FreeImage/Source/LibTIFF4/tif_wince.c +293 -0
  394. data/vendor/FreeImage/Source/LibTIFF4/tif_write.c +771 -0
  395. data/vendor/FreeImage/Source/LibTIFF4/tif_zip.c +472 -0
  396. data/vendor/FreeImage/Source/LibTIFF4/tiff.h +681 -0
  397. data/vendor/FreeImage/Source/LibTIFF4/tiffconf.h +170 -0
  398. data/vendor/FreeImage/Source/LibTIFF4/tiffconf.vc.h +160 -0
  399. data/vendor/FreeImage/Source/LibTIFF4/tiffconf.wince.h +121 -0
  400. data/vendor/FreeImage/Source/LibTIFF4/tiffio.h +557 -0
  401. data/vendor/FreeImage/Source/LibTIFF4/tiffiop.h +367 -0
  402. data/vendor/FreeImage/Source/LibTIFF4/tiffvers.h +9 -0
  403. data/vendor/FreeImage/Source/LibTIFF4/uvcode.h +180 -0
  404. data/vendor/FreeImage/Source/LibWebP/src/dec/alphai.h +55 -0
  405. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.alpha.c +167 -0
  406. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.buffer.c +249 -0
  407. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.frame.c +827 -0
  408. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.idec.c +857 -0
  409. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.io.c +640 -0
  410. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.quant.c +110 -0
  411. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.tree.c +525 -0
  412. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.vp8.c +663 -0
  413. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.vp8l.c +1584 -0
  414. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.webp.c +834 -0
  415. data/vendor/FreeImage/Source/LibWebP/src/dec/decode_vp8.h +185 -0
  416. data/vendor/FreeImage/Source/LibWebP/src/dec/vp8i.h +353 -0
  417. data/vendor/FreeImage/Source/LibWebP/src/dec/vp8li.h +136 -0
  418. data/vendor/FreeImage/Source/LibWebP/src/dec/webpi.h +120 -0
  419. data/vendor/FreeImage/Source/LibWebP/src/demux/demux.demux.c +957 -0
  420. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.alpha_processing.c +377 -0
  421. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.alpha_processing_mips_dsp_r2.c +139 -0
  422. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.alpha_processing_sse2.c +296 -0
  423. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.argb.c +68 -0
  424. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.argb_mips_dsp_r2.c +108 -0
  425. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.argb_sse2.c +62 -0
  426. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.cost.c +412 -0
  427. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.cost_mips32.c +154 -0
  428. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.cost_mips_dsp_r2.c +107 -0
  429. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.cost_sse2.c +121 -0
  430. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.cpu.c +138 -0
  431. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.dec.c +760 -0
  432. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.dec_clip_tables.c +366 -0
  433. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.dec_mips32.c +585 -0
  434. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.dec_mips_dsp_r2.c +992 -0
  435. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.dec_neon.c +1489 -0
  436. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.dec_sse2.c +1284 -0
  437. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.enc.c +788 -0
  438. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.enc_avx2.c +24 -0
  439. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.enc_mips32.c +670 -0
  440. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.enc_mips_dsp_r2.c +1510 -0
  441. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.enc_neon.c +932 -0
  442. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.enc_sse2.c +940 -0
  443. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.filters.c +240 -0
  444. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.filters_mips_dsp_r2.c +404 -0
  445. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.filters_sse2.c +349 -0
  446. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.h +434 -0
  447. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.lossless.c +1838 -0
  448. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.lossless_mips32.c +416 -0
  449. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.lossless_mips_dsp_r2.c +921 -0
  450. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.lossless_neon.c +357 -0
  451. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.lossless_sse2.c +535 -0
  452. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.rescaler.c +115 -0
  453. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.rescaler_mips32.c +192 -0
  454. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.rescaler_mips_dsp_r2.c +210 -0
  455. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.upsampling.c +252 -0
  456. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.upsampling_mips_dsp_r2.c +280 -0
  457. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.upsampling_neon.c +267 -0
  458. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.upsampling_sse2.c +214 -0
  459. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.yuv.c +166 -0
  460. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.yuv_mips32.c +100 -0
  461. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.yuv_mips_dsp_r2.c +131 -0
  462. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.yuv_sse2.c +322 -0
  463. data/vendor/FreeImage/Source/LibWebP/src/dsp/lossless.h +313 -0
  464. data/vendor/FreeImage/Source/LibWebP/src/dsp/mips_macro.h +200 -0
  465. data/vendor/FreeImage/Source/LibWebP/src/dsp/neon.h +82 -0
  466. data/vendor/FreeImage/Source/LibWebP/src/dsp/yuv.h +321 -0
  467. data/vendor/FreeImage/Source/LibWebP/src/dsp/yuv_tables_sse2.h +536 -0
  468. data/vendor/FreeImage/Source/LibWebP/src/enc/backward_references.h +202 -0
  469. data/vendor/FreeImage/Source/LibWebP/src/enc/cost.h +69 -0
  470. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.alpha.c +440 -0
  471. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.analysis.c +501 -0
  472. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.backward_references.c +1076 -0
  473. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.config.c +163 -0
  474. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.cost.c +355 -0
  475. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.filter.c +296 -0
  476. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.frame.c +850 -0
  477. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.histogram.c +897 -0
  478. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.iterator.c +456 -0
  479. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.near_lossless.c +160 -0
  480. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.picture.c +290 -0
  481. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.picture_csp.c +1100 -0
  482. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.picture_psnr.c +150 -0
  483. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.picture_rescale.c +285 -0
  484. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.picture_tools.c +206 -0
  485. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.quant.c +1191 -0
  486. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.syntax.c +383 -0
  487. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.token.c +285 -0
  488. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.tree.c +504 -0
  489. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.vp8l.c +1437 -0
  490. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.webpenc.c +379 -0
  491. data/vendor/FreeImage/Source/LibWebP/src/enc/histogram.h +114 -0
  492. data/vendor/FreeImage/Source/LibWebP/src/enc/vp8enci.h +551 -0
  493. data/vendor/FreeImage/Source/LibWebP/src/enc/vp8li.h +78 -0
  494. data/vendor/FreeImage/Source/LibWebP/src/mux/mux.anim_encode.c +1241 -0
  495. data/vendor/FreeImage/Source/LibWebP/src/mux/mux.muxedit.c +696 -0
  496. data/vendor/FreeImage/Source/LibWebP/src/mux/mux.muxinternal.c +551 -0
  497. data/vendor/FreeImage/Source/LibWebP/src/mux/mux.muxread.c +544 -0
  498. data/vendor/FreeImage/Source/LibWebP/src/mux/muxi.h +232 -0
  499. data/vendor/FreeImage/Source/LibWebP/src/utils/bit_reader.h +168 -0
  500. data/vendor/FreeImage/Source/LibWebP/src/utils/bit_reader_inl.h +172 -0
  501. data/vendor/FreeImage/Source/LibWebP/src/utils/bit_writer.h +120 -0
  502. data/vendor/FreeImage/Source/LibWebP/src/utils/color_cache.h +74 -0
  503. data/vendor/FreeImage/Source/LibWebP/src/utils/endian_inl.h +100 -0
  504. data/vendor/FreeImage/Source/LibWebP/src/utils/filters.h +32 -0
  505. data/vendor/FreeImage/Source/LibWebP/src/utils/huffman.h +67 -0
  506. data/vendor/FreeImage/Source/LibWebP/src/utils/huffman_encode.h +60 -0
  507. data/vendor/FreeImage/Source/LibWebP/src/utils/quant_levels.h +36 -0
  508. data/vendor/FreeImage/Source/LibWebP/src/utils/quant_levels_dec.h +35 -0
  509. data/vendor/FreeImage/Source/LibWebP/src/utils/random.h +63 -0
  510. data/vendor/FreeImage/Source/LibWebP/src/utils/rescaler.h +78 -0
  511. data/vendor/FreeImage/Source/LibWebP/src/utils/thread.h +93 -0
  512. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.bit_reader.c +208 -0
  513. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.bit_writer.c +308 -0
  514. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.color_cache.c +49 -0
  515. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.filters.c +76 -0
  516. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.h +121 -0
  517. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.huffman.c +205 -0
  518. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.huffman_encode.c +417 -0
  519. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.quant_levels.c +140 -0
  520. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.quant_levels_dec.c +279 -0
  521. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.random.c +43 -0
  522. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.rescaler.c +82 -0
  523. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.thread.c +309 -0
  524. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.utils.c +211 -0
  525. data/vendor/FreeImage/Source/LibWebP/src/webp/decode.h +493 -0
  526. data/vendor/FreeImage/Source/LibWebP/src/webp/demux.h +224 -0
  527. data/vendor/FreeImage/Source/LibWebP/src/webp/encode.h +515 -0
  528. data/vendor/FreeImage/Source/LibWebP/src/webp/format_constants.h +88 -0
  529. data/vendor/FreeImage/Source/LibWebP/src/webp/mux.h +507 -0
  530. data/vendor/FreeImage/Source/LibWebP/src/webp/mux_types.h +97 -0
  531. data/vendor/FreeImage/Source/LibWebP/src/webp/types.h +52 -0
  532. data/vendor/FreeImage/Source/MapIntrospector.h +212 -0
  533. data/vendor/FreeImage/Source/Metadata/Exif.cpp +1253 -0
  534. data/vendor/FreeImage/Source/Metadata/FIRational.cpp +176 -0
  535. data/vendor/FreeImage/Source/Metadata/FIRational.h +108 -0
  536. data/vendor/FreeImage/Source/Metadata/FreeImageTag.cpp +353 -0
  537. data/vendor/FreeImage/Source/Metadata/FreeImageTag.h +500 -0
  538. data/vendor/FreeImage/Source/Metadata/IPTC.cpp +342 -0
  539. data/vendor/FreeImage/Source/Metadata/TagConversion.cpp +1094 -0
  540. data/vendor/FreeImage/Source/Metadata/TagLib.cpp +1618 -0
  541. data/vendor/FreeImage/Source/Metadata/XTIFF.cpp +766 -0
  542. data/vendor/FreeImage/Source/OpenEXR/Half/eLut.cpp +114 -0
  543. data/vendor/FreeImage/Source/OpenEXR/Half/eLut.h +71 -0
  544. data/vendor/FreeImage/Source/OpenEXR/Half/half.cpp +310 -0
  545. data/vendor/FreeImage/Source/OpenEXR/Half/half.h +757 -0
  546. data/vendor/FreeImage/Source/OpenEXR/Half/halfExport.h +27 -0
  547. data/vendor/FreeImage/Source/OpenEXR/Half/halfFunction.h +179 -0
  548. data/vendor/FreeImage/Source/OpenEXR/Half/halfLimits.h +102 -0
  549. data/vendor/FreeImage/Source/OpenEXR/Half/toFloat.cpp +164 -0
  550. data/vendor/FreeImage/Source/OpenEXR/Half/toFloat.h +16391 -0
  551. data/vendor/FreeImage/Source/OpenEXR/Iex/Iex.h +60 -0
  552. data/vendor/FreeImage/Source/OpenEXR/Iex/IexBaseExc.cpp +156 -0
  553. data/vendor/FreeImage/Source/OpenEXR/Iex/IexBaseExc.h +264 -0
  554. data/vendor/FreeImage/Source/OpenEXR/Iex/IexErrnoExc.h +208 -0
  555. data/vendor/FreeImage/Source/OpenEXR/Iex/IexExport.h +51 -0
  556. data/vendor/FreeImage/Source/OpenEXR/Iex/IexForward.h +229 -0
  557. data/vendor/FreeImage/Source/OpenEXR/Iex/IexMacros.h +170 -0
  558. data/vendor/FreeImage/Source/OpenEXR/Iex/IexMathExc.h +57 -0
  559. data/vendor/FreeImage/Source/OpenEXR/Iex/IexNamespace.h +112 -0
  560. data/vendor/FreeImage/Source/OpenEXR/Iex/IexThrowErrnoExc.cpp +873 -0
  561. data/vendor/FreeImage/Source/OpenEXR/Iex/IexThrowErrnoExc.h +97 -0
  562. data/vendor/FreeImage/Source/OpenEXR/IexMath/IexMathFloatExc.cpp +113 -0
  563. data/vendor/FreeImage/Source/OpenEXR/IexMath/IexMathFloatExc.h +146 -0
  564. data/vendor/FreeImage/Source/OpenEXR/IexMath/IexMathFpu.cpp +530 -0
  565. data/vendor/FreeImage/Source/OpenEXR/IexMath/IexMathFpu.h +91 -0
  566. data/vendor/FreeImage/Source/OpenEXR/IexMath/IexMathIeeeExc.h +62 -0
  567. data/vendor/FreeImage/Source/OpenEXR/IlmBaseConfig.h +61 -0
  568. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfAcesFile.cpp +633 -0
  569. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfAcesFile.h +324 -0
  570. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfArray.h +285 -0
  571. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfAttribute.cpp +158 -0
  572. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfAttribute.h +407 -0
  573. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfAutoArray.h +95 -0
  574. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfB44Compressor.cpp +1072 -0
  575. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfB44Compressor.h +118 -0
  576. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfBoxAttribute.cpp +111 -0
  577. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfBoxAttribute.h +87 -0
  578. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCRgbaFile.cpp +1438 -0
  579. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCRgbaFile.h +555 -0
  580. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChannelList.cpp +322 -0
  581. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChannelList.h +436 -0
  582. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChannelListAttribute.cpp +150 -0
  583. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChannelListAttribute.h +74 -0
  584. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCheckedArithmetic.h +163 -0
  585. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChromaticities.cpp +151 -0
  586. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChromaticities.h +131 -0
  587. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChromaticitiesAttribute.cpp +87 -0
  588. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChromaticitiesAttribute.h +73 -0
  589. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompositeDeepScanLine.cpp +591 -0
  590. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompositeDeepScanLine.h +142 -0
  591. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompression.h +84 -0
  592. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompressionAttribute.cpp +78 -0
  593. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompressionAttribute.h +64 -0
  594. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompressor.cpp +226 -0
  595. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompressor.h +265 -0
  596. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfConvert.cpp +143 -0
  597. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfConvert.h +107 -0
  598. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepCompositing.cpp +110 -0
  599. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepCompositing.h +132 -0
  600. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepFrameBuffer.cpp +230 -0
  601. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepFrameBuffer.h +339 -0
  602. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepImageState.h +96 -0
  603. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepImageStateAttribute.cpp +78 -0
  604. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepImageStateAttribute.h +68 -0
  605. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineInputFile.cpp +2025 -0
  606. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineInputFile.h +276 -0
  607. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineInputPart.cpp +149 -0
  608. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineInputPart.h +181 -0
  609. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineOutputFile.cpp +1552 -0
  610. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineOutputFile.h +244 -0
  611. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineOutputPart.cpp +107 -0
  612. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineOutputPart.h +168 -0
  613. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledInputFile.cpp +1979 -0
  614. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledInputFile.h +437 -0
  615. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledInputPart.cpp +273 -0
  616. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledInputPart.h +362 -0
  617. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledOutputFile.cpp +2055 -0
  618. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledOutputFile.h +475 -0
  619. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledOutputPart.cpp +250 -0
  620. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledOutputPart.h +394 -0
  621. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDoubleAttribute.cpp +57 -0
  622. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDoubleAttribute.h +59 -0
  623. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDwaCompressor.cpp +3424 -0
  624. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDwaCompressor.h +210 -0
  625. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDwaCompressorSimd.h +2145 -0
  626. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfEnvmap.cpp +335 -0
  627. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfEnvmap.h +336 -0
  628. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfEnvmapAttribute.cpp +76 -0
  629. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfEnvmapAttribute.h +68 -0
  630. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfExport.h +46 -0
  631. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFastHuf.cpp +768 -0
  632. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFastHuf.h +148 -0
  633. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFloatAttribute.cpp +57 -0
  634. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFloatAttribute.h +58 -0
  635. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFloatVectorAttribute.cpp +84 -0
  636. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFloatVectorAttribute.h +76 -0
  637. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfForward.h +127 -0
  638. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFrameBuffer.cpp +228 -0
  639. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFrameBuffer.h +386 -0
  640. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFramesPerSecond.cpp +76 -0
  641. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFramesPerSecond.h +94 -0
  642. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfGenericInputFile.cpp +76 -0
  643. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfGenericInputFile.h +58 -0
  644. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfGenericOutputFile.cpp +112 -0
  645. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfGenericOutputFile.h +62 -0
  646. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfHeader.cpp +1283 -0
  647. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfHeader.h +699 -0
  648. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfHuf.cpp +1114 -0
  649. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfHuf.h +82 -0
  650. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfIO.cpp +110 -0
  651. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfIO.h +255 -0
  652. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputFile.cpp +895 -0
  653. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputFile.h +240 -0
  654. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputPart.cpp +114 -0
  655. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputPart.h +84 -0
  656. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputPartData.cpp +51 -0
  657. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputPartData.h +69 -0
  658. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputStreamMutex.h +68 -0
  659. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInt64.h +56 -0
  660. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfIntAttribute.cpp +57 -0
  661. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfIntAttribute.h +58 -0
  662. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfKeyCode.cpp +217 -0
  663. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfKeyCode.h +167 -0
  664. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfKeyCodeAttribute.cpp +99 -0
  665. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfKeyCodeAttribute.h +73 -0
  666. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfLineOrder.h +69 -0
  667. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfLineOrderAttribute.cpp +78 -0
  668. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfLineOrderAttribute.h +72 -0
  669. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfLut.cpp +178 -0
  670. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfLut.h +188 -0
  671. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMatrixAttribute.cpp +263 -0
  672. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMatrixAttribute.h +83 -0
  673. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMisc.cpp +1872 -0
  674. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMisc.h +466 -0
  675. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMultiPartInputFile.cpp +783 -0
  676. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMultiPartInputFile.h +128 -0
  677. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMultiPartOutputFile.cpp +519 -0
  678. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMultiPartOutputFile.h +118 -0
  679. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMultiView.cpp +435 -0
  680. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMultiView.h +187 -0
  681. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfName.h +150 -0
  682. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfNamespace.h +115 -0
  683. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOpaqueAttribute.cpp +126 -0
  684. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOpaqueAttribute.h +110 -0
  685. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOptimizedPixelReading.h +646 -0
  686. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputFile.cpp +1378 -0
  687. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputFile.h +263 -0
  688. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputPart.cpp +105 -0
  689. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputPart.h +77 -0
  690. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputPartData.cpp +52 -0
  691. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputPartData.h +62 -0
  692. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputStreamMutex.h +70 -0
  693. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPartHelper.h +262 -0
  694. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPartType.cpp +63 -0
  695. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPartType.h +62 -0
  696. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPixelType.h +67 -0
  697. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPizCompressor.cpp +667 -0
  698. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPizCompressor.h +117 -0
  699. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPreviewImage.cpp +104 -0
  700. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPreviewImage.h +135 -0
  701. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPreviewImageAttribute.cpp +103 -0
  702. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPreviewImageAttribute.h +70 -0
  703. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPxr24Compressor.cpp +553 -0
  704. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPxr24Compressor.h +109 -0
  705. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRational.cpp +127 -0
  706. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRational.h +98 -0
  707. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRationalAttribute.cpp +74 -0
  708. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRationalAttribute.h +69 -0
  709. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRgba.h +109 -0
  710. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRgbaFile.cpp +1405 -0
  711. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRgbaFile.h +346 -0
  712. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRgbaYca.cpp +497 -0
  713. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRgbaYca.h +259 -0
  714. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRle.cpp +157 -0
  715. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRle.h +63 -0
  716. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRleCompressor.cpp +220 -0
  717. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRleCompressor.h +80 -0
  718. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfScanLineInputFile.cpp +1702 -0
  719. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfScanLineInputFile.h +210 -0
  720. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfSimd.h +59 -0
  721. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStandardAttributes.cpp +125 -0
  722. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStandardAttributes.h +382 -0
  723. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStdIO.cpp +242 -0
  724. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStdIO.h +160 -0
  725. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStringAttribute.cpp +80 -0
  726. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStringAttribute.h +71 -0
  727. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStringVectorAttribute.cpp +100 -0
  728. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStringVectorAttribute.h +74 -0
  729. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfSystemSpecific.cpp +129 -0
  730. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfSystemSpecific.h +172 -0
  731. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTestFile.cpp +216 -0
  732. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTestFile.h +97 -0
  733. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfThreading.cpp +62 -0
  734. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfThreading.h +95 -0
  735. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTileDescription.h +107 -0
  736. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTileDescriptionAttribute.cpp +86 -0
  737. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTileDescriptionAttribute.h +72 -0
  738. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTileOffsets.cpp +552 -0
  739. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTileOffsets.h +125 -0
  740. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledInputFile.cpp +1533 -0
  741. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledInputFile.h +401 -0
  742. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledInputPart.cpp +208 -0
  743. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledInputPart.h +100 -0
  744. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledMisc.cpp +389 -0
  745. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledMisc.h +106 -0
  746. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledOutputFile.cpp +1841 -0
  747. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledOutputFile.h +495 -0
  748. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledOutputPart.cpp +228 -0
  749. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledOutputPart.h +105 -0
  750. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledRgbaFile.cpp +1163 -0
  751. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledRgbaFile.h +482 -0
  752. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTimeCode.cpp +431 -0
  753. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTimeCode.h +242 -0
  754. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTimeCodeAttribute.cpp +79 -0
  755. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTimeCodeAttribute.h +74 -0
  756. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfVecAttribute.cpp +217 -0
  757. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfVecAttribute.h +100 -0
  758. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfVersion.cpp +60 -0
  759. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfVersion.h +136 -0
  760. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfWav.cpp +391 -0
  761. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfWav.h +78 -0
  762. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfXdr.h +927 -0
  763. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfZip.cpp +196 -0
  764. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfZip.h +78 -0
  765. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfZipCompressor.cpp +127 -0
  766. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfZipCompressor.h +89 -0
  767. data/vendor/FreeImage/Source/OpenEXR/IlmImf/b44ExpLogTable.cpp +136 -0
  768. data/vendor/FreeImage/Source/OpenEXR/IlmImf/b44ExpLogTable.h +16396 -0
  769. data/vendor/FreeImage/Source/OpenEXR/IlmImf/dwaLookups.cpp +573 -0
  770. data/vendor/FreeImage/Source/OpenEXR/IlmImf/dwaLookups.h +98334 -0
  771. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThread.cpp +80 -0
  772. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThread.h +143 -0
  773. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadExport.h +46 -0
  774. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadForward.h +52 -0
  775. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadMutex.cpp +59 -0
  776. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadMutex.h +160 -0
  777. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadMutexPosix.cpp +85 -0
  778. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadMutexWin32.cpp +79 -0
  779. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadNamespace.h +114 -0
  780. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadPool.cpp +483 -0
  781. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadPool.h +160 -0
  782. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadPosix.cpp +98 -0
  783. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadSemaphore.cpp +60 -0
  784. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadSemaphore.h +112 -0
  785. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadSemaphorePosix.cpp +106 -0
  786. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadSemaphorePosixCompat.cpp +155 -0
  787. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadSemaphoreWin32.cpp +153 -0
  788. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadWin32.cpp +100 -0
  789. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathBox.cpp +37 -0
  790. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathBox.h +849 -0
  791. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathBoxAlgo.h +1016 -0
  792. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathColor.h +736 -0
  793. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathColorAlgo.cpp +178 -0
  794. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathColorAlgo.h +257 -0
  795. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathEuler.h +926 -0
  796. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathExc.h +73 -0
  797. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathExport.h +46 -0
  798. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathForward.h +72 -0
  799. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathFrame.h +192 -0
  800. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathFrustum.h +741 -0
  801. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathFrustumTest.h +417 -0
  802. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathFun.cpp +181 -0
  803. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathFun.h +269 -0
  804. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathGL.h +166 -0
  805. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathGLU.h +54 -0
  806. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathHalfLimits.h +68 -0
  807. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathInt64.h +62 -0
  808. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathInterval.h +226 -0
  809. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathLimits.h +268 -0
  810. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathLine.h +185 -0
  811. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathLineAlgo.h +288 -0
  812. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathMath.h +208 -0
  813. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathMatrix.h +3441 -0
  814. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathMatrixAlgo.cpp +1252 -0
  815. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathMatrixAlgo.h +1425 -0
  816. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathNamespace.h +115 -0
  817. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathPlane.h +257 -0
  818. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathPlatform.h +112 -0
  819. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathQuat.h +964 -0
  820. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathRandom.cpp +194 -0
  821. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathRandom.h +401 -0
  822. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathRoots.h +219 -0
  823. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathShear.cpp +54 -0
  824. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathShear.h +656 -0
  825. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathSphere.h +177 -0
  826. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathVec.cpp +583 -0
  827. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathVec.h +2227 -0
  828. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathVecAlgo.h +147 -0
  829. data/vendor/FreeImage/Source/OpenEXR/OpenEXRConfig.h +72 -0
  830. data/vendor/FreeImage/Source/Plugin.h +144 -0
  831. data/vendor/FreeImage/Source/Quantizers.h +354 -0
  832. data/vendor/FreeImage/Source/ToneMapping.h +44 -0
  833. data/vendor/FreeImage/Source/Utilities.h +516 -0
  834. data/vendor/FreeImage/Source/ZLib/adler32.c +179 -0
  835. data/vendor/FreeImage/Source/ZLib/compress.c +80 -0
  836. data/vendor/FreeImage/Source/ZLib/crc32.c +425 -0
  837. data/vendor/FreeImage/Source/ZLib/crc32.h +441 -0
  838. data/vendor/FreeImage/Source/ZLib/deflate.c +1967 -0
  839. data/vendor/FreeImage/Source/ZLib/deflate.h +346 -0
  840. data/vendor/FreeImage/Source/ZLib/gzclose.c +25 -0
  841. data/vendor/FreeImage/Source/ZLib/gzguts.h +209 -0
  842. data/vendor/FreeImage/Source/ZLib/gzlib.c +634 -0
  843. data/vendor/FreeImage/Source/ZLib/gzread.c +594 -0
  844. data/vendor/FreeImage/Source/ZLib/gzwrite.c +577 -0
  845. data/vendor/FreeImage/Source/ZLib/infback.c +640 -0
  846. data/vendor/FreeImage/Source/ZLib/inffast.c +340 -0
  847. data/vendor/FreeImage/Source/ZLib/inffast.h +11 -0
  848. data/vendor/FreeImage/Source/ZLib/inffixed.h +94 -0
  849. data/vendor/FreeImage/Source/ZLib/inflate.c +1512 -0
  850. data/vendor/FreeImage/Source/ZLib/inflate.h +122 -0
  851. data/vendor/FreeImage/Source/ZLib/inftrees.c +306 -0
  852. data/vendor/FreeImage/Source/ZLib/inftrees.h +62 -0
  853. data/vendor/FreeImage/Source/ZLib/trees.c +1226 -0
  854. data/vendor/FreeImage/Source/ZLib/trees.h +128 -0
  855. data/vendor/FreeImage/Source/ZLib/uncompr.c +59 -0
  856. data/vendor/FreeImage/Source/ZLib/zconf.h +511 -0
  857. data/vendor/FreeImage/Source/ZLib/zlib.h +1768 -0
  858. data/vendor/FreeImage/Source/ZLib/zutil.c +324 -0
  859. data/vendor/FreeImage/Source/ZLib/zutil.h +253 -0
  860. metadata +931 -0
@@ -0,0 +1,2123 @@
1
+ /*
2
+ * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
3
+ * Copyright (c) 2002-2007, Professor Benoit Macq
4
+ * Copyright (c) 2001-2003, David Janssens
5
+ * Copyright (c) 2002-2003, Yannick Verschueren
6
+ * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
7
+ * Copyright (c) 2005, Herve Drolon, FreeImage Team
8
+ * Copyright (c) 2006-2007, Parvatha Elangovan
9
+ * Copyright (c) 2008;2011-2012, Centre National d'Etudes Spatiales (CNES), France
10
+ * Copyright (c) 2012, CS Systemes d'Information, France
11
+ * All rights reserved.
12
+ *
13
+ * Redistribution and use in source and binary forms, with or without
14
+ * modification, are permitted provided that the following conditions
15
+ * are met:
16
+ * 1. Redistributions of source code must retain the above copyright
17
+ * notice, this list of conditions and the following disclaimer.
18
+ * 2. Redistributions in binary form must reproduce the above copyright
19
+ * notice, this list of conditions and the following disclaimer in the
20
+ * documentation and/or other materials provided with the distribution.
21
+ *
22
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
23
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
26
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32
+ * POSSIBILITY OF SUCH DAMAGE.
33
+ */
34
+
35
+ #include "opj_includes.h"
36
+
37
+ /* ----------------------------------------------------------------------- */
38
+
39
+ /* TODO MSD: */
40
+ #ifdef TODO_MSD
41
+ void tcd_dump(FILE *fd, opj_tcd_t *tcd, opj_tcd_image_t * img) {
42
+ int tileno, compno, resno, bandno, precno;/*, cblkno;*/
43
+
44
+ fprintf(fd, "image {\n");
45
+ fprintf(fd, " tw=%d, th=%d x0=%d x1=%d y0=%d y1=%d\n",
46
+ img->tw, img->th, tcd->image->x0, tcd->image->x1, tcd->image->y0, tcd->image->y1);
47
+
48
+ for (tileno = 0; tileno < img->th * img->tw; tileno++) {
49
+ opj_tcd_tile_t *tile = &tcd->tcd_image->tiles[tileno];
50
+ fprintf(fd, " tile {\n");
51
+ fprintf(fd, " x0=%d, y0=%d, x1=%d, y1=%d, numcomps=%d\n",
52
+ tile->x0, tile->y0, tile->x1, tile->y1, tile->numcomps);
53
+ for (compno = 0; compno < tile->numcomps; compno++) {
54
+ opj_tcd_tilecomp_t *tilec = &tile->comps[compno];
55
+ fprintf(fd, " tilec {\n");
56
+ fprintf(fd,
57
+ " x0=%d, y0=%d, x1=%d, y1=%d, numresolutions=%d\n",
58
+ tilec->x0, tilec->y0, tilec->x1, tilec->y1, tilec->numresolutions);
59
+ for (resno = 0; resno < tilec->numresolutions; resno++) {
60
+ opj_tcd_resolution_t *res = &tilec->resolutions[resno];
61
+ fprintf(fd, "\n res {\n");
62
+ fprintf(fd,
63
+ " x0=%d, y0=%d, x1=%d, y1=%d, pw=%d, ph=%d, numbands=%d\n",
64
+ res->x0, res->y0, res->x1, res->y1, res->pw, res->ph, res->numbands);
65
+ for (bandno = 0; bandno < res->numbands; bandno++) {
66
+ opj_tcd_band_t *band = &res->bands[bandno];
67
+ fprintf(fd, " band {\n");
68
+ fprintf(fd,
69
+ " x0=%d, y0=%d, x1=%d, y1=%d, stepsize=%f, numbps=%d\n",
70
+ band->x0, band->y0, band->x1, band->y1, band->stepsize, band->numbps);
71
+ for (precno = 0; precno < res->pw * res->ph; precno++) {
72
+ opj_tcd_precinct_t *prec = &band->precincts[precno];
73
+ fprintf(fd, " prec {\n");
74
+ fprintf(fd,
75
+ " x0=%d, y0=%d, x1=%d, y1=%d, cw=%d, ch=%d\n",
76
+ prec->x0, prec->y0, prec->x1, prec->y1, prec->cw, prec->ch);
77
+ /*
78
+ for (cblkno = 0; cblkno < prec->cw * prec->ch; cblkno++) {
79
+ opj_tcd_cblk_t *cblk = &prec->cblks[cblkno];
80
+ fprintf(fd, " cblk {\n");
81
+ fprintf(fd,
82
+ " x0=%d, y0=%d, x1=%d, y1=%d\n",
83
+ cblk->x0, cblk->y0, cblk->x1, cblk->y1);
84
+ fprintf(fd, " }\n");
85
+ }
86
+ */
87
+ fprintf(fd, " }\n");
88
+ }
89
+ fprintf(fd, " }\n");
90
+ }
91
+ fprintf(fd, " }\n");
92
+ }
93
+ fprintf(fd, " }\n");
94
+ }
95
+ fprintf(fd, " }\n");
96
+ }
97
+ fprintf(fd, "}\n");
98
+ }
99
+ #endif
100
+ /**
101
+ * Allocates memory for a decoding code block.
102
+ */
103
+ static OPJ_BOOL opj_tcd_code_block_dec_allocate (opj_tcd_cblk_dec_t * p_code_block);
104
+
105
+ /**
106
+ * Deallocates the decoding data of the given precinct.
107
+ */
108
+ static void opj_tcd_code_block_dec_deallocate (opj_tcd_precinct_t * p_precinct);
109
+
110
+ /**
111
+ * Allocates memory for an encoding code block.
112
+ */
113
+ static OPJ_BOOL opj_tcd_code_block_enc_allocate (opj_tcd_cblk_enc_t * p_code_block);
114
+
115
+ /**
116
+ * Deallocates the encoding data of the given precinct.
117
+ */
118
+ static void opj_tcd_code_block_enc_deallocate (opj_tcd_precinct_t * p_precinct);
119
+
120
+
121
+ /**
122
+ Free the memory allocated for encoding
123
+ @param tcd TCD handle
124
+ */
125
+ static void opj_tcd_free_tile(opj_tcd_t *tcd);
126
+
127
+
128
+ static OPJ_BOOL opj_tcd_t2_decode ( opj_tcd_t *p_tcd,
129
+ OPJ_BYTE * p_src_data,
130
+ OPJ_UINT32 * p_data_read,
131
+ OPJ_UINT32 p_max_src_size,
132
+ opj_codestream_index_t *p_cstr_index );
133
+
134
+ static OPJ_BOOL opj_tcd_t1_decode (opj_tcd_t *p_tcd);
135
+
136
+ static OPJ_BOOL opj_tcd_dwt_decode (opj_tcd_t *p_tcd);
137
+
138
+ static OPJ_BOOL opj_tcd_mct_decode (opj_tcd_t *p_tcd);
139
+
140
+ static OPJ_BOOL opj_tcd_dc_level_shift_decode (opj_tcd_t *p_tcd);
141
+
142
+
143
+ static OPJ_BOOL opj_tcd_dc_level_shift_encode ( opj_tcd_t *p_tcd );
144
+
145
+ static OPJ_BOOL opj_tcd_mct_encode ( opj_tcd_t *p_tcd );
146
+
147
+ static OPJ_BOOL opj_tcd_dwt_encode ( opj_tcd_t *p_tcd );
148
+
149
+ static OPJ_BOOL opj_tcd_t1_encode ( opj_tcd_t *p_tcd );
150
+
151
+ static OPJ_BOOL opj_tcd_t2_encode ( opj_tcd_t *p_tcd,
152
+ OPJ_BYTE * p_dest_data,
153
+ OPJ_UINT32 * p_data_written,
154
+ OPJ_UINT32 p_max_dest_size,
155
+ opj_codestream_info_t *p_cstr_info );
156
+
157
+ static OPJ_BOOL opj_tcd_rate_allocate_encode( opj_tcd_t *p_tcd,
158
+ OPJ_BYTE * p_dest_data,
159
+ OPJ_UINT32 p_max_dest_size,
160
+ opj_codestream_info_t *p_cstr_info );
161
+
162
+ /* ----------------------------------------------------------------------- */
163
+
164
+ /**
165
+ Create a new TCD handle
166
+ */
167
+ opj_tcd_t* opj_tcd_create(OPJ_BOOL p_is_decoder)
168
+ {
169
+ opj_tcd_t *l_tcd = 00;
170
+
171
+ /* create the tcd structure */
172
+ l_tcd = (opj_tcd_t*) opj_malloc(sizeof(opj_tcd_t));
173
+ if (!l_tcd) {
174
+ return 00;
175
+ }
176
+ memset(l_tcd,0,sizeof(opj_tcd_t));
177
+
178
+ l_tcd->m_is_decoder = p_is_decoder ? 1 : 0;
179
+
180
+ l_tcd->tcd_image = (opj_tcd_image_t*)opj_malloc(sizeof(opj_tcd_image_t));
181
+ if (!l_tcd->tcd_image) {
182
+ opj_free(l_tcd);
183
+ return 00;
184
+ }
185
+ memset(l_tcd->tcd_image,0,sizeof(opj_tcd_image_t));
186
+
187
+ return l_tcd;
188
+ }
189
+
190
+
191
+ /* ----------------------------------------------------------------------- */
192
+
193
+ void opj_tcd_rateallocate_fixed(opj_tcd_t *tcd) {
194
+ OPJ_UINT32 layno;
195
+
196
+ for (layno = 0; layno < tcd->tcp->numlayers; layno++) {
197
+ opj_tcd_makelayer_fixed(tcd, layno, 1);
198
+ }
199
+ }
200
+
201
+
202
+ void opj_tcd_makelayer( opj_tcd_t *tcd,
203
+ OPJ_UINT32 layno,
204
+ OPJ_FLOAT64 thresh,
205
+ OPJ_UINT32 final)
206
+ {
207
+ OPJ_UINT32 compno, resno, bandno, precno, cblkno;
208
+ OPJ_UINT32 passno;
209
+
210
+ opj_tcd_tile_t *tcd_tile = tcd->tcd_image->tiles;
211
+
212
+ tcd_tile->distolayer[layno] = 0; /* fixed_quality */
213
+
214
+ for (compno = 0; compno < tcd_tile->numcomps; compno++) {
215
+ opj_tcd_tilecomp_t *tilec = &tcd_tile->comps[compno];
216
+
217
+ for (resno = 0; resno < tilec->numresolutions; resno++) {
218
+ opj_tcd_resolution_t *res = &tilec->resolutions[resno];
219
+
220
+ for (bandno = 0; bandno < res->numbands; bandno++) {
221
+ opj_tcd_band_t *band = &res->bands[bandno];
222
+
223
+ for (precno = 0; precno < res->pw * res->ph; precno++) {
224
+ opj_tcd_precinct_t *prc = &band->precincts[precno];
225
+
226
+ for (cblkno = 0; cblkno < prc->cw * prc->ch; cblkno++) {
227
+ opj_tcd_cblk_enc_t *cblk = &prc->cblks.enc[cblkno];
228
+ opj_tcd_layer_t *layer = &cblk->layers[layno];
229
+ OPJ_UINT32 n;
230
+
231
+ if (layno == 0) {
232
+ cblk->numpassesinlayers = 0;
233
+ }
234
+
235
+ n = cblk->numpassesinlayers;
236
+
237
+ for (passno = cblk->numpassesinlayers; passno < cblk->totalpasses; passno++) {
238
+ OPJ_UINT32 dr;
239
+ OPJ_FLOAT64 dd;
240
+ opj_tcd_pass_t *pass = &cblk->passes[passno];
241
+
242
+ if (n == 0) {
243
+ dr = pass->rate;
244
+ dd = pass->distortiondec;
245
+ } else {
246
+ dr = pass->rate - cblk->passes[n - 1].rate;
247
+ dd = pass->distortiondec - cblk->passes[n - 1].distortiondec;
248
+ }
249
+
250
+ if (!dr) {
251
+ if (dd != 0)
252
+ n = passno + 1;
253
+ continue;
254
+ }
255
+ if (dd / dr >= thresh)
256
+ n = passno + 1;
257
+ }
258
+
259
+ layer->numpasses = n - cblk->numpassesinlayers;
260
+
261
+ if (!layer->numpasses) {
262
+ layer->disto = 0;
263
+ continue;
264
+ }
265
+
266
+ if (cblk->numpassesinlayers == 0) {
267
+ layer->len = cblk->passes[n - 1].rate;
268
+ layer->data = cblk->data;
269
+ layer->disto = cblk->passes[n - 1].distortiondec;
270
+ } else {
271
+ layer->len = cblk->passes[n - 1].rate - cblk->passes[cblk->numpassesinlayers - 1].rate;
272
+ layer->data = cblk->data + cblk->passes[cblk->numpassesinlayers - 1].rate;
273
+ layer->disto = cblk->passes[n - 1].distortiondec - cblk->passes[cblk->numpassesinlayers - 1].distortiondec;
274
+ }
275
+
276
+ tcd_tile->distolayer[layno] += layer->disto; /* fixed_quality */
277
+
278
+ if (final)
279
+ cblk->numpassesinlayers = n;
280
+ }
281
+ }
282
+ }
283
+ }
284
+ }
285
+ }
286
+
287
+ void opj_tcd_makelayer_fixed(opj_tcd_t *tcd, OPJ_UINT32 layno, OPJ_UINT32 final) {
288
+ OPJ_UINT32 compno, resno, bandno, precno, cblkno;
289
+ OPJ_INT32 value; /*, matrice[tcd_tcp->numlayers][tcd_tile->comps[0].numresolutions][3]; */
290
+ OPJ_INT32 matrice[10][10][3];
291
+ OPJ_UINT32 i, j, k;
292
+
293
+ opj_cp_t *cp = tcd->cp;
294
+ opj_tcd_tile_t *tcd_tile = tcd->tcd_image->tiles;
295
+ opj_tcp_t *tcd_tcp = tcd->tcp;
296
+
297
+ for (compno = 0; compno < tcd_tile->numcomps; compno++) {
298
+ opj_tcd_tilecomp_t *tilec = &tcd_tile->comps[compno];
299
+
300
+ for (i = 0; i < tcd_tcp->numlayers; i++) {
301
+ for (j = 0; j < tilec->numresolutions; j++) {
302
+ for (k = 0; k < 3; k++) {
303
+ matrice[i][j][k] =
304
+ (OPJ_INT32) ((OPJ_FLOAT32)cp->m_specific_param.m_enc.m_matrice[i * tilec->numresolutions * 3 + j * 3 + k]
305
+ * (OPJ_FLOAT32) (tcd->image->comps[compno].prec / 16.0));
306
+ }
307
+ }
308
+ }
309
+
310
+ for (resno = 0; resno < tilec->numresolutions; resno++) {
311
+ opj_tcd_resolution_t *res = &tilec->resolutions[resno];
312
+
313
+ for (bandno = 0; bandno < res->numbands; bandno++) {
314
+ opj_tcd_band_t *band = &res->bands[bandno];
315
+
316
+ for (precno = 0; precno < res->pw * res->ph; precno++) {
317
+ opj_tcd_precinct_t *prc = &band->precincts[precno];
318
+
319
+ for (cblkno = 0; cblkno < prc->cw * prc->ch; cblkno++) {
320
+ opj_tcd_cblk_enc_t *cblk = &prc->cblks.enc[cblkno];
321
+ opj_tcd_layer_t *layer = &cblk->layers[layno];
322
+ OPJ_UINT32 n;
323
+ OPJ_INT32 imsb = (OPJ_INT32)(tcd->image->comps[compno].prec - cblk->numbps); /* number of bit-plan equal to zero */
324
+
325
+ /* Correction of the matrix of coefficient to include the IMSB information */
326
+ if (layno == 0) {
327
+ value = matrice[layno][resno][bandno];
328
+ if (imsb >= value) {
329
+ value = 0;
330
+ } else {
331
+ value -= imsb;
332
+ }
333
+ } else {
334
+ value = matrice[layno][resno][bandno] - matrice[layno - 1][resno][bandno];
335
+ if (imsb >= matrice[layno - 1][resno][bandno]) {
336
+ value -= (imsb - matrice[layno - 1][resno][bandno]);
337
+ if (value < 0) {
338
+ value = 0;
339
+ }
340
+ }
341
+ }
342
+
343
+ if (layno == 0) {
344
+ cblk->numpassesinlayers = 0;
345
+ }
346
+
347
+ n = cblk->numpassesinlayers;
348
+ if (cblk->numpassesinlayers == 0) {
349
+ if (value != 0) {
350
+ n = 3 * (OPJ_UINT32)value - 2 + cblk->numpassesinlayers;
351
+ } else {
352
+ n = cblk->numpassesinlayers;
353
+ }
354
+ } else {
355
+ n = 3 * (OPJ_UINT32)value + cblk->numpassesinlayers;
356
+ }
357
+
358
+ layer->numpasses = n - cblk->numpassesinlayers;
359
+
360
+ if (!layer->numpasses)
361
+ continue;
362
+
363
+ if (cblk->numpassesinlayers == 0) {
364
+ layer->len = cblk->passes[n - 1].rate;
365
+ layer->data = cblk->data;
366
+ } else {
367
+ layer->len = cblk->passes[n - 1].rate - cblk->passes[cblk->numpassesinlayers - 1].rate;
368
+ layer->data = cblk->data + cblk->passes[cblk->numpassesinlayers - 1].rate;
369
+ }
370
+
371
+ if (final)
372
+ cblk->numpassesinlayers = n;
373
+ }
374
+ }
375
+ }
376
+ }
377
+ }
378
+ }
379
+
380
+ OPJ_BOOL opj_tcd_rateallocate( opj_tcd_t *tcd,
381
+ OPJ_BYTE *dest,
382
+ OPJ_UINT32 * p_data_written,
383
+ OPJ_UINT32 len,
384
+ opj_codestream_info_t *cstr_info)
385
+ {
386
+ OPJ_UINT32 compno, resno, bandno, precno, cblkno, layno;
387
+ OPJ_UINT32 passno;
388
+ OPJ_FLOAT64 min, max;
389
+ OPJ_FLOAT64 cumdisto[100]; /* fixed_quality */
390
+ const OPJ_FLOAT64 K = 1; /* 1.1; fixed_quality */
391
+ OPJ_FLOAT64 maxSE = 0;
392
+
393
+ opj_cp_t *cp = tcd->cp;
394
+ opj_tcd_tile_t *tcd_tile = tcd->tcd_image->tiles;
395
+ opj_tcp_t *tcd_tcp = tcd->tcp;
396
+
397
+ min = DBL_MAX;
398
+ max = 0;
399
+
400
+ tcd_tile->numpix = 0; /* fixed_quality */
401
+
402
+ for (compno = 0; compno < tcd_tile->numcomps; compno++) {
403
+ opj_tcd_tilecomp_t *tilec = &tcd_tile->comps[compno];
404
+ tilec->numpix = 0;
405
+
406
+ for (resno = 0; resno < tilec->numresolutions; resno++) {
407
+ opj_tcd_resolution_t *res = &tilec->resolutions[resno];
408
+
409
+ for (bandno = 0; bandno < res->numbands; bandno++) {
410
+ opj_tcd_band_t *band = &res->bands[bandno];
411
+
412
+ for (precno = 0; precno < res->pw * res->ph; precno++) {
413
+ opj_tcd_precinct_t *prc = &band->precincts[precno];
414
+
415
+ for (cblkno = 0; cblkno < prc->cw * prc->ch; cblkno++) {
416
+ opj_tcd_cblk_enc_t *cblk = &prc->cblks.enc[cblkno];
417
+
418
+ for (passno = 0; passno < cblk->totalpasses; passno++) {
419
+ opj_tcd_pass_t *pass = &cblk->passes[passno];
420
+ OPJ_INT32 dr;
421
+ OPJ_FLOAT64 dd, rdslope;
422
+
423
+ if (passno == 0) {
424
+ dr = (OPJ_INT32)pass->rate;
425
+ dd = pass->distortiondec;
426
+ } else {
427
+ dr = (OPJ_INT32)(pass->rate - cblk->passes[passno - 1].rate);
428
+ dd = pass->distortiondec - cblk->passes[passno - 1].distortiondec;
429
+ }
430
+
431
+ if (dr == 0) {
432
+ continue;
433
+ }
434
+
435
+ rdslope = dd / dr;
436
+ if (rdslope < min) {
437
+ min = rdslope;
438
+ }
439
+
440
+ if (rdslope > max) {
441
+ max = rdslope;
442
+ }
443
+ } /* passno */
444
+
445
+ /* fixed_quality */
446
+ tcd_tile->numpix += ((cblk->x1 - cblk->x0) * (cblk->y1 - cblk->y0));
447
+ tilec->numpix += ((cblk->x1 - cblk->x0) * (cblk->y1 - cblk->y0));
448
+ } /* cbklno */
449
+ } /* precno */
450
+ } /* bandno */
451
+ } /* resno */
452
+
453
+ maxSE += (((OPJ_FLOAT64)(1 << tcd->image->comps[compno].prec) - 1.0)
454
+ * ((OPJ_FLOAT64)(1 << tcd->image->comps[compno].prec) -1.0))
455
+ * ((OPJ_FLOAT64)(tilec->numpix));
456
+ } /* compno */
457
+
458
+ /* index file */
459
+ if(cstr_info) {
460
+ opj_tile_info_t *tile_info = &cstr_info->tile[tcd->tcd_tileno];
461
+ tile_info->numpix = tcd_tile->numpix;
462
+ tile_info->distotile = tcd_tile->distotile;
463
+ tile_info->thresh = (OPJ_FLOAT64 *) opj_malloc(tcd_tcp->numlayers * sizeof(OPJ_FLOAT64));
464
+ }
465
+
466
+ for (layno = 0; layno < tcd_tcp->numlayers; layno++) {
467
+ OPJ_FLOAT64 lo = min;
468
+ OPJ_FLOAT64 hi = max;
469
+ OPJ_BOOL success = OPJ_FALSE;
470
+ OPJ_UINT32 maxlen = tcd_tcp->rates[layno] ? opj_uint_min(((OPJ_UINT32) ceil(tcd_tcp->rates[layno])), len) : len;
471
+ OPJ_FLOAT64 goodthresh = 0;
472
+ OPJ_FLOAT64 stable_thresh = 0;
473
+ OPJ_UINT32 i;
474
+ OPJ_FLOAT64 distotarget; /* fixed_quality */
475
+
476
+ /* fixed_quality */
477
+ distotarget = tcd_tile->distotile - ((K * maxSE) / pow((OPJ_FLOAT32)10, tcd_tcp->distoratio[layno] / 10));
478
+
479
+ /* Don't try to find an optimal threshold but rather take everything not included yet, if
480
+ -r xx,yy,zz,0 (disto_alloc == 1 and rates == 0)
481
+ -q xx,yy,zz,0 (fixed_quality == 1 and distoratio == 0)
482
+ ==> possible to have some lossy layers and the last layer for sure lossless */
483
+ if ( ((cp->m_specific_param.m_enc.m_disto_alloc==1) && (tcd_tcp->rates[layno]>0)) || ((cp->m_specific_param.m_enc.m_fixed_quality==1) && (tcd_tcp->distoratio[layno]>0))) {
484
+ opj_t2_t*t2 = opj_t2_create(tcd->image, cp);
485
+ OPJ_FLOAT64 thresh = 0;
486
+
487
+ if (t2 == 00) {
488
+ return OPJ_FALSE;
489
+ }
490
+
491
+ for (i = 0; i < 128; ++i) {
492
+ OPJ_FLOAT64 distoachieved = 0; /* fixed_quality */
493
+
494
+ thresh = (lo + hi) / 2;
495
+
496
+ opj_tcd_makelayer(tcd, layno, thresh, 0);
497
+
498
+ if (cp->m_specific_param.m_enc.m_fixed_quality) { /* fixed_quality */
499
+ if(cp->m_specific_param.m_enc.m_cinema){
500
+ if (! opj_t2_encode_packets(t2,tcd->tcd_tileno, tcd_tile, layno + 1, dest, p_data_written, maxlen, cstr_info,tcd->cur_tp_num,tcd->tp_pos,tcd->cur_pino,THRESH_CALC)) {
501
+
502
+ lo = thresh;
503
+ continue;
504
+ }
505
+ else {
506
+ distoachieved = layno == 0 ?
507
+ tcd_tile->distolayer[0] : cumdisto[layno - 1] + tcd_tile->distolayer[layno];
508
+
509
+ if (distoachieved < distotarget) {
510
+ hi=thresh;
511
+ stable_thresh = thresh;
512
+ continue;
513
+ }else{
514
+ lo=thresh;
515
+ }
516
+ }
517
+ }else{
518
+ distoachieved = (layno == 0) ?
519
+ tcd_tile->distolayer[0] : (cumdisto[layno - 1] + tcd_tile->distolayer[layno]);
520
+
521
+ if (distoachieved < distotarget) {
522
+ hi = thresh;
523
+ stable_thresh = thresh;
524
+ continue;
525
+ }
526
+ lo = thresh;
527
+ }
528
+ } else {
529
+ if (! opj_t2_encode_packets(t2, tcd->tcd_tileno, tcd_tile, layno + 1, dest,p_data_written, maxlen, cstr_info,tcd->cur_tp_num,tcd->tp_pos,tcd->cur_pino,THRESH_CALC))
530
+ {
531
+ /* TODO: what to do with l ??? seek / tell ??? */
532
+ /* opj_event_msg(tcd->cinfo, EVT_INFO, "rate alloc: len=%d, max=%d\n", l, maxlen); */
533
+ lo = thresh;
534
+ continue;
535
+ }
536
+
537
+ hi = thresh;
538
+ stable_thresh = thresh;
539
+ }
540
+ }
541
+
542
+ success = OPJ_TRUE;
543
+ goodthresh = stable_thresh == 0? thresh : stable_thresh;
544
+
545
+ opj_t2_destroy(t2);
546
+ } else {
547
+ success = OPJ_TRUE;
548
+ goodthresh = min;
549
+ }
550
+
551
+ if (!success) {
552
+ return OPJ_FALSE;
553
+ }
554
+
555
+ if(cstr_info) { /* Threshold for Marcela Index */
556
+ cstr_info->tile[tcd->tcd_tileno].thresh[layno] = goodthresh;
557
+ }
558
+
559
+ opj_tcd_makelayer(tcd, layno, goodthresh, 1);
560
+
561
+ /* fixed_quality */
562
+ cumdisto[layno] = (layno == 0) ? tcd_tile->distolayer[0] : (cumdisto[layno - 1] + tcd_tile->distolayer[layno]);
563
+ }
564
+
565
+ return OPJ_TRUE;
566
+ }
567
+
568
+ OPJ_BOOL opj_tcd_init( opj_tcd_t *p_tcd,
569
+ opj_image_t * p_image,
570
+ opj_cp_t * p_cp )
571
+ {
572
+ OPJ_UINT32 l_tile_comp_size;
573
+
574
+ p_tcd->image = p_image;
575
+ p_tcd->cp = p_cp;
576
+
577
+ p_tcd->tcd_image->tiles = (opj_tcd_tile_t *) opj_malloc(sizeof(opj_tcd_tile_t));
578
+ if (! p_tcd->tcd_image->tiles) {
579
+ return OPJ_FALSE;
580
+ }
581
+ memset(p_tcd->tcd_image->tiles,0, sizeof(opj_tcd_tile_t));
582
+
583
+ l_tile_comp_size = p_image->numcomps * (OPJ_UINT32)sizeof(opj_tcd_tilecomp_t);
584
+ p_tcd->tcd_image->tiles->comps = (opj_tcd_tilecomp_t *) opj_malloc(l_tile_comp_size);
585
+ if (! p_tcd->tcd_image->tiles->comps ) {
586
+ return OPJ_FALSE;
587
+ }
588
+ memset( p_tcd->tcd_image->tiles->comps , 0 , l_tile_comp_size);
589
+
590
+ p_tcd->tcd_image->tiles->numcomps = p_image->numcomps;
591
+ p_tcd->tp_pos = p_cp->m_specific_param.m_enc.m_tp_pos;
592
+
593
+ return OPJ_TRUE;
594
+ }
595
+
596
+ /**
597
+ Destroy a previously created TCD handle
598
+ */
599
+ void opj_tcd_destroy(opj_tcd_t *tcd) {
600
+ if (tcd) {
601
+ opj_tcd_free_tile(tcd);
602
+
603
+ if (tcd->tcd_image) {
604
+ opj_free(tcd->tcd_image);
605
+ tcd->tcd_image = 00;
606
+ }
607
+ opj_free(tcd);
608
+ }
609
+ }
610
+
611
+ /* ----------------------------------------------------------------------- */
612
+ #define OPJ_MACRO_TCD_ALLOCATE(FUNCTION,TYPE,FRACTION,ELEMENT,FUNCTION_ELEMENT) \
613
+ OPJ_BOOL FUNCTION ( opj_tcd_t *p_tcd, \
614
+ OPJ_UINT32 p_tile_no \
615
+ ) \
616
+ { \
617
+ OPJ_UINT32 (*l_gain_ptr)(OPJ_UINT32) = 00; \
618
+ OPJ_UINT32 compno, resno, bandno, precno, cblkno; \
619
+ opj_tcp_t * l_tcp = 00; \
620
+ opj_cp_t * l_cp = 00; \
621
+ opj_tcd_tile_t * l_tile = 00; \
622
+ opj_tccp_t *l_tccp = 00; \
623
+ opj_tcd_tilecomp_t *l_tilec = 00; \
624
+ opj_image_comp_t * l_image_comp = 00; \
625
+ opj_tcd_resolution_t *l_res = 00; \
626
+ opj_tcd_band_t *l_band = 00; \
627
+ opj_stepsize_t * l_step_size = 00; \
628
+ opj_tcd_precinct_t *l_current_precinct = 00; \
629
+ TYPE* l_code_block = 00; \
630
+ opj_image_t *l_image = 00; \
631
+ OPJ_UINT32 p,q; \
632
+ OPJ_UINT32 l_level_no; \
633
+ OPJ_UINT32 l_pdx, l_pdy; \
634
+ OPJ_UINT32 l_gain; \
635
+ OPJ_INT32 l_x0b, l_y0b; \
636
+ /* extent of precincts , top left, bottom right**/ \
637
+ OPJ_INT32 l_tl_prc_x_start, l_tl_prc_y_start, l_br_prc_x_end, l_br_prc_y_end; \
638
+ /* number of precinct for a resolution */ \
639
+ OPJ_UINT32 l_nb_precincts; \
640
+ /* room needed to store l_nb_precinct precinct for a resolution */ \
641
+ OPJ_UINT32 l_nb_precinct_size; \
642
+ /* number of code blocks for a precinct*/ \
643
+ OPJ_UINT32 l_nb_code_blocks; \
644
+ /* room needed to store l_nb_code_blocks code blocks for a precinct*/ \
645
+ OPJ_UINT32 l_nb_code_blocks_size; \
646
+ /* size of data for a tile */ \
647
+ OPJ_UINT32 l_data_size; \
648
+ \
649
+ l_cp = p_tcd->cp; \
650
+ l_tcp = &(l_cp->tcps[p_tile_no]); \
651
+ l_tile = p_tcd->tcd_image->tiles; \
652
+ l_tccp = l_tcp->tccps; \
653
+ l_tilec = l_tile->comps; \
654
+ l_image = p_tcd->image; \
655
+ l_image_comp = p_tcd->image->comps; \
656
+ \
657
+ p = p_tile_no % l_cp->tw; /* tile coordinates */ \
658
+ q = p_tile_no / l_cp->tw; \
659
+ /*fprintf(stderr, "Tile coordinate = %d,%d\n", p, q);*/ \
660
+ \
661
+ /* 4 borders of the tile rescale on the image if necessary */ \
662
+ l_tile->x0 = opj_int_max((OPJ_INT32)(l_cp->tx0 + p * l_cp->tdx), (OPJ_INT32)l_image->x0); \
663
+ l_tile->y0 = opj_int_max((OPJ_INT32)(l_cp->ty0 + q * l_cp->tdy), (OPJ_INT32)l_image->y0); \
664
+ l_tile->x1 = opj_int_min((OPJ_INT32)(l_cp->tx0 + (p + 1) * l_cp->tdx), (OPJ_INT32)l_image->x1); \
665
+ l_tile->y1 = opj_int_min((OPJ_INT32)(l_cp->ty0 + (q + 1) * l_cp->tdy), (OPJ_INT32)l_image->y1); \
666
+ /* testcase 1888.pdf.asan.35.988 */ \
667
+ if (l_tccp->numresolutions == 0) { \
668
+ fprintf(stderr, "tiles require at least one resolution\n"); \
669
+ return OPJ_FALSE; \
670
+ } \
671
+ /*fprintf(stderr, "Tile border = %d,%d,%d,%d\n", l_tile->x0, l_tile->y0,l_tile->x1,l_tile->y1);*/ \
672
+ \
673
+ /*tile->numcomps = image->numcomps; */ \
674
+ for(compno = 0; compno < l_tile->numcomps; ++compno) { \
675
+ /*fprintf(stderr, "compno = %d/%d\n", compno, l_tile->numcomps);*/ \
676
+ \
677
+ /* border of each l_tile component (global) */ \
678
+ l_tilec->x0 = opj_int_ceildiv(l_tile->x0, (OPJ_INT32)l_image_comp->dx); \
679
+ l_tilec->y0 = opj_int_ceildiv(l_tile->y0, (OPJ_INT32)l_image_comp->dy); \
680
+ l_tilec->x1 = opj_int_ceildiv(l_tile->x1, (OPJ_INT32)l_image_comp->dx); \
681
+ l_tilec->y1 = opj_int_ceildiv(l_tile->y1, (OPJ_INT32)l_image_comp->dy); \
682
+ /*fprintf(stderr, "\tTile compo border = %d,%d,%d,%d\n", l_tilec->x0, l_tilec->y0,l_tilec->x1,l_tilec->y1);*/ \
683
+ \
684
+ l_data_size = (OPJ_UINT32)(l_tilec->x1 - l_tilec->x0) \
685
+ * (OPJ_UINT32)(l_tilec->y1 - l_tilec->y0) * (OPJ_UINT32)sizeof(OPJ_UINT32 );\
686
+ l_tilec->numresolutions = l_tccp->numresolutions; \
687
+ if (l_tccp->numresolutions < l_cp->m_specific_param.m_dec.m_reduce) { \
688
+ l_tilec->minimum_num_resolutions = 1; \
689
+ } \
690
+ else { \
691
+ l_tilec->minimum_num_resolutions = l_tccp->numresolutions \
692
+ - l_cp->m_specific_param.m_dec.m_reduce; \
693
+ } \
694
+ \
695
+ if (l_tilec->data == 00) { \
696
+ l_tilec->data = (OPJ_INT32 *) opj_malloc(l_data_size); \
697
+ if (! l_tilec->data ) { \
698
+ return OPJ_FALSE; \
699
+ } \
700
+ /*fprintf(stderr, "\tAllocate data of tilec (int): %d x OPJ_UINT32\n",l_data_size);*/ \
701
+ \
702
+ l_tilec->data_size = l_data_size; \
703
+ } \
704
+ else if (l_data_size > l_tilec->data_size) { \
705
+ OPJ_INT32 * new_data = (OPJ_INT32 *) opj_realloc(l_tilec->data, l_data_size); \
706
+ /* opj_event_msg(p_manager, EVT_ERROR, "Not enough memory to handle tile data\n"); */ \
707
+ fprintf(stderr, "Not enough memory to handle tile data\n"); \
708
+ if (! new_data) { \
709
+ opj_free(l_tilec->data); \
710
+ l_tilec->data = NULL; \
711
+ l_tilec->data_size = 0; \
712
+ return OPJ_FALSE; \
713
+ } \
714
+ l_tilec->data = new_data; \
715
+ /*fprintf(stderr, "\tReallocate data of tilec (int): from %d to %d x OPJ_UINT32\n", l_tilec->data_size, l_data_size);*/ \
716
+ l_tilec->data_size = l_data_size; \
717
+ } \
718
+ \
719
+ l_data_size = l_tilec->numresolutions * (OPJ_UINT32)sizeof(opj_tcd_resolution_t); \
720
+ \
721
+ if (l_tilec->resolutions == 00) { \
722
+ l_tilec->resolutions = (opj_tcd_resolution_t *) opj_malloc(l_data_size); \
723
+ if (! l_tilec->resolutions ) { \
724
+ return OPJ_FALSE; \
725
+ } \
726
+ /*fprintf(stderr, "\tAllocate resolutions of tilec (opj_tcd_resolution_t): %d\n",l_data_size);*/ \
727
+ l_tilec->resolutions_size = l_data_size; \
728
+ memset(l_tilec->resolutions,0,l_data_size); \
729
+ } \
730
+ else if (l_data_size > l_tilec->resolutions_size) { \
731
+ opj_tcd_resolution_t* new_resolutions = (opj_tcd_resolution_t *) opj_realloc(l_tilec->resolutions, l_data_size); \
732
+ if (! new_resolutions) { \
733
+ /* opj_event_msg(p_manager, EVT_ERROR, "Not enough memory to tile resolutions\n"); */ \
734
+ fprintf(stderr, "Not enough memory to tile resolutions\n"); \
735
+ opj_free(l_tilec->resolutions); \
736
+ l_tilec->resolutions = NULL; \
737
+ l_tilec->resolutions_size = 0; \
738
+ return OPJ_FALSE; \
739
+ } \
740
+ l_tilec->resolutions = new_resolutions; \
741
+ /*fprintf(stderr, "\tReallocate data of tilec (int): from %d to %d x OPJ_UINT32\n", l_tilec->resolutions_size, l_data_size);*/ \
742
+ memset(((OPJ_BYTE*) l_tilec->resolutions)+l_tilec->resolutions_size,0,l_data_size - l_tilec->resolutions_size); \
743
+ l_tilec->resolutions_size = l_data_size; \
744
+ } \
745
+ \
746
+ l_level_no = l_tilec->numresolutions - 1; \
747
+ l_res = l_tilec->resolutions; \
748
+ l_step_size = l_tccp->stepsizes; \
749
+ if (l_tccp->qmfbid == 0) { \
750
+ l_gain_ptr = &opj_dwt_getgain_real; \
751
+ } \
752
+ else { \
753
+ l_gain_ptr = &opj_dwt_getgain; \
754
+ } \
755
+ /*fprintf(stderr, "\tlevel_no=%d\n",l_level_no);*/ \
756
+ \
757
+ for(resno = 0; resno < l_tilec->numresolutions; ++resno) { \
758
+ /*fprintf(stderr, "\t\tresno = %d/%d\n", resno, l_tilec->numresolutions);*/ \
759
+ OPJ_INT32 tlcbgxstart, tlcbgystart /*, brcbgxend, brcbgyend*/; \
760
+ OPJ_UINT32 cbgwidthexpn, cbgheightexpn; \
761
+ OPJ_UINT32 cblkwidthexpn, cblkheightexpn; \
762
+ \
763
+ /* border for each resolution level (global) */ \
764
+ l_res->x0 = opj_int_ceildivpow2(l_tilec->x0, (OPJ_INT32)l_level_no); \
765
+ l_res->y0 = opj_int_ceildivpow2(l_tilec->y0, (OPJ_INT32)l_level_no); \
766
+ l_res->x1 = opj_int_ceildivpow2(l_tilec->x1, (OPJ_INT32)l_level_no); \
767
+ l_res->y1 = opj_int_ceildivpow2(l_tilec->y1, (OPJ_INT32)l_level_no); \
768
+ /*fprintf(stderr, "\t\t\tres_x0= %d, res_y0 =%d, res_x1=%d, res_y1=%d\n", l_res->x0, l_res->y0, l_res->x1, l_res->y1);*/ \
769
+ /* p. 35, table A-23, ISO/IEC FDIS154444-1 : 2000 (18 august 2000) */ \
770
+ l_pdx = l_tccp->prcw[resno]; \
771
+ l_pdy = l_tccp->prch[resno]; \
772
+ /*fprintf(stderr, "\t\t\tpdx=%d, pdy=%d\n", l_pdx, l_pdy);*/ \
773
+ /* p. 64, B.6, ISO/IEC FDIS15444-1 : 2000 (18 august 2000) */ \
774
+ l_tl_prc_x_start = opj_int_floordivpow2(l_res->x0, (OPJ_INT32)l_pdx) << l_pdx; \
775
+ l_tl_prc_y_start = opj_int_floordivpow2(l_res->y0, (OPJ_INT32)l_pdy) << l_pdy; \
776
+ l_br_prc_x_end = opj_int_ceildivpow2(l_res->x1, (OPJ_INT32)l_pdx) << l_pdx; \
777
+ l_br_prc_y_end = opj_int_ceildivpow2(l_res->y1, (OPJ_INT32)l_pdy) << l_pdy; \
778
+ /*fprintf(stderr, "\t\t\tprc_x_start=%d, prc_y_start=%d, br_prc_x_end=%d, br_prc_y_end=%d \n", l_tl_prc_x_start, l_tl_prc_y_start, l_br_prc_x_end ,l_br_prc_y_end );*/ \
779
+ \
780
+ l_res->pw = (l_res->x0 == l_res->x1) ? 0 : (OPJ_UINT32)((l_br_prc_x_end - l_tl_prc_x_start) >> l_pdx); \
781
+ l_res->ph = (l_res->y0 == l_res->y1) ? 0 : (OPJ_UINT32)((l_br_prc_y_end - l_tl_prc_y_start) >> l_pdy); \
782
+ /*fprintf(stderr, "\t\t\tres_pw=%d, res_ph=%d\n", l_res->pw, l_res->ph );*/ \
783
+ \
784
+ l_nb_precincts = l_res->pw * l_res->ph; \
785
+ l_nb_precinct_size = l_nb_precincts * (OPJ_UINT32)sizeof(opj_tcd_precinct_t); \
786
+ if (resno == 0) { \
787
+ tlcbgxstart = l_tl_prc_x_start; \
788
+ tlcbgystart = l_tl_prc_y_start; \
789
+ /*brcbgxend = l_br_prc_x_end;*/ \
790
+ /* brcbgyend = l_br_prc_y_end;*/ \
791
+ cbgwidthexpn = l_pdx; \
792
+ cbgheightexpn = l_pdy; \
793
+ l_res->numbands = 1; \
794
+ } \
795
+ else { \
796
+ tlcbgxstart = opj_int_ceildivpow2(l_tl_prc_x_start, 1); \
797
+ tlcbgystart = opj_int_ceildivpow2(l_tl_prc_y_start, 1); \
798
+ /*brcbgxend = opj_int_ceildivpow2(l_br_prc_x_end, 1);*/ \
799
+ /*brcbgyend = opj_int_ceildivpow2(l_br_prc_y_end, 1);*/ \
800
+ cbgwidthexpn = l_pdx - 1; \
801
+ cbgheightexpn = l_pdy - 1; \
802
+ l_res->numbands = 3; \
803
+ } \
804
+ \
805
+ cblkwidthexpn = opj_uint_min(l_tccp->cblkw, cbgwidthexpn); \
806
+ cblkheightexpn = opj_uint_min(l_tccp->cblkh, cbgheightexpn); \
807
+ l_band = l_res->bands; \
808
+ \
809
+ for (bandno = 0; bandno < l_res->numbands; ++bandno) { \
810
+ OPJ_INT32 numbps; \
811
+ /*fprintf(stderr, "\t\t\tband_no=%d/%d\n", bandno, l_res->numbands );*/ \
812
+ \
813
+ if (resno == 0) { \
814
+ l_band->bandno = 0 ; \
815
+ l_band->x0 = opj_int_ceildivpow2(l_tilec->x0, (OPJ_INT32)l_level_no); \
816
+ l_band->y0 = opj_int_ceildivpow2(l_tilec->y0, (OPJ_INT32)l_level_no); \
817
+ l_band->x1 = opj_int_ceildivpow2(l_tilec->x1, (OPJ_INT32)l_level_no); \
818
+ l_band->y1 = opj_int_ceildivpow2(l_tilec->y1, (OPJ_INT32)l_level_no); \
819
+ } \
820
+ else { \
821
+ l_band->bandno = bandno + 1; \
822
+ /* x0b = 1 if bandno = 1 or 3 */ \
823
+ l_x0b = l_band->bandno&1; \
824
+ /* y0b = 1 if bandno = 2 or 3 */ \
825
+ l_y0b = (OPJ_INT32)((l_band->bandno)>>1); \
826
+ /* l_band border (global) */ \
827
+ l_band->x0 = opj_int_ceildivpow2(l_tilec->x0 - (1 << l_level_no) * l_x0b, (OPJ_INT32)(l_level_no + 1)); \
828
+ l_band->y0 = opj_int_ceildivpow2(l_tilec->y0 - (1 << l_level_no) * l_y0b, (OPJ_INT32)(l_level_no + 1)); \
829
+ l_band->x1 = opj_int_ceildivpow2(l_tilec->x1 - (1 << l_level_no) * l_x0b, (OPJ_INT32)(l_level_no + 1)); \
830
+ l_band->y1 = opj_int_ceildivpow2(l_tilec->y1 - (1 << l_level_no) * l_y0b, (OPJ_INT32)(l_level_no + 1)); \
831
+ } \
832
+ \
833
+ /** avoid an if with storing function pointer */ \
834
+ l_gain = (*l_gain_ptr) (l_band->bandno); \
835
+ numbps = (OPJ_INT32)(l_image_comp->prec + l_gain); \
836
+ l_band->stepsize = (OPJ_FLOAT32)(((1.0 + l_step_size->mant / 2048.0) * pow(2.0, (OPJ_INT32) (numbps - l_step_size->expn)))) * FRACTION; \
837
+ l_band->numbps = l_step_size->expn + (OPJ_INT32)l_tccp->numgbits - 1; /* WHY -1 ? */ \
838
+ \
839
+ if (! l_band->precincts) { \
840
+ l_band->precincts = (opj_tcd_precinct_t *) opj_malloc( /*3 * */ l_nb_precinct_size); \
841
+ if (! l_band->precincts) { \
842
+ return OPJ_FALSE; \
843
+ } \
844
+ /*fprintf(stderr, "\t\t\t\tAllocate precincts of a band (opj_tcd_precinct_t): %d\n",l_nb_precinct_size); */ \
845
+ memset(l_band->precincts,0,l_nb_precinct_size); \
846
+ l_band->precincts_data_size = l_nb_precinct_size; \
847
+ } \
848
+ else if (l_band->precincts_data_size < l_nb_precinct_size) { \
849
+ \
850
+ opj_tcd_precinct_t * new_precincts = (opj_tcd_precinct_t *) opj_realloc(l_band->precincts,/*3 * */ l_nb_precinct_size); \
851
+ if (! new_precincts) { \
852
+ /* opj_event_msg(p_manager, EVT_ERROR, "Not enough memory to handle band precints\n"); */ \
853
+ fprintf(stderr, "Not enough memory to handle band precints\n"); \
854
+ opj_free(l_band->precincts); \
855
+ l_band->precincts = NULL; \
856
+ l_band->precincts_data_size = 0; \
857
+ return OPJ_FALSE; \
858
+ } \
859
+ l_band->precincts = new_precincts; \
860
+ /*fprintf(stderr, "\t\t\t\tReallocate precincts of a band (opj_tcd_precinct_t): from %d to %d\n",l_band->precincts_data_size, l_nb_precinct_size);*/ \
861
+ memset(((OPJ_BYTE *) l_band->precincts) + l_band->precincts_data_size,0,l_nb_precinct_size - l_band->precincts_data_size); \
862
+ l_band->precincts_data_size = l_nb_precinct_size; \
863
+ } \
864
+ \
865
+ l_current_precinct = l_band->precincts; \
866
+ for (precno = 0; precno < l_nb_precincts; ++precno) { \
867
+ OPJ_INT32 tlcblkxstart, tlcblkystart, brcblkxend, brcblkyend; \
868
+ OPJ_INT32 cbgxstart = tlcbgxstart + (OPJ_INT32)(precno % l_res->pw) * (1 << cbgwidthexpn); \
869
+ OPJ_INT32 cbgystart = tlcbgystart + (OPJ_INT32)(precno / l_res->pw) * (1 << cbgheightexpn); \
870
+ OPJ_INT32 cbgxend = cbgxstart + (1 << cbgwidthexpn); \
871
+ OPJ_INT32 cbgyend = cbgystart + (1 << cbgheightexpn); \
872
+ /*fprintf(stderr, "\t precno=%d; bandno=%d, resno=%d; compno=%d\n", precno, bandno , resno, compno);*/ \
873
+ /*fprintf(stderr, "\t tlcbgxstart(=%d) + (precno(=%d) percent res->pw(=%d)) * (1 << cbgwidthexpn(=%d)) \n",tlcbgxstart,precno,l_res->pw,cbgwidthexpn);*/ \
874
+ \
875
+ /* precinct size (global) */ \
876
+ /*fprintf(stderr, "\t cbgxstart=%d, l_band->x0 = %d \n",cbgxstart, l_band->x0);*/ \
877
+ \
878
+ l_current_precinct->x0 = opj_int_max(cbgxstart, l_band->x0); \
879
+ l_current_precinct->y0 = opj_int_max(cbgystart, l_band->y0); \
880
+ l_current_precinct->x1 = opj_int_min(cbgxend, l_band->x1); \
881
+ l_current_precinct->y1 = opj_int_min(cbgyend, l_band->y1); \
882
+ /*fprintf(stderr, "\t prc_x0=%d; prc_y0=%d, prc_x1=%d; prc_y1=%d\n",l_current_precinct->x0, l_current_precinct->y0 ,l_current_precinct->x1, l_current_precinct->y1);*/ \
883
+ \
884
+ tlcblkxstart = opj_int_floordivpow2(l_current_precinct->x0, (OPJ_INT32)cblkwidthexpn) << cblkwidthexpn; \
885
+ /*fprintf(stderr, "\t tlcblkxstart =%d\n",tlcblkxstart );*/ \
886
+ tlcblkystart = opj_int_floordivpow2(l_current_precinct->y0, (OPJ_INT32)cblkheightexpn) << cblkheightexpn; \
887
+ /*fprintf(stderr, "\t tlcblkystart =%d\n",tlcblkystart );*/ \
888
+ brcblkxend = opj_int_ceildivpow2(l_current_precinct->x1, (OPJ_INT32)cblkwidthexpn) << cblkwidthexpn; \
889
+ /*fprintf(stderr, "\t brcblkxend =%d\n",brcblkxend );*/ \
890
+ brcblkyend = opj_int_ceildivpow2(l_current_precinct->y1, (OPJ_INT32)cblkheightexpn) << cblkheightexpn; \
891
+ /*fprintf(stderr, "\t brcblkyend =%d\n",brcblkyend );*/ \
892
+ l_current_precinct->cw = (OPJ_UINT32)((brcblkxend - tlcblkxstart) >> cblkwidthexpn); \
893
+ l_current_precinct->ch = (OPJ_UINT32)((brcblkyend - tlcblkystart) >> cblkheightexpn); \
894
+ \
895
+ l_nb_code_blocks = l_current_precinct->cw * l_current_precinct->ch; \
896
+ /*fprintf(stderr, "\t\t\t\t precinct_cw = %d x recinct_ch = %d\n",l_current_precinct->cw, l_current_precinct->ch); */ \
897
+ l_nb_code_blocks_size = l_nb_code_blocks * (OPJ_UINT32)sizeof(TYPE); \
898
+ \
899
+ if (! l_current_precinct->cblks.ELEMENT) { \
900
+ l_current_precinct->cblks.ELEMENT = (TYPE*) opj_malloc(l_nb_code_blocks_size); \
901
+ if (! l_current_precinct->cblks.ELEMENT ) { \
902
+ return OPJ_FALSE; \
903
+ } \
904
+ /*fprintf(stderr, "\t\t\t\tAllocate cblks of a precinct (opj_tcd_cblk_dec_t): %d\n",l_nb_code_blocks_size);*/ \
905
+ \
906
+ memset(l_current_precinct->cblks.ELEMENT,0,l_nb_code_blocks_size); \
907
+ \
908
+ l_current_precinct->block_size = l_nb_code_blocks_size; \
909
+ } \
910
+ else if (l_nb_code_blocks_size > l_current_precinct->block_size) { \
911
+ TYPE *new_ELEMENT = (TYPE*) opj_realloc(l_current_precinct->cblks.ELEMENT, l_nb_code_blocks_size); \
912
+ if (! new_ELEMENT) { \
913
+ opj_free(l_current_precinct->cblks.ELEMENT); \
914
+ l_current_precinct->cblks.ELEMENT = NULL; \
915
+ l_current_precinct->block_size = 0; \
916
+ /* opj_event_msg(p_manager, EVT_ERROR, "Not enough memory for current precinct codeblock element\n"); */ \
917
+ fprintf(stderr, "Not enough memory for current precinct codeblock element\n"); \
918
+ return OPJ_FALSE; \
919
+ } \
920
+ l_current_precinct->cblks.ELEMENT = new_ELEMENT; \
921
+ /*fprintf(stderr, "\t\t\t\tReallocate cblks of a precinct (opj_tcd_cblk_dec_t): from %d to %d\n",l_current_precinct->block_size, l_nb_code_blocks_size); */\
922
+ \
923
+ memset(((OPJ_BYTE *) l_current_precinct->cblks.ELEMENT) + l_current_precinct->block_size \
924
+ ,0 \
925
+ ,l_nb_code_blocks_size - l_current_precinct->block_size); \
926
+ \
927
+ l_current_precinct->block_size = l_nb_code_blocks_size; \
928
+ } \
929
+ \
930
+ if (! l_current_precinct->incltree) { \
931
+ l_current_precinct->incltree = opj_tgt_create(l_current_precinct->cw, \
932
+ l_current_precinct->ch); \
933
+ } \
934
+ else{ \
935
+ l_current_precinct->incltree = opj_tgt_init(l_current_precinct->incltree, \
936
+ l_current_precinct->cw, \
937
+ l_current_precinct->ch); \
938
+ } \
939
+ \
940
+ if (! l_current_precinct->incltree) { \
941
+ fprintf(stderr, "WARNING: No incltree created.\n"); \
942
+ /*return OPJ_FALSE;*/ \
943
+ } \
944
+ \
945
+ if (! l_current_precinct->imsbtree) { \
946
+ l_current_precinct->imsbtree = opj_tgt_create( \
947
+ l_current_precinct->cw, \
948
+ l_current_precinct->ch); \
949
+ } \
950
+ else { \
951
+ l_current_precinct->imsbtree = opj_tgt_init( \
952
+ l_current_precinct->imsbtree, \
953
+ l_current_precinct->cw, \
954
+ l_current_precinct->ch); \
955
+ } \
956
+ \
957
+ if (! l_current_precinct->imsbtree) { \
958
+ fprintf(stderr, "WARNING: No imsbtree created.\n"); \
959
+ /*return OPJ_FALSE;*/ \
960
+ } \
961
+ \
962
+ l_code_block = l_current_precinct->cblks.ELEMENT; \
963
+ \
964
+ for (cblkno = 0; cblkno < l_nb_code_blocks; ++cblkno) { \
965
+ OPJ_INT32 cblkxstart = tlcblkxstart + (OPJ_INT32)(cblkno % l_current_precinct->cw) * (1 << cblkwidthexpn); \
966
+ OPJ_INT32 cblkystart = tlcblkystart + (OPJ_INT32)(cblkno / l_current_precinct->cw) * (1 << cblkheightexpn); \
967
+ OPJ_INT32 cblkxend = cblkxstart + (1 << cblkwidthexpn); \
968
+ OPJ_INT32 cblkyend = cblkystart + (1 << cblkheightexpn); \
969
+ \
970
+ /* code-block size (global) */ \
971
+ l_code_block->x0 = opj_int_max(cblkxstart, l_current_precinct->x0); \
972
+ l_code_block->y0 = opj_int_max(cblkystart, l_current_precinct->y0); \
973
+ l_code_block->x1 = opj_int_min(cblkxend, l_current_precinct->x1); \
974
+ l_code_block->y1 = opj_int_min(cblkyend, l_current_precinct->y1); \
975
+ \
976
+ if (! FUNCTION_ELEMENT(l_code_block)) { \
977
+ return OPJ_FALSE; \
978
+ } \
979
+ ++l_code_block; \
980
+ } \
981
+ ++l_current_precinct; \
982
+ } /* precno */ \
983
+ ++l_band; \
984
+ ++l_step_size; \
985
+ } /* bandno */ \
986
+ ++l_res; \
987
+ --l_level_no; \
988
+ } /* resno */ \
989
+ ++l_tccp; \
990
+ ++l_tilec; \
991
+ ++l_image_comp; \
992
+ } /* compno */ \
993
+ return OPJ_TRUE; \
994
+ } \
995
+
996
+
997
+ OPJ_MACRO_TCD_ALLOCATE(opj_tcd_init_encode_tile, opj_tcd_cblk_enc_t, 1.f, enc, opj_tcd_code_block_enc_allocate)
998
+ OPJ_MACRO_TCD_ALLOCATE(opj_tcd_init_decode_tile, opj_tcd_cblk_dec_t, 0.5f, dec, opj_tcd_code_block_dec_allocate)
999
+
1000
+ #undef OPJ_MACRO_TCD_ALLOCATE
1001
+
1002
+ /**
1003
+ * Allocates memory for an encoding code block.
1004
+ */
1005
+ OPJ_BOOL opj_tcd_code_block_enc_allocate (opj_tcd_cblk_enc_t * p_code_block)
1006
+ {
1007
+ if (! p_code_block->data) {
1008
+
1009
+ p_code_block->data = (OPJ_BYTE*) opj_malloc(OPJ_J2K_DEFAULT_CBLK_DATA_SIZE*2); /*why +1 ?*/
1010
+ if(! p_code_block->data) {
1011
+ return OPJ_FALSE;
1012
+ }
1013
+
1014
+ p_code_block->data[0] = 0;
1015
+ p_code_block->data+=1;
1016
+
1017
+ /* no memset since data */
1018
+ p_code_block->layers = (opj_tcd_layer_t*) opj_malloc(100 * sizeof(opj_tcd_layer_t));
1019
+ if (! p_code_block->layers) {
1020
+ return OPJ_FALSE;
1021
+ }
1022
+
1023
+ p_code_block->passes = (opj_tcd_pass_t*) opj_malloc(100 * sizeof(opj_tcd_pass_t));
1024
+ if (! p_code_block->passes) {
1025
+ return OPJ_FALSE;
1026
+ }
1027
+ }
1028
+
1029
+ memset(p_code_block->layers,0,100 * sizeof(opj_tcd_layer_t));
1030
+ memset(p_code_block->passes,0,100 * sizeof(opj_tcd_pass_t));
1031
+
1032
+ return OPJ_TRUE;
1033
+ }
1034
+
1035
+ /**
1036
+ * Allocates memory for a decoding code block.
1037
+ */
1038
+ OPJ_BOOL opj_tcd_code_block_dec_allocate (opj_tcd_cblk_dec_t * p_code_block)
1039
+ {
1040
+ OPJ_UINT32 l_seg_size;
1041
+
1042
+ if (! p_code_block->data) {
1043
+
1044
+ p_code_block->data = (OPJ_BYTE*) opj_malloc(OPJ_J2K_DEFAULT_CBLK_DATA_SIZE);
1045
+ if (! p_code_block->data) {
1046
+ return OPJ_FALSE;
1047
+ }
1048
+ p_code_block->data_max_size = OPJ_J2K_DEFAULT_CBLK_DATA_SIZE;
1049
+ /*fprintf(stderr, "Allocate 8192 elements of code_block->data\n");*/
1050
+
1051
+ l_seg_size = OPJ_J2K_DEFAULT_NB_SEGS * sizeof(opj_tcd_seg_t);
1052
+ p_code_block->segs = (opj_tcd_seg_t *) opj_malloc(l_seg_size);
1053
+ if (! p_code_block->segs) {
1054
+ return OPJ_FALSE;
1055
+ }
1056
+ memset(p_code_block->segs,0,l_seg_size);
1057
+ /*fprintf(stderr, "Allocate %d elements of code_block->data\n", OPJ_J2K_DEFAULT_NB_SEGS * sizeof(opj_tcd_seg_t));*/
1058
+
1059
+ p_code_block->m_current_max_segs = OPJ_J2K_DEFAULT_NB_SEGS;
1060
+ /*fprintf(stderr, "m_current_max_segs of code_block->data = %d\n", p_code_block->m_current_max_segs);*/
1061
+ }
1062
+ /* TODO */
1063
+ /*p_code_block->numsegs = 0; */
1064
+
1065
+ return OPJ_TRUE;
1066
+ }
1067
+
1068
+ OPJ_UINT32 opj_tcd_get_decoded_tile_size ( opj_tcd_t *p_tcd )
1069
+ {
1070
+ OPJ_UINT32 i;
1071
+ OPJ_UINT32 l_data_size = 0;
1072
+ opj_image_comp_t * l_img_comp = 00;
1073
+ opj_tcd_tilecomp_t * l_tile_comp = 00;
1074
+ opj_tcd_resolution_t * l_res = 00;
1075
+ OPJ_UINT32 l_size_comp, l_remaining;
1076
+
1077
+ l_tile_comp = p_tcd->tcd_image->tiles->comps;
1078
+ l_img_comp = p_tcd->image->comps;
1079
+
1080
+ for (i=0;i<p_tcd->image->numcomps;++i) {
1081
+ l_size_comp = l_img_comp->prec >> 3; /*(/ 8)*/
1082
+ l_remaining = l_img_comp->prec & 7; /* (%8) */
1083
+
1084
+ if(l_remaining) {
1085
+ ++l_size_comp;
1086
+ }
1087
+
1088
+ if (l_size_comp == 3) {
1089
+ l_size_comp = 4;
1090
+ }
1091
+
1092
+ l_res = l_tile_comp->resolutions + l_tile_comp->minimum_num_resolutions - 1;
1093
+ l_data_size += l_size_comp * (OPJ_UINT32)((l_res->x1 - l_res->x0) * (l_res->y1 - l_res->y0));
1094
+ ++l_img_comp;
1095
+ ++l_tile_comp;
1096
+ }
1097
+
1098
+ return l_data_size;
1099
+ }
1100
+
1101
+ OPJ_BOOL opj_tcd_encode_tile( opj_tcd_t *p_tcd,
1102
+ OPJ_UINT32 p_tile_no,
1103
+ OPJ_BYTE *p_dest,
1104
+ OPJ_UINT32 * p_data_written,
1105
+ OPJ_UINT32 p_max_length,
1106
+ opj_codestream_info_t *p_cstr_info)
1107
+ {
1108
+
1109
+ if (p_tcd->cur_tp_num == 0) {
1110
+
1111
+ p_tcd->tcd_tileno = p_tile_no;
1112
+ p_tcd->tcp = &p_tcd->cp->tcps[p_tile_no];
1113
+
1114
+ /* INDEX >> "Precinct_nb_X et Precinct_nb_Y" */
1115
+ if(p_cstr_info) {
1116
+ OPJ_UINT32 l_num_packs = 0;
1117
+ OPJ_UINT32 i;
1118
+ opj_tcd_tilecomp_t *l_tilec_idx = &p_tcd->tcd_image->tiles->comps[0]; /* based on component 0 */
1119
+ opj_tccp_t *l_tccp = p_tcd->tcp->tccps; /* based on component 0 */
1120
+
1121
+ for (i = 0; i < l_tilec_idx->numresolutions; i++) {
1122
+ opj_tcd_resolution_t *l_res_idx = &l_tilec_idx->resolutions[i];
1123
+
1124
+ p_cstr_info->tile[p_tile_no].pw[i] = (int)l_res_idx->pw;
1125
+ p_cstr_info->tile[p_tile_no].ph[i] = (int)l_res_idx->ph;
1126
+
1127
+ l_num_packs += l_res_idx->pw * l_res_idx->ph;
1128
+ p_cstr_info->tile[p_tile_no].pdx[i] = (int)l_tccp->prcw[i];
1129
+ p_cstr_info->tile[p_tile_no].pdy[i] = (int)l_tccp->prch[i];
1130
+ }
1131
+ p_cstr_info->tile[p_tile_no].packet = (opj_packet_info_t*) opj_calloc((size_t)p_cstr_info->numcomps * (size_t)p_cstr_info->numlayers * l_num_packs, sizeof(opj_packet_info_t));
1132
+ }
1133
+ /* << INDEX */
1134
+
1135
+ /* FIXME _ProfStart(PGROUP_DC_SHIFT); */
1136
+ /*---------------TILE-------------------*/
1137
+ if (! opj_tcd_dc_level_shift_encode(p_tcd)) {
1138
+ return OPJ_FALSE;
1139
+ }
1140
+ /* FIXME _ProfStop(PGROUP_DC_SHIFT); */
1141
+
1142
+ /* FIXME _ProfStart(PGROUP_MCT); */
1143
+ if (! opj_tcd_mct_encode(p_tcd)) {
1144
+ return OPJ_FALSE;
1145
+ }
1146
+ /* FIXME _ProfStop(PGROUP_MCT); */
1147
+
1148
+ /* FIXME _ProfStart(PGROUP_DWT); */
1149
+ if (! opj_tcd_dwt_encode(p_tcd)) {
1150
+ return OPJ_FALSE;
1151
+ }
1152
+ /* FIXME _ProfStop(PGROUP_DWT); */
1153
+
1154
+ /* FIXME _ProfStart(PGROUP_T1); */
1155
+ if (! opj_tcd_t1_encode(p_tcd)) {
1156
+ return OPJ_FALSE;
1157
+ }
1158
+ /* FIXME _ProfStop(PGROUP_T1); */
1159
+
1160
+ /* FIXME _ProfStart(PGROUP_RATE); */
1161
+ if (! opj_tcd_rate_allocate_encode(p_tcd,p_dest,p_max_length,p_cstr_info)) {
1162
+ return OPJ_FALSE;
1163
+ }
1164
+ /* FIXME _ProfStop(PGROUP_RATE); */
1165
+
1166
+ }
1167
+ /*--------------TIER2------------------*/
1168
+
1169
+ /* INDEX */
1170
+ if (p_cstr_info) {
1171
+ p_cstr_info->index_write = 1;
1172
+ }
1173
+ /* FIXME _ProfStart(PGROUP_T2); */
1174
+
1175
+ if (! opj_tcd_t2_encode(p_tcd,p_dest,p_data_written,p_max_length,p_cstr_info)) {
1176
+ return OPJ_FALSE;
1177
+ }
1178
+ /* FIXME _ProfStop(PGROUP_T2); */
1179
+
1180
+ /*---------------CLEAN-------------------*/
1181
+
1182
+ return OPJ_TRUE;
1183
+ }
1184
+
1185
+ OPJ_BOOL opj_tcd_decode_tile( opj_tcd_t *p_tcd,
1186
+ OPJ_BYTE *p_src,
1187
+ OPJ_UINT32 p_max_length,
1188
+ OPJ_UINT32 p_tile_no,
1189
+ opj_codestream_index_t *p_cstr_index
1190
+ )
1191
+ {
1192
+ OPJ_UINT32 l_data_read;
1193
+ p_tcd->tcd_tileno = p_tile_no;
1194
+ p_tcd->tcp = &(p_tcd->cp->tcps[p_tile_no]);
1195
+
1196
+ #ifdef TODO_MSD /* FIXME */
1197
+ /* INDEX >> */
1198
+ if(p_cstr_info) {
1199
+ OPJ_UINT32 resno, compno, numprec = 0;
1200
+ for (compno = 0; compno < (OPJ_UINT32) p_cstr_info->numcomps; compno++) {
1201
+ opj_tcp_t *tcp = &p_tcd->cp->tcps[0];
1202
+ opj_tccp_t *tccp = &tcp->tccps[compno];
1203
+ opj_tcd_tilecomp_t *tilec_idx = &p_tcd->tcd_image->tiles->comps[compno];
1204
+ for (resno = 0; resno < tilec_idx->numresolutions; resno++) {
1205
+ opj_tcd_resolution_t *res_idx = &tilec_idx->resolutions[resno];
1206
+ p_cstr_info->tile[p_tile_no].pw[resno] = res_idx->pw;
1207
+ p_cstr_info->tile[p_tile_no].ph[resno] = res_idx->ph;
1208
+ numprec += res_idx->pw * res_idx->ph;
1209
+ p_cstr_info->tile[p_tile_no].pdx[resno] = tccp->prcw[resno];
1210
+ p_cstr_info->tile[p_tile_no].pdy[resno] = tccp->prch[resno];
1211
+ }
1212
+ }
1213
+ p_cstr_info->tile[p_tile_no].packet = (opj_packet_info_t *) opj_malloc(p_cstr_info->numlayers * numprec * sizeof(opj_packet_info_t));
1214
+ p_cstr_info->packno = 0;
1215
+ }
1216
+ /* << INDEX */
1217
+ #endif
1218
+
1219
+ /*--------------TIER2------------------*/
1220
+ /* FIXME _ProfStart(PGROUP_T2); */
1221
+ l_data_read = 0;
1222
+ if (! opj_tcd_t2_decode(p_tcd, p_src, &l_data_read, p_max_length, p_cstr_index))
1223
+ {
1224
+ return OPJ_FALSE;
1225
+ }
1226
+ /* FIXME _ProfStop(PGROUP_T2); */
1227
+
1228
+ /*------------------TIER1-----------------*/
1229
+
1230
+ /* FIXME _ProfStart(PGROUP_T1); */
1231
+ if
1232
+ (! opj_tcd_t1_decode(p_tcd))
1233
+ {
1234
+ return OPJ_FALSE;
1235
+ }
1236
+ /* FIXME _ProfStop(PGROUP_T1); */
1237
+
1238
+ /*----------------DWT---------------------*/
1239
+
1240
+ /* FIXME _ProfStart(PGROUP_DWT); */
1241
+ if
1242
+ (! opj_tcd_dwt_decode(p_tcd))
1243
+ {
1244
+ return OPJ_FALSE;
1245
+ }
1246
+ /* FIXME _ProfStop(PGROUP_DWT); */
1247
+
1248
+ /*----------------MCT-------------------*/
1249
+ /* FIXME _ProfStart(PGROUP_MCT); */
1250
+ if
1251
+ (! opj_tcd_mct_decode(p_tcd))
1252
+ {
1253
+ return OPJ_FALSE;
1254
+ }
1255
+ /* FIXME _ProfStop(PGROUP_MCT); */
1256
+
1257
+ /* FIXME _ProfStart(PGROUP_DC_SHIFT); */
1258
+ if
1259
+ (! opj_tcd_dc_level_shift_decode(p_tcd))
1260
+ {
1261
+ return OPJ_FALSE;
1262
+ }
1263
+ /* FIXME _ProfStop(PGROUP_DC_SHIFT); */
1264
+
1265
+
1266
+ /*---------------TILE-------------------*/
1267
+ return OPJ_TRUE;
1268
+ }
1269
+
1270
+ OPJ_BOOL opj_tcd_update_tile_data ( opj_tcd_t *p_tcd,
1271
+ OPJ_BYTE * p_dest,
1272
+ OPJ_UINT32 p_dest_length
1273
+ )
1274
+ {
1275
+ OPJ_UINT32 i,j,k,l_data_size = 0;
1276
+ opj_image_comp_t * l_img_comp = 00;
1277
+ opj_tcd_tilecomp_t * l_tilec = 00;
1278
+ opj_tcd_resolution_t * l_res;
1279
+ OPJ_UINT32 l_size_comp, l_remaining;
1280
+ OPJ_UINT32 l_stride, l_width,l_height;
1281
+
1282
+ l_data_size = opj_tcd_get_decoded_tile_size(p_tcd);
1283
+ if (l_data_size > p_dest_length) {
1284
+ return OPJ_FALSE;
1285
+ }
1286
+
1287
+ l_tilec = p_tcd->tcd_image->tiles->comps;
1288
+ l_img_comp = p_tcd->image->comps;
1289
+
1290
+ for (i=0;i<p_tcd->image->numcomps;++i) {
1291
+ l_size_comp = l_img_comp->prec >> 3; /*(/ 8)*/
1292
+ l_remaining = l_img_comp->prec & 7; /* (%8) */
1293
+ l_res = l_tilec->resolutions + l_img_comp->resno_decoded;
1294
+ l_width = (OPJ_UINT32)(l_res->x1 - l_res->x0);
1295
+ l_height = (OPJ_UINT32)(l_res->y1 - l_res->y0);
1296
+ l_stride = (OPJ_UINT32)(l_tilec->x1 - l_tilec->x0) - l_width;
1297
+
1298
+ if (l_remaining) {
1299
+ ++l_size_comp;
1300
+ }
1301
+
1302
+ if (l_size_comp == 3) {
1303
+ l_size_comp = 4;
1304
+ }
1305
+
1306
+ switch (l_size_comp)
1307
+ {
1308
+ case 1:
1309
+ {
1310
+ OPJ_CHAR * l_dest_ptr = (OPJ_CHAR *) p_dest;
1311
+ const OPJ_INT32 * l_src_ptr = l_tilec->data;
1312
+
1313
+ if (l_img_comp->sgnd) {
1314
+ for (j=0;j<l_height;++j) {
1315
+ for (k=0;k<l_width;++k) {
1316
+ *(l_dest_ptr++) = (OPJ_CHAR) (*(l_src_ptr++));
1317
+ }
1318
+ l_src_ptr += l_stride;
1319
+ }
1320
+ }
1321
+ else {
1322
+ for (j=0;j<l_height;++j) {
1323
+ for (k=0;k<l_width;++k) {
1324
+ *(l_dest_ptr++) = (OPJ_CHAR) ((*(l_src_ptr++))&0xff);
1325
+ }
1326
+ l_src_ptr += l_stride;
1327
+ }
1328
+ }
1329
+
1330
+ p_dest = (OPJ_BYTE *)l_dest_ptr;
1331
+ }
1332
+ break;
1333
+ case 2:
1334
+ {
1335
+ const OPJ_INT32 * l_src_ptr = l_tilec->data;
1336
+ OPJ_INT16 * l_dest_ptr = (OPJ_INT16 *) p_dest;
1337
+
1338
+ if (l_img_comp->sgnd) {
1339
+ for (j=0;j<l_height;++j) {
1340
+ for (k=0;k<l_width;++k) {
1341
+ *(l_dest_ptr++) = (OPJ_INT16) (*(l_src_ptr++));
1342
+ }
1343
+ l_src_ptr += l_stride;
1344
+ }
1345
+ }
1346
+ else {
1347
+ for (j=0;j<l_height;++j) {
1348
+ for (k=0;k<l_width;++k) {
1349
+ *(l_dest_ptr++) = (OPJ_INT16) ((*(l_src_ptr++))&0xffff);
1350
+ }
1351
+ l_src_ptr += l_stride;
1352
+ }
1353
+ }
1354
+
1355
+ p_dest = (OPJ_BYTE*) l_dest_ptr;
1356
+ }
1357
+ break;
1358
+ case 4:
1359
+ {
1360
+ OPJ_INT32 * l_dest_ptr = (OPJ_INT32 *) p_dest;
1361
+ OPJ_INT32 * l_src_ptr = l_tilec->data;
1362
+
1363
+ for (j=0;j<l_height;++j) {
1364
+ for (k=0;k<l_width;++k) {
1365
+ *(l_dest_ptr++) = (*(l_src_ptr++));
1366
+ }
1367
+ l_src_ptr += l_stride;
1368
+ }
1369
+
1370
+ p_dest = (OPJ_BYTE*) l_dest_ptr;
1371
+ }
1372
+ break;
1373
+ }
1374
+
1375
+ ++l_img_comp;
1376
+ ++l_tilec;
1377
+ }
1378
+
1379
+ return OPJ_TRUE;
1380
+ }
1381
+
1382
+
1383
+
1384
+
1385
+ void opj_tcd_free_tile(opj_tcd_t *p_tcd)
1386
+ {
1387
+ OPJ_UINT32 compno, resno, bandno, precno;
1388
+ opj_tcd_tile_t *l_tile = 00;
1389
+ opj_tcd_tilecomp_t *l_tile_comp = 00;
1390
+ opj_tcd_resolution_t *l_res = 00;
1391
+ opj_tcd_band_t *l_band = 00;
1392
+ opj_tcd_precinct_t *l_precinct = 00;
1393
+ OPJ_UINT32 l_nb_resolutions, l_nb_precincts;
1394
+ void (* l_tcd_code_block_deallocate) (opj_tcd_precinct_t *) = 00;
1395
+
1396
+ if (! p_tcd) {
1397
+ return;
1398
+ }
1399
+
1400
+ if (! p_tcd->tcd_image) {
1401
+ return;
1402
+ }
1403
+
1404
+ if (p_tcd->m_is_decoder) {
1405
+ l_tcd_code_block_deallocate = opj_tcd_code_block_dec_deallocate;
1406
+ }
1407
+ else {
1408
+ l_tcd_code_block_deallocate = opj_tcd_code_block_enc_deallocate;
1409
+ }
1410
+
1411
+ l_tile = p_tcd->tcd_image->tiles;
1412
+ if (! l_tile) {
1413
+ return;
1414
+ }
1415
+
1416
+ l_tile_comp = l_tile->comps;
1417
+
1418
+ for (compno = 0; compno < l_tile->numcomps; ++compno) {
1419
+ l_res = l_tile_comp->resolutions;
1420
+ if (l_res) {
1421
+
1422
+ l_nb_resolutions = l_tile_comp->resolutions_size / sizeof(opj_tcd_resolution_t);
1423
+ for (resno = 0; resno < l_nb_resolutions; ++resno) {
1424
+ l_band = l_res->bands;
1425
+ for (bandno = 0; bandno < 3; ++bandno) {
1426
+ l_precinct = l_band->precincts;
1427
+ if (l_precinct) {
1428
+
1429
+ l_nb_precincts = l_band->precincts_data_size / sizeof(opj_tcd_precinct_t);
1430
+ for (precno = 0; precno < l_nb_precincts; ++precno) {
1431
+ opj_tgt_destroy(l_precinct->incltree);
1432
+ l_precinct->incltree = 00;
1433
+ opj_tgt_destroy(l_precinct->imsbtree);
1434
+ l_precinct->imsbtree = 00;
1435
+ (*l_tcd_code_block_deallocate) (l_precinct);
1436
+ ++l_precinct;
1437
+ }
1438
+
1439
+ opj_free(l_band->precincts);
1440
+ l_band->precincts = 00;
1441
+ }
1442
+ ++l_band;
1443
+ } /* for (resno */
1444
+ ++l_res;
1445
+ }
1446
+
1447
+ opj_free(l_tile_comp->resolutions);
1448
+ l_tile_comp->resolutions = 00;
1449
+ }
1450
+
1451
+ if (l_tile_comp->data) {
1452
+ opj_free(l_tile_comp->data);
1453
+ l_tile_comp->data = 00;
1454
+ }
1455
+ ++l_tile_comp;
1456
+ }
1457
+
1458
+ opj_free(l_tile->comps);
1459
+ l_tile->comps = 00;
1460
+ opj_free(p_tcd->tcd_image->tiles);
1461
+ p_tcd->tcd_image->tiles = 00;
1462
+ }
1463
+
1464
+
1465
+ OPJ_BOOL opj_tcd_t2_decode (opj_tcd_t *p_tcd,
1466
+ OPJ_BYTE * p_src_data,
1467
+ OPJ_UINT32 * p_data_read,
1468
+ OPJ_UINT32 p_max_src_size,
1469
+ opj_codestream_index_t *p_cstr_index
1470
+ )
1471
+ {
1472
+ opj_t2_t * l_t2;
1473
+
1474
+ l_t2 = opj_t2_create(p_tcd->image, p_tcd->cp);
1475
+ if (l_t2 == 00) {
1476
+ return OPJ_FALSE;
1477
+ }
1478
+
1479
+ if (! opj_t2_decode_packets(
1480
+ l_t2,
1481
+ p_tcd->tcd_tileno,
1482
+ p_tcd->tcd_image->tiles,
1483
+ p_src_data,
1484
+ p_data_read,
1485
+ p_max_src_size,
1486
+ p_cstr_index)) {
1487
+ opj_t2_destroy(l_t2);
1488
+ return OPJ_FALSE;
1489
+ }
1490
+
1491
+ opj_t2_destroy(l_t2);
1492
+
1493
+ /*---------------CLEAN-------------------*/
1494
+ return OPJ_TRUE;
1495
+ }
1496
+
1497
+ OPJ_BOOL opj_tcd_t1_decode ( opj_tcd_t *p_tcd )
1498
+ {
1499
+ OPJ_UINT32 compno;
1500
+ opj_t1_t * l_t1;
1501
+ opj_tcd_tile_t * l_tile = p_tcd->tcd_image->tiles;
1502
+ opj_tcd_tilecomp_t* l_tile_comp = l_tile->comps;
1503
+ opj_tccp_t * l_tccp = p_tcd->tcp->tccps;
1504
+
1505
+
1506
+ l_t1 = opj_t1_create();
1507
+ if (l_t1 == 00) {
1508
+ return OPJ_FALSE;
1509
+ }
1510
+
1511
+ for (compno = 0; compno < l_tile->numcomps; ++compno) {
1512
+ /* The +3 is headroom required by the vectorized DWT */
1513
+ if (OPJ_FALSE == opj_t1_decode_cblks(l_t1, l_tile_comp, l_tccp)) {
1514
+ opj_t1_destroy(l_t1);
1515
+ return OPJ_FALSE;
1516
+ }
1517
+ ++l_tile_comp;
1518
+ ++l_tccp;
1519
+ }
1520
+
1521
+ opj_t1_destroy(l_t1);
1522
+
1523
+ return OPJ_TRUE;
1524
+ }
1525
+
1526
+
1527
+ OPJ_BOOL opj_tcd_dwt_decode ( opj_tcd_t *p_tcd )
1528
+ {
1529
+ OPJ_UINT32 compno;
1530
+ opj_tcd_tile_t * l_tile = p_tcd->tcd_image->tiles;
1531
+ opj_tcd_tilecomp_t * l_tile_comp = l_tile->comps;
1532
+ opj_tccp_t * l_tccp = p_tcd->tcp->tccps;
1533
+ opj_image_comp_t * l_img_comp = p_tcd->image->comps;
1534
+
1535
+ for (compno = 0; compno < l_tile->numcomps; compno++) {
1536
+ /*
1537
+ if (tcd->cp->reduce != 0) {
1538
+ tcd->image->comps[compno].resno_decoded =
1539
+ tile->comps[compno].numresolutions - tcd->cp->reduce - 1;
1540
+ if (tcd->image->comps[compno].resno_decoded < 0)
1541
+ {
1542
+ return false;
1543
+ }
1544
+ }
1545
+ numres2decode = tcd->image->comps[compno].resno_decoded + 1;
1546
+ if(numres2decode > 0){
1547
+ */
1548
+
1549
+ if (l_tccp->qmfbid == 1) {
1550
+ if (! opj_dwt_decode(l_tile_comp, l_img_comp->resno_decoded+1)) {
1551
+ return OPJ_FALSE;
1552
+ }
1553
+ }
1554
+ else {
1555
+ if (! opj_dwt_decode_real(l_tile_comp, l_img_comp->resno_decoded+1)) {
1556
+ return OPJ_FALSE;
1557
+ }
1558
+ }
1559
+
1560
+ ++l_tile_comp;
1561
+ ++l_img_comp;
1562
+ ++l_tccp;
1563
+ }
1564
+
1565
+ return OPJ_TRUE;
1566
+ }
1567
+ OPJ_BOOL opj_tcd_mct_decode ( opj_tcd_t *p_tcd )
1568
+ {
1569
+ opj_tcd_tile_t * l_tile = p_tcd->tcd_image->tiles;
1570
+ opj_tcp_t * l_tcp = p_tcd->tcp;
1571
+ opj_tcd_tilecomp_t * l_tile_comp = l_tile->comps;
1572
+ OPJ_UINT32 l_samples,i;
1573
+
1574
+ if (! l_tcp->mct) {
1575
+ return OPJ_TRUE;
1576
+ }
1577
+
1578
+ l_samples = (OPJ_UINT32)((l_tile_comp->x1 - l_tile_comp->x0) * (l_tile_comp->y1 - l_tile_comp->y0));
1579
+
1580
+ if (l_tile->numcomps >= 3 ){
1581
+ /* testcase 1336.pdf.asan.47.376 */
1582
+ if ((l_tile->comps[0].x1 - l_tile->comps[0].x0) * (l_tile->comps[0].y1 - l_tile->comps[0].y0) < (OPJ_INT32)l_samples ||
1583
+ (l_tile->comps[1].x1 - l_tile->comps[1].x0) * (l_tile->comps[1].y1 - l_tile->comps[1].y0) < (OPJ_INT32)l_samples ||
1584
+ (l_tile->comps[2].x1 - l_tile->comps[2].x0) * (l_tile->comps[2].y1 - l_tile->comps[2].y0) < (OPJ_INT32)l_samples) {
1585
+ fprintf(stderr, "Tiles don't all have the same dimension. Skip the MCT step.\n");
1586
+ return OPJ_FALSE;
1587
+ }
1588
+ else if (l_tcp->mct == 2) {
1589
+ OPJ_BYTE ** l_data;
1590
+
1591
+ if (! l_tcp->m_mct_decoding_matrix) {
1592
+ return OPJ_TRUE;
1593
+ }
1594
+
1595
+ l_data = (OPJ_BYTE **) opj_malloc(l_tile->numcomps*sizeof(OPJ_BYTE*));
1596
+ if (! l_data) {
1597
+ return OPJ_FALSE;
1598
+ }
1599
+
1600
+ for (i=0;i<l_tile->numcomps;++i) {
1601
+ l_data[i] = (OPJ_BYTE*) l_tile_comp->data;
1602
+ ++l_tile_comp;
1603
+ }
1604
+
1605
+ if (! opj_mct_decode_custom(/* MCT data */
1606
+ (OPJ_BYTE*) l_tcp->m_mct_decoding_matrix,
1607
+ /* size of components */
1608
+ l_samples,
1609
+ /* components */
1610
+ l_data,
1611
+ /* nb of components (i.e. size of pData) */
1612
+ l_tile->numcomps,
1613
+ /* tells if the data is signed */
1614
+ p_tcd->image->comps->sgnd)) {
1615
+ opj_free(l_data);
1616
+ return OPJ_FALSE;
1617
+ }
1618
+
1619
+ opj_free(l_data);
1620
+ }
1621
+ else {
1622
+ if (l_tcp->tccps->qmfbid == 1) {
1623
+ opj_mct_decode( l_tile->comps[0].data,
1624
+ l_tile->comps[1].data,
1625
+ l_tile->comps[2].data,
1626
+ l_samples);
1627
+ }
1628
+ else {
1629
+ opj_mct_decode_real((OPJ_FLOAT32*)l_tile->comps[0].data,
1630
+ (OPJ_FLOAT32*)l_tile->comps[1].data,
1631
+ (OPJ_FLOAT32*)l_tile->comps[2].data,
1632
+ l_samples);
1633
+ }
1634
+ }
1635
+ }
1636
+ else {
1637
+ /* FIXME need to use opj_event_msg function */
1638
+ fprintf(stderr,"Number of components (%d) is inconsistent with a MCT. Skip the MCT step.\n",l_tile->numcomps);
1639
+ }
1640
+
1641
+ return OPJ_TRUE;
1642
+ }
1643
+
1644
+
1645
+ OPJ_BOOL opj_tcd_dc_level_shift_decode ( opj_tcd_t *p_tcd )
1646
+ {
1647
+ OPJ_UINT32 compno;
1648
+ opj_tcd_tilecomp_t * l_tile_comp = 00;
1649
+ opj_tccp_t * l_tccp = 00;
1650
+ opj_image_comp_t * l_img_comp = 00;
1651
+ opj_tcd_resolution_t* l_res = 00;
1652
+ opj_tcd_tile_t * l_tile;
1653
+ OPJ_UINT32 l_width,l_height,i,j;
1654
+ OPJ_INT32 * l_current_ptr;
1655
+ OPJ_INT32 l_min, l_max;
1656
+ OPJ_UINT32 l_stride;
1657
+
1658
+ l_tile = p_tcd->tcd_image->tiles;
1659
+ l_tile_comp = l_tile->comps;
1660
+ l_tccp = p_tcd->tcp->tccps;
1661
+ l_img_comp = p_tcd->image->comps;
1662
+
1663
+ for (compno = 0; compno < l_tile->numcomps; compno++) {
1664
+ l_res = l_tile_comp->resolutions + l_img_comp->resno_decoded;
1665
+ l_width = (OPJ_UINT32)(l_res->x1 - l_res->x0);
1666
+ l_height = (OPJ_UINT32)(l_res->y1 - l_res->y0);
1667
+ l_stride = (OPJ_UINT32)(l_tile_comp->x1 - l_tile_comp->x0) - l_width;
1668
+
1669
+ assert(l_height == 0 || l_width + l_stride <= l_tile_comp->data_size / l_height); /*MUPDF*/
1670
+
1671
+ if (l_img_comp->sgnd) {
1672
+ l_min = -(1 << (l_img_comp->prec - 1));
1673
+ l_max = (1 << (l_img_comp->prec - 1)) - 1;
1674
+ }
1675
+ else {
1676
+ l_min = 0;
1677
+ l_max = (1 << l_img_comp->prec) - 1;
1678
+ }
1679
+
1680
+ l_current_ptr = l_tile_comp->data;
1681
+
1682
+ if (l_tccp->qmfbid == 1) {
1683
+ for (j=0;j<l_height;++j) {
1684
+ for (i = 0; i < l_width; ++i) {
1685
+ *l_current_ptr = opj_int_clamp(*l_current_ptr + l_tccp->m_dc_level_shift, l_min, l_max);
1686
+ ++l_current_ptr;
1687
+ }
1688
+ l_current_ptr += l_stride;
1689
+ }
1690
+ }
1691
+ else {
1692
+ for (j=0;j<l_height;++j) {
1693
+ for (i = 0; i < l_width; ++i) {
1694
+ OPJ_FLOAT32 l_value = *((OPJ_FLOAT32 *) l_current_ptr);
1695
+ *l_current_ptr = opj_int_clamp((OPJ_INT32)lrintf(l_value) + l_tccp->m_dc_level_shift, l_min, l_max); ;
1696
+ ++l_current_ptr;
1697
+ }
1698
+ l_current_ptr += l_stride;
1699
+ }
1700
+ }
1701
+
1702
+ ++l_img_comp;
1703
+ ++l_tccp;
1704
+ ++l_tile_comp;
1705
+ }
1706
+
1707
+ return OPJ_TRUE;
1708
+ }
1709
+
1710
+
1711
+
1712
+ /**
1713
+ * Deallocates the encoding data of the given precinct.
1714
+ */
1715
+ void opj_tcd_code_block_dec_deallocate (opj_tcd_precinct_t * p_precinct)
1716
+ {
1717
+ OPJ_UINT32 cblkno , l_nb_code_blocks;
1718
+
1719
+ opj_tcd_cblk_dec_t * l_code_block = p_precinct->cblks.dec;
1720
+ if (l_code_block) {
1721
+ /*fprintf(stderr,"deallocate codeblock:{\n");*/
1722
+ /*fprintf(stderr,"\t x0=%d, y0=%d, x1=%d, y1=%d\n",l_code_block->x0, l_code_block->y0, l_code_block->x1, l_code_block->y1);*/
1723
+ /*fprintf(stderr,"\t numbps=%d, numlenbits=%d, len=%d, numnewpasses=%d, real_num_segs=%d, m_current_max_segs=%d\n ",
1724
+ l_code_block->numbps, l_code_block->numlenbits, l_code_block->len, l_code_block->numnewpasses, l_code_block->real_num_segs, l_code_block->m_current_max_segs );*/
1725
+
1726
+
1727
+ l_nb_code_blocks = p_precinct->block_size / sizeof(opj_tcd_cblk_dec_t);
1728
+ /*fprintf(stderr,"nb_code_blocks =%d\t}\n", l_nb_code_blocks);*/
1729
+
1730
+ for (cblkno = 0; cblkno < l_nb_code_blocks; ++cblkno) {
1731
+
1732
+ if (l_code_block->data) {
1733
+ opj_free(l_code_block->data);
1734
+ l_code_block->data = 00;
1735
+ }
1736
+
1737
+ if (l_code_block->segs) {
1738
+ opj_free(l_code_block->segs );
1739
+ l_code_block->segs = 00;
1740
+ }
1741
+
1742
+ ++l_code_block;
1743
+ }
1744
+
1745
+ opj_free(p_precinct->cblks.dec);
1746
+ p_precinct->cblks.dec = 00;
1747
+ }
1748
+ }
1749
+
1750
+ /**
1751
+ * Deallocates the encoding data of the given precinct.
1752
+ */
1753
+ void opj_tcd_code_block_enc_deallocate (opj_tcd_precinct_t * p_precinct)
1754
+ {
1755
+ OPJ_UINT32 cblkno , l_nb_code_blocks;
1756
+
1757
+ opj_tcd_cblk_enc_t * l_code_block = p_precinct->cblks.enc;
1758
+ if (l_code_block) {
1759
+ l_nb_code_blocks = p_precinct->block_size / sizeof(opj_tcd_cblk_enc_t);
1760
+
1761
+ for (cblkno = 0; cblkno < l_nb_code_blocks; ++cblkno) {
1762
+ if (l_code_block->data) {
1763
+ opj_free(l_code_block->data - 1);
1764
+ l_code_block->data = 00;
1765
+ }
1766
+
1767
+ if (l_code_block->layers) {
1768
+ opj_free(l_code_block->layers );
1769
+ l_code_block->layers = 00;
1770
+ }
1771
+
1772
+ if (l_code_block->passes) {
1773
+ opj_free(l_code_block->passes );
1774
+ l_code_block->passes = 00;
1775
+ }
1776
+ ++l_code_block;
1777
+ }
1778
+
1779
+ opj_free(p_precinct->cblks.enc);
1780
+
1781
+ p_precinct->cblks.enc = 00;
1782
+ }
1783
+ }
1784
+
1785
+ OPJ_UINT32 opj_tcd_get_encoded_tile_size ( opj_tcd_t *p_tcd )
1786
+ {
1787
+ OPJ_UINT32 i,l_data_size = 0;
1788
+ opj_image_comp_t * l_img_comp = 00;
1789
+ opj_tcd_tilecomp_t * l_tilec = 00;
1790
+ OPJ_UINT32 l_size_comp, l_remaining;
1791
+
1792
+ l_tilec = p_tcd->tcd_image->tiles->comps;
1793
+ l_img_comp = p_tcd->image->comps;
1794
+ for (i=0;i<p_tcd->image->numcomps;++i) {
1795
+ l_size_comp = l_img_comp->prec >> 3; /*(/ 8)*/
1796
+ l_remaining = l_img_comp->prec & 7; /* (%8) */
1797
+
1798
+ if (l_remaining) {
1799
+ ++l_size_comp;
1800
+ }
1801
+
1802
+ if (l_size_comp == 3) {
1803
+ l_size_comp = 4;
1804
+ }
1805
+
1806
+ l_data_size += l_size_comp * (OPJ_UINT32)((l_tilec->x1 - l_tilec->x0) * (l_tilec->y1 - l_tilec->y0));
1807
+ ++l_img_comp;
1808
+ ++l_tilec;
1809
+ }
1810
+
1811
+ return l_data_size;
1812
+ }
1813
+
1814
+ OPJ_BOOL opj_tcd_dc_level_shift_encode ( opj_tcd_t *p_tcd )
1815
+ {
1816
+ OPJ_UINT32 compno;
1817
+ opj_tcd_tilecomp_t * l_tile_comp = 00;
1818
+ opj_tccp_t * l_tccp = 00;
1819
+ opj_image_comp_t * l_img_comp = 00;
1820
+ opj_tcd_tile_t * l_tile;
1821
+ OPJ_UINT32 l_nb_elem,i;
1822
+ OPJ_INT32 * l_current_ptr;
1823
+
1824
+ l_tile = p_tcd->tcd_image->tiles;
1825
+ l_tile_comp = l_tile->comps;
1826
+ l_tccp = p_tcd->tcp->tccps;
1827
+ l_img_comp = p_tcd->image->comps;
1828
+
1829
+ for (compno = 0; compno < l_tile->numcomps; compno++) {
1830
+ l_current_ptr = l_tile_comp->data;
1831
+ l_nb_elem = (OPJ_UINT32)((l_tile_comp->x1 - l_tile_comp->x0) * (l_tile_comp->y1 - l_tile_comp->y0));
1832
+
1833
+ if (l_tccp->qmfbid == 1) {
1834
+ for (i = 0; i < l_nb_elem; ++i) {
1835
+ *l_current_ptr -= l_tccp->m_dc_level_shift ;
1836
+ ++l_current_ptr;
1837
+ }
1838
+ }
1839
+ else {
1840
+ for (i = 0; i < l_nb_elem; ++i) {
1841
+ *l_current_ptr = (*l_current_ptr - l_tccp->m_dc_level_shift) << 11 ;
1842
+ ++l_current_ptr;
1843
+ }
1844
+ }
1845
+
1846
+ ++l_img_comp;
1847
+ ++l_tccp;
1848
+ ++l_tile_comp;
1849
+ }
1850
+
1851
+ return OPJ_TRUE;
1852
+ }
1853
+
1854
+ OPJ_BOOL opj_tcd_mct_encode ( opj_tcd_t *p_tcd )
1855
+ {
1856
+ opj_tcd_tile_t * l_tile = p_tcd->tcd_image->tiles;
1857
+ opj_tcd_tilecomp_t * l_tile_comp = p_tcd->tcd_image->tiles->comps;
1858
+ OPJ_UINT32 samples = (OPJ_UINT32)((l_tile_comp->x1 - l_tile_comp->x0) * (l_tile_comp->y1 - l_tile_comp->y0));
1859
+ OPJ_UINT32 i;
1860
+ OPJ_BYTE ** l_data = 00;
1861
+ opj_tcp_t * l_tcp = p_tcd->tcp;
1862
+
1863
+ if(!p_tcd->tcp->mct) {
1864
+ return OPJ_TRUE;
1865
+ }
1866
+
1867
+ if (p_tcd->tcp->mct == 2) {
1868
+ if (! p_tcd->tcp->m_mct_coding_matrix) {
1869
+ return OPJ_TRUE;
1870
+ }
1871
+
1872
+ l_data = (OPJ_BYTE **) opj_malloc(l_tile->numcomps*sizeof(OPJ_BYTE*));
1873
+ if (! l_data) {
1874
+ return OPJ_FALSE;
1875
+ }
1876
+
1877
+ for (i=0;i<l_tile->numcomps;++i) {
1878
+ l_data[i] = (OPJ_BYTE*) l_tile_comp->data;
1879
+ ++l_tile_comp;
1880
+ }
1881
+
1882
+ if (! opj_mct_encode_custom(/* MCT data */
1883
+ (OPJ_BYTE*) p_tcd->tcp->m_mct_coding_matrix,
1884
+ /* size of components */
1885
+ samples,
1886
+ /* components */
1887
+ l_data,
1888
+ /* nb of components (i.e. size of pData) */
1889
+ l_tile->numcomps,
1890
+ /* tells if the data is signed */
1891
+ p_tcd->image->comps->sgnd) )
1892
+ {
1893
+ opj_free(l_data);
1894
+ return OPJ_FALSE;
1895
+ }
1896
+
1897
+ opj_free(l_data);
1898
+ }
1899
+ else if (l_tcp->tccps->qmfbid == 0) {
1900
+ opj_mct_encode_real(l_tile->comps[0].data, l_tile->comps[1].data, l_tile->comps[2].data, samples);
1901
+ }
1902
+ else {
1903
+ opj_mct_encode(l_tile->comps[0].data, l_tile->comps[1].data, l_tile->comps[2].data, samples);
1904
+ }
1905
+
1906
+ return OPJ_TRUE;
1907
+ }
1908
+
1909
+ OPJ_BOOL opj_tcd_dwt_encode ( opj_tcd_t *p_tcd )
1910
+ {
1911
+ opj_tcd_tile_t * l_tile = p_tcd->tcd_image->tiles;
1912
+ opj_tcd_tilecomp_t * l_tile_comp = p_tcd->tcd_image->tiles->comps;
1913
+ opj_tccp_t * l_tccp = p_tcd->tcp->tccps;
1914
+ OPJ_UINT32 compno;
1915
+
1916
+ for (compno = 0; compno < l_tile->numcomps; ++compno) {
1917
+ if (l_tccp->qmfbid == 1) {
1918
+ if (! opj_dwt_encode(l_tile_comp)) {
1919
+ return OPJ_FALSE;
1920
+ }
1921
+ }
1922
+ else if (l_tccp->qmfbid == 0) {
1923
+ if (! opj_dwt_encode_real(l_tile_comp)) {
1924
+ return OPJ_FALSE;
1925
+ }
1926
+ }
1927
+
1928
+ ++l_tile_comp;
1929
+ ++l_tccp;
1930
+ }
1931
+
1932
+ return OPJ_TRUE;
1933
+ }
1934
+
1935
+ OPJ_BOOL opj_tcd_t1_encode ( opj_tcd_t *p_tcd )
1936
+ {
1937
+ opj_t1_t * l_t1;
1938
+ const OPJ_FLOAT64 * l_mct_norms;
1939
+ opj_tcp_t * l_tcp = p_tcd->tcp;
1940
+
1941
+ l_t1 = opj_t1_create();
1942
+ if (l_t1 == 00) {
1943
+ return OPJ_FALSE;
1944
+ }
1945
+
1946
+ if (l_tcp->mct == 1) {
1947
+ /* irreversible encoding */
1948
+ if (l_tcp->tccps->qmfbid == 0) {
1949
+ l_mct_norms = opj_mct_get_mct_norms_real();
1950
+ }
1951
+ else {
1952
+ l_mct_norms = opj_mct_get_mct_norms();
1953
+ }
1954
+ }
1955
+ else {
1956
+ l_mct_norms = (const OPJ_FLOAT64 *) (l_tcp->mct_norms);
1957
+ }
1958
+
1959
+ if (! opj_t1_encode_cblks(l_t1, p_tcd->tcd_image->tiles , l_tcp, l_mct_norms)) {
1960
+ opj_t1_destroy(l_t1);
1961
+ return OPJ_FALSE;
1962
+ }
1963
+
1964
+ opj_t1_destroy(l_t1);
1965
+
1966
+ return OPJ_TRUE;
1967
+ }
1968
+
1969
+ OPJ_BOOL opj_tcd_t2_encode (opj_tcd_t *p_tcd,
1970
+ OPJ_BYTE * p_dest_data,
1971
+ OPJ_UINT32 * p_data_written,
1972
+ OPJ_UINT32 p_max_dest_size,
1973
+ opj_codestream_info_t *p_cstr_info )
1974
+ {
1975
+ opj_t2_t * l_t2;
1976
+
1977
+ l_t2 = opj_t2_create(p_tcd->image, p_tcd->cp);
1978
+ if (l_t2 == 00) {
1979
+ return OPJ_FALSE;
1980
+ }
1981
+
1982
+ if (! opj_t2_encode_packets(
1983
+ l_t2,
1984
+ p_tcd->tcd_tileno,
1985
+ p_tcd->tcd_image->tiles,
1986
+ p_tcd->tcp->numlayers,
1987
+ p_dest_data,
1988
+ p_data_written,
1989
+ p_max_dest_size,
1990
+ p_cstr_info,
1991
+ p_tcd->tp_num,
1992
+ p_tcd->tp_pos,
1993
+ p_tcd->cur_pino,
1994
+ FINAL_PASS))
1995
+ {
1996
+ opj_t2_destroy(l_t2);
1997
+ return OPJ_FALSE;
1998
+ }
1999
+
2000
+ opj_t2_destroy(l_t2);
2001
+
2002
+ /*---------------CLEAN-------------------*/
2003
+ return OPJ_TRUE;
2004
+ }
2005
+
2006
+
2007
+ OPJ_BOOL opj_tcd_rate_allocate_encode( opj_tcd_t *p_tcd,
2008
+ OPJ_BYTE * p_dest_data,
2009
+ OPJ_UINT32 p_max_dest_size,
2010
+ opj_codestream_info_t *p_cstr_info )
2011
+ {
2012
+ opj_cp_t * l_cp = p_tcd->cp;
2013
+ OPJ_UINT32 l_nb_written = 0;
2014
+
2015
+ if (p_cstr_info) {
2016
+ p_cstr_info->index_write = 0;
2017
+ }
2018
+
2019
+ if (l_cp->m_specific_param.m_enc.m_disto_alloc|| l_cp->m_specific_param.m_enc.m_fixed_quality) {
2020
+ /* fixed_quality */
2021
+ /* Normal Rate/distortion allocation */
2022
+ if (! opj_tcd_rateallocate(p_tcd, p_dest_data,&l_nb_written, p_max_dest_size, p_cstr_info)) {
2023
+ return OPJ_FALSE;
2024
+ }
2025
+ }
2026
+ else {
2027
+ /* Fixed layer allocation */
2028
+ opj_tcd_rateallocate_fixed(p_tcd);
2029
+ }
2030
+
2031
+ return OPJ_TRUE;
2032
+ }
2033
+
2034
+
2035
+ OPJ_BOOL opj_tcd_copy_tile_data ( opj_tcd_t *p_tcd,
2036
+ OPJ_BYTE * p_src,
2037
+ OPJ_UINT32 p_src_length )
2038
+ {
2039
+ OPJ_UINT32 i,j,l_data_size = 0;
2040
+ opj_image_comp_t * l_img_comp = 00;
2041
+ opj_tcd_tilecomp_t * l_tilec = 00;
2042
+ OPJ_UINT32 l_size_comp, l_remaining;
2043
+ OPJ_UINT32 l_nb_elem;
2044
+
2045
+ l_data_size = opj_tcd_get_encoded_tile_size(p_tcd);
2046
+ if (l_data_size != p_src_length) {
2047
+ return OPJ_FALSE;
2048
+ }
2049
+
2050
+ l_tilec = p_tcd->tcd_image->tiles->comps;
2051
+ l_img_comp = p_tcd->image->comps;
2052
+ for (i=0;i<p_tcd->image->numcomps;++i) {
2053
+ l_size_comp = l_img_comp->prec >> 3; /*(/ 8)*/
2054
+ l_remaining = l_img_comp->prec & 7; /* (%8) */
2055
+ l_nb_elem = (OPJ_UINT32)((l_tilec->x1 - l_tilec->x0) * (l_tilec->y1 - l_tilec->y0));
2056
+
2057
+ if (l_remaining) {
2058
+ ++l_size_comp;
2059
+ }
2060
+
2061
+ if (l_size_comp == 3) {
2062
+ l_size_comp = 4;
2063
+ }
2064
+
2065
+ switch (l_size_comp) {
2066
+ case 1:
2067
+ {
2068
+ OPJ_CHAR * l_src_ptr = (OPJ_CHAR *) p_src;
2069
+ OPJ_INT32 * l_dest_ptr = l_tilec->data;
2070
+
2071
+ if (l_img_comp->sgnd) {
2072
+ for (j=0;j<l_nb_elem;++j) {
2073
+ *(l_dest_ptr++) = (OPJ_INT32) (*(l_src_ptr++));
2074
+ }
2075
+ }
2076
+ else {
2077
+ for (j=0;j<l_nb_elem;++j) {
2078
+ *(l_dest_ptr++) = (*(l_src_ptr++))&0xff;
2079
+ }
2080
+ }
2081
+
2082
+ p_src = (OPJ_BYTE*) l_src_ptr;
2083
+ }
2084
+ break;
2085
+ case 2:
2086
+ {
2087
+ OPJ_INT32 * l_dest_ptr = l_tilec->data;
2088
+ OPJ_INT16 * l_src_ptr = (OPJ_INT16 *) p_src;
2089
+
2090
+ if (l_img_comp->sgnd) {
2091
+ for (j=0;j<l_nb_elem;++j) {
2092
+ *(l_dest_ptr++) = (OPJ_INT32) (*(l_src_ptr++));
2093
+ }
2094
+ }
2095
+ else {
2096
+ for (j=0;j<l_nb_elem;++j) {
2097
+ *(l_dest_ptr++) = (*(l_src_ptr++))&0xffff;
2098
+ }
2099
+ }
2100
+
2101
+ p_src = (OPJ_BYTE*) l_src_ptr;
2102
+ }
2103
+ break;
2104
+ case 4:
2105
+ {
2106
+ OPJ_INT32 * l_src_ptr = (OPJ_INT32 *) p_src;
2107
+ OPJ_INT32 * l_dest_ptr = l_tilec->data;
2108
+
2109
+ for (j=0;j<l_nb_elem;++j) {
2110
+ *(l_dest_ptr++) = (OPJ_INT32) (*(l_src_ptr++));
2111
+ }
2112
+
2113
+ p_src = (OPJ_BYTE*) l_src_ptr;
2114
+ }
2115
+ break;
2116
+ }
2117
+
2118
+ ++l_img_comp;
2119
+ ++l_tilec;
2120
+ }
2121
+
2122
+ return OPJ_TRUE;
2123
+ }