image_pack 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (319) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +18 -0
  3. data/LICENSE.txt +21 -0
  4. data/README.md +140 -0
  5. data/THIRD_PARTY_NOTICES.md +8 -0
  6. data/ext/image_pack/extconf.rb +515 -0
  7. data/ext/image_pack/image_pack.c +1618 -0
  8. data/ext/image_pack/vendor/.vendored +1 -0
  9. data/ext/image_pack/vendor/mozjpeg/BUILDING.txt +902 -0
  10. data/ext/image_pack/vendor/mozjpeg/CMakeLists.txt +1593 -0
  11. data/ext/image_pack/vendor/mozjpeg/LICENSE.md +132 -0
  12. data/ext/image_pack/vendor/mozjpeg/README-mozilla.txt +194 -0
  13. data/ext/image_pack/vendor/mozjpeg/README-turbo.txt +346 -0
  14. data/ext/image_pack/vendor/mozjpeg/README.ijg +258 -0
  15. data/ext/image_pack/vendor/mozjpeg/README.md +29 -0
  16. data/ext/image_pack/vendor/mozjpeg/cderror.h +128 -0
  17. data/ext/image_pack/vendor/mozjpeg/cdjpeg.c +156 -0
  18. data/ext/image_pack/vendor/mozjpeg/cdjpeg.h +171 -0
  19. data/ext/image_pack/vendor/mozjpeg/cjpeg.c +961 -0
  20. data/ext/image_pack/vendor/mozjpeg/cmyk.h +60 -0
  21. data/ext/image_pack/vendor/mozjpeg/coderules.txt +78 -0
  22. data/ext/image_pack/vendor/mozjpeg/croptest.in +95 -0
  23. data/ext/image_pack/vendor/mozjpeg/djpeg.c +855 -0
  24. data/ext/image_pack/vendor/mozjpeg/example.txt +464 -0
  25. data/ext/image_pack/vendor/mozjpeg/jaricom.c +157 -0
  26. data/ext/image_pack/vendor/mozjpeg/jcapimin.c +307 -0
  27. data/ext/image_pack/vendor/mozjpeg/jcapistd.c +168 -0
  28. data/ext/image_pack/vendor/mozjpeg/jcarith.c +972 -0
  29. data/ext/image_pack/vendor/mozjpeg/jccoefct.c +609 -0
  30. data/ext/image_pack/vendor/mozjpeg/jccolext.c +144 -0
  31. data/ext/image_pack/vendor/mozjpeg/jccolor.c +721 -0
  32. data/ext/image_pack/vendor/mozjpeg/jcdctmgr.c +1776 -0
  33. data/ext/image_pack/vendor/mozjpeg/jcext.c +219 -0
  34. data/ext/image_pack/vendor/mozjpeg/jchuff.c +1146 -0
  35. data/ext/image_pack/vendor/mozjpeg/jchuff.h +57 -0
  36. data/ext/image_pack/vendor/mozjpeg/jcicc.c +105 -0
  37. data/ext/image_pack/vendor/mozjpeg/jcinit.c +82 -0
  38. data/ext/image_pack/vendor/mozjpeg/jcmainct.c +162 -0
  39. data/ext/image_pack/vendor/mozjpeg/jcmarker.c +844 -0
  40. data/ext/image_pack/vendor/mozjpeg/jcmaster.c +958 -0
  41. data/ext/image_pack/vendor/mozjpeg/jcmaster.h +56 -0
  42. data/ext/image_pack/vendor/mozjpeg/jcomapi.c +109 -0
  43. data/ext/image_pack/vendor/mozjpeg/jconfig.h.in +37 -0
  44. data/ext/image_pack/vendor/mozjpeg/jconfig.txt +93 -0
  45. data/ext/image_pack/vendor/mozjpeg/jconfigint.h.in +44 -0
  46. data/ext/image_pack/vendor/mozjpeg/jcparam.c +991 -0
  47. data/ext/image_pack/vendor/mozjpeg/jcphuff.c +1123 -0
  48. data/ext/image_pack/vendor/mozjpeg/jcprepct.c +351 -0
  49. data/ext/image_pack/vendor/mozjpeg/jcsample.c +522 -0
  50. data/ext/image_pack/vendor/mozjpeg/jcstest.c +126 -0
  51. data/ext/image_pack/vendor/mozjpeg/jctrans.c +408 -0
  52. data/ext/image_pack/vendor/mozjpeg/jdapimin.c +407 -0
  53. data/ext/image_pack/vendor/mozjpeg/jdapistd.c +691 -0
  54. data/ext/image_pack/vendor/mozjpeg/jdarith.c +782 -0
  55. data/ext/image_pack/vendor/mozjpeg/jdatadst-tj.c +198 -0
  56. data/ext/image_pack/vendor/mozjpeg/jdatadst.c +299 -0
  57. data/ext/image_pack/vendor/mozjpeg/jdatasrc-tj.c +194 -0
  58. data/ext/image_pack/vendor/mozjpeg/jdatasrc.c +295 -0
  59. data/ext/image_pack/vendor/mozjpeg/jdcoefct.c +881 -0
  60. data/ext/image_pack/vendor/mozjpeg/jdcoefct.h +83 -0
  61. data/ext/image_pack/vendor/mozjpeg/jdcol565.c +384 -0
  62. data/ext/image_pack/vendor/mozjpeg/jdcolext.c +141 -0
  63. data/ext/image_pack/vendor/mozjpeg/jdcolor.c +881 -0
  64. data/ext/image_pack/vendor/mozjpeg/jdct.h +208 -0
  65. data/ext/image_pack/vendor/mozjpeg/jddctmgr.c +367 -0
  66. data/ext/image_pack/vendor/mozjpeg/jdhuff.c +834 -0
  67. data/ext/image_pack/vendor/mozjpeg/jdhuff.h +247 -0
  68. data/ext/image_pack/vendor/mozjpeg/jdicc.c +167 -0
  69. data/ext/image_pack/vendor/mozjpeg/jdinput.c +408 -0
  70. data/ext/image_pack/vendor/mozjpeg/jdmainct.c +460 -0
  71. data/ext/image_pack/vendor/mozjpeg/jdmainct.h +71 -0
  72. data/ext/image_pack/vendor/mozjpeg/jdmarker.c +1374 -0
  73. data/ext/image_pack/vendor/mozjpeg/jdmaster.c +727 -0
  74. data/ext/image_pack/vendor/mozjpeg/jdmaster.h +33 -0
  75. data/ext/image_pack/vendor/mozjpeg/jdmerge.c +587 -0
  76. data/ext/image_pack/vendor/mozjpeg/jdmerge.h +47 -0
  77. data/ext/image_pack/vendor/mozjpeg/jdmrg565.c +354 -0
  78. data/ext/image_pack/vendor/mozjpeg/jdmrgext.c +184 -0
  79. data/ext/image_pack/vendor/mozjpeg/jdphuff.c +679 -0
  80. data/ext/image_pack/vendor/mozjpeg/jdpostct.c +294 -0
  81. data/ext/image_pack/vendor/mozjpeg/jdsample.c +524 -0
  82. data/ext/image_pack/vendor/mozjpeg/jdsample.h +50 -0
  83. data/ext/image_pack/vendor/mozjpeg/jdtrans.c +156 -0
  84. data/ext/image_pack/vendor/mozjpeg/jerror.c +251 -0
  85. data/ext/image_pack/vendor/mozjpeg/jerror.h +335 -0
  86. data/ext/image_pack/vendor/mozjpeg/jfdctflt.c +169 -0
  87. data/ext/image_pack/vendor/mozjpeg/jfdctfst.c +227 -0
  88. data/ext/image_pack/vendor/mozjpeg/jfdctint.c +288 -0
  89. data/ext/image_pack/vendor/mozjpeg/jidctflt.c +240 -0
  90. data/ext/image_pack/vendor/mozjpeg/jidctfst.c +371 -0
  91. data/ext/image_pack/vendor/mozjpeg/jidctint.c +2627 -0
  92. data/ext/image_pack/vendor/mozjpeg/jidctred.c +409 -0
  93. data/ext/image_pack/vendor/mozjpeg/jinclude.h +147 -0
  94. data/ext/image_pack/vendor/mozjpeg/jmemmgr.c +1180 -0
  95. data/ext/image_pack/vendor/mozjpeg/jmemnobs.c +110 -0
  96. data/ext/image_pack/vendor/mozjpeg/jmemsys.h +178 -0
  97. data/ext/image_pack/vendor/mozjpeg/jmorecfg.h +382 -0
  98. data/ext/image_pack/vendor/mozjpeg/jpeg_nbits_table.h +4098 -0
  99. data/ext/image_pack/vendor/mozjpeg/jpegcomp.h +32 -0
  100. data/ext/image_pack/vendor/mozjpeg/jpegint.h +453 -0
  101. data/ext/image_pack/vendor/mozjpeg/jpeglib.h +1211 -0
  102. data/ext/image_pack/vendor/mozjpeg/jpegtran.c +827 -0
  103. data/ext/image_pack/vendor/mozjpeg/jpegyuv.c +172 -0
  104. data/ext/image_pack/vendor/mozjpeg/jquant1.c +856 -0
  105. data/ext/image_pack/vendor/mozjpeg/jquant2.c +1286 -0
  106. data/ext/image_pack/vendor/mozjpeg/jsimd.h +123 -0
  107. data/ext/image_pack/vendor/mozjpeg/jsimd_none.c +431 -0
  108. data/ext/image_pack/vendor/mozjpeg/jsimddct.h +70 -0
  109. data/ext/image_pack/vendor/mozjpeg/jstdhuff.c +144 -0
  110. data/ext/image_pack/vendor/mozjpeg/jutils.c +133 -0
  111. data/ext/image_pack/vendor/mozjpeg/jversion.h.in +56 -0
  112. data/ext/image_pack/vendor/mozjpeg/libjpeg.map.in +11 -0
  113. data/ext/image_pack/vendor/mozjpeg/libjpeg.txt +3150 -0
  114. data/ext/image_pack/vendor/mozjpeg/rdbmp.c +690 -0
  115. data/ext/image_pack/vendor/mozjpeg/rdcolmap.c +253 -0
  116. data/ext/image_pack/vendor/mozjpeg/rdgif.c +720 -0
  117. data/ext/image_pack/vendor/mozjpeg/rdjpeg.c +160 -0
  118. data/ext/image_pack/vendor/mozjpeg/rdjpgcom.c +494 -0
  119. data/ext/image_pack/vendor/mozjpeg/rdpng.c +194 -0
  120. data/ext/image_pack/vendor/mozjpeg/rdppm.c +781 -0
  121. data/ext/image_pack/vendor/mozjpeg/rdswitch.c +642 -0
  122. data/ext/image_pack/vendor/mozjpeg/rdtarga.c +508 -0
  123. data/ext/image_pack/vendor/mozjpeg/simd/arm/aarch32/jccolext-neon.c +148 -0
  124. data/ext/image_pack/vendor/mozjpeg/simd/arm/aarch32/jchuff-neon.c +334 -0
  125. data/ext/image_pack/vendor/mozjpeg/simd/arm/aarch32/jsimd.c +976 -0
  126. data/ext/image_pack/vendor/mozjpeg/simd/arm/aarch32/jsimd_neon.S +1200 -0
  127. data/ext/image_pack/vendor/mozjpeg/simd/arm/aarch64/jccolext-neon.c +316 -0
  128. data/ext/image_pack/vendor/mozjpeg/simd/arm/aarch64/jchuff-neon.c +411 -0
  129. data/ext/image_pack/vendor/mozjpeg/simd/arm/aarch64/jsimd.c +1053 -0
  130. data/ext/image_pack/vendor/mozjpeg/simd/arm/aarch64/jsimd_neon.S +2254 -0
  131. data/ext/image_pack/vendor/mozjpeg/simd/arm/align.h +28 -0
  132. data/ext/image_pack/vendor/mozjpeg/simd/arm/jccolor-neon.c +160 -0
  133. data/ext/image_pack/vendor/mozjpeg/simd/arm/jcgray-neon.c +120 -0
  134. data/ext/image_pack/vendor/mozjpeg/simd/arm/jcgryext-neon.c +106 -0
  135. data/ext/image_pack/vendor/mozjpeg/simd/arm/jchuff.h +131 -0
  136. data/ext/image_pack/vendor/mozjpeg/simd/arm/jcphuff-neon.c +623 -0
  137. data/ext/image_pack/vendor/mozjpeg/simd/arm/jcsample-neon.c +192 -0
  138. data/ext/image_pack/vendor/mozjpeg/simd/arm/jdcolext-neon.c +374 -0
  139. data/ext/image_pack/vendor/mozjpeg/simd/arm/jdcolor-neon.c +141 -0
  140. data/ext/image_pack/vendor/mozjpeg/simd/arm/jdmerge-neon.c +144 -0
  141. data/ext/image_pack/vendor/mozjpeg/simd/arm/jdmrgext-neon.c +723 -0
  142. data/ext/image_pack/vendor/mozjpeg/simd/arm/jdsample-neon.c +569 -0
  143. data/ext/image_pack/vendor/mozjpeg/simd/arm/jfdctfst-neon.c +214 -0
  144. data/ext/image_pack/vendor/mozjpeg/simd/arm/jfdctint-neon.c +376 -0
  145. data/ext/image_pack/vendor/mozjpeg/simd/arm/jidctfst-neon.c +472 -0
  146. data/ext/image_pack/vendor/mozjpeg/simd/arm/jidctint-neon.c +801 -0
  147. data/ext/image_pack/vendor/mozjpeg/simd/arm/jidctred-neon.c +486 -0
  148. data/ext/image_pack/vendor/mozjpeg/simd/arm/jquanti-neon.c +193 -0
  149. data/ext/image_pack/vendor/mozjpeg/simd/arm/neon-compat.h +26 -0
  150. data/ext/image_pack/vendor/mozjpeg/simd/arm/neon-compat.h.in +37 -0
  151. data/ext/image_pack/vendor/mozjpeg/simd/i386/jccolext-avx2.asm +578 -0
  152. data/ext/image_pack/vendor/mozjpeg/simd/i386/jccolext-mmx.asm +476 -0
  153. data/ext/image_pack/vendor/mozjpeg/simd/i386/jccolext-sse2.asm +503 -0
  154. data/ext/image_pack/vendor/mozjpeg/simd/i386/jccolor-avx2.asm +121 -0
  155. data/ext/image_pack/vendor/mozjpeg/simd/i386/jccolor-mmx.asm +121 -0
  156. data/ext/image_pack/vendor/mozjpeg/simd/i386/jccolor-sse2.asm +120 -0
  157. data/ext/image_pack/vendor/mozjpeg/simd/i386/jcgray-avx2.asm +113 -0
  158. data/ext/image_pack/vendor/mozjpeg/simd/i386/jcgray-mmx.asm +113 -0
  159. data/ext/image_pack/vendor/mozjpeg/simd/i386/jcgray-sse2.asm +112 -0
  160. data/ext/image_pack/vendor/mozjpeg/simd/i386/jcgryext-avx2.asm +457 -0
  161. data/ext/image_pack/vendor/mozjpeg/simd/i386/jcgryext-mmx.asm +355 -0
  162. data/ext/image_pack/vendor/mozjpeg/simd/i386/jcgryext-sse2.asm +382 -0
  163. data/ext/image_pack/vendor/mozjpeg/simd/i386/jchuff-sse2.asm +761 -0
  164. data/ext/image_pack/vendor/mozjpeg/simd/i386/jcphuff-sse2.asm +662 -0
  165. data/ext/image_pack/vendor/mozjpeg/simd/i386/jcsample-avx2.asm +388 -0
  166. data/ext/image_pack/vendor/mozjpeg/simd/i386/jcsample-mmx.asm +324 -0
  167. data/ext/image_pack/vendor/mozjpeg/simd/i386/jcsample-sse2.asm +351 -0
  168. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdcolext-avx2.asm +515 -0
  169. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdcolext-mmx.asm +404 -0
  170. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdcolext-sse2.asm +458 -0
  171. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdcolor-avx2.asm +118 -0
  172. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdcolor-mmx.asm +117 -0
  173. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdcolor-sse2.asm +117 -0
  174. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdmerge-avx2.asm +136 -0
  175. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdmerge-mmx.asm +123 -0
  176. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdmerge-sse2.asm +135 -0
  177. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdmrgext-avx2.asm +575 -0
  178. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdmrgext-mmx.asm +460 -0
  179. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdmrgext-sse2.asm +517 -0
  180. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdsample-avx2.asm +760 -0
  181. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdsample-mmx.asm +731 -0
  182. data/ext/image_pack/vendor/mozjpeg/simd/i386/jdsample-sse2.asm +724 -0
  183. data/ext/image_pack/vendor/mozjpeg/simd/i386/jfdctflt-3dn.asm +318 -0
  184. data/ext/image_pack/vendor/mozjpeg/simd/i386/jfdctflt-sse.asm +369 -0
  185. data/ext/image_pack/vendor/mozjpeg/simd/i386/jfdctfst-mmx.asm +395 -0
  186. data/ext/image_pack/vendor/mozjpeg/simd/i386/jfdctfst-sse2.asm +403 -0
  187. data/ext/image_pack/vendor/mozjpeg/simd/i386/jfdctint-avx2.asm +331 -0
  188. data/ext/image_pack/vendor/mozjpeg/simd/i386/jfdctint-mmx.asm +620 -0
  189. data/ext/image_pack/vendor/mozjpeg/simd/i386/jfdctint-sse2.asm +633 -0
  190. data/ext/image_pack/vendor/mozjpeg/simd/i386/jidctflt-3dn.asm +451 -0
  191. data/ext/image_pack/vendor/mozjpeg/simd/i386/jidctflt-sse.asm +571 -0
  192. data/ext/image_pack/vendor/mozjpeg/simd/i386/jidctflt-sse2.asm +497 -0
  193. data/ext/image_pack/vendor/mozjpeg/simd/i386/jidctfst-mmx.asm +499 -0
  194. data/ext/image_pack/vendor/mozjpeg/simd/i386/jidctfst-sse2.asm +501 -0
  195. data/ext/image_pack/vendor/mozjpeg/simd/i386/jidctint-avx2.asm +453 -0
  196. data/ext/image_pack/vendor/mozjpeg/simd/i386/jidctint-mmx.asm +851 -0
  197. data/ext/image_pack/vendor/mozjpeg/simd/i386/jidctint-sse2.asm +858 -0
  198. data/ext/image_pack/vendor/mozjpeg/simd/i386/jidctred-mmx.asm +704 -0
  199. data/ext/image_pack/vendor/mozjpeg/simd/i386/jidctred-sse2.asm +592 -0
  200. data/ext/image_pack/vendor/mozjpeg/simd/i386/jquant-3dn.asm +230 -0
  201. data/ext/image_pack/vendor/mozjpeg/simd/i386/jquant-mmx.asm +276 -0
  202. data/ext/image_pack/vendor/mozjpeg/simd/i386/jquant-sse.asm +208 -0
  203. data/ext/image_pack/vendor/mozjpeg/simd/i386/jquantf-sse2.asm +168 -0
  204. data/ext/image_pack/vendor/mozjpeg/simd/i386/jquanti-avx2.asm +188 -0
  205. data/ext/image_pack/vendor/mozjpeg/simd/i386/jquanti-sse2.asm +201 -0
  206. data/ext/image_pack/vendor/mozjpeg/simd/i386/jsimd.c +1312 -0
  207. data/ext/image_pack/vendor/mozjpeg/simd/i386/jsimdcpu.asm +135 -0
  208. data/ext/image_pack/vendor/mozjpeg/simd/jsimd.h +1258 -0
  209. data/ext/image_pack/vendor/mozjpeg/simd/mips/jsimd.c +1143 -0
  210. data/ext/image_pack/vendor/mozjpeg/simd/mips/jsimd_dspr2.S +4543 -0
  211. data/ext/image_pack/vendor/mozjpeg/simd/mips/jsimd_dspr2_asm.h +292 -0
  212. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jccolext-mmi.c +455 -0
  213. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jccolor-mmi.c +148 -0
  214. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jcgray-mmi.c +132 -0
  215. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jcgryext-mmi.c +374 -0
  216. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jcsample-mmi.c +98 -0
  217. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jcsample.h +28 -0
  218. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jdcolext-mmi.c +415 -0
  219. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jdcolor-mmi.c +139 -0
  220. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jdmerge-mmi.c +149 -0
  221. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jdmrgext-mmi.c +615 -0
  222. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jdsample-mmi.c +304 -0
  223. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jfdctfst-mmi.c +255 -0
  224. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jfdctint-mmi.c +398 -0
  225. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jidctfst-mmi.c +395 -0
  226. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jidctint-mmi.c +571 -0
  227. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jquanti-mmi.c +124 -0
  228. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jsimd.c +866 -0
  229. data/ext/image_pack/vendor/mozjpeg/simd/mips64/jsimd_mmi.h +69 -0
  230. data/ext/image_pack/vendor/mozjpeg/simd/mips64/loongson-mmintrin.h +1334 -0
  231. data/ext/image_pack/vendor/mozjpeg/simd/nasm/jcolsamp.inc +135 -0
  232. data/ext/image_pack/vendor/mozjpeg/simd/nasm/jdct.inc +31 -0
  233. data/ext/image_pack/vendor/mozjpeg/simd/nasm/jsimdcfg.inc +93 -0
  234. data/ext/image_pack/vendor/mozjpeg/simd/nasm/jsimdcfg.inc.h +133 -0
  235. data/ext/image_pack/vendor/mozjpeg/simd/nasm/jsimdext.inc +520 -0
  236. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jccolext-altivec.c +269 -0
  237. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jccolor-altivec.c +116 -0
  238. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jcgray-altivec.c +111 -0
  239. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jcgryext-altivec.c +228 -0
  240. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jcsample-altivec.c +159 -0
  241. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jcsample.h +28 -0
  242. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jdcolext-altivec.c +276 -0
  243. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jdcolor-altivec.c +106 -0
  244. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jdmerge-altivec.c +130 -0
  245. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jdmrgext-altivec.c +329 -0
  246. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jdsample-altivec.c +400 -0
  247. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jfdctfst-altivec.c +154 -0
  248. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jfdctint-altivec.c +258 -0
  249. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jidctfst-altivec.c +255 -0
  250. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jidctint-altivec.c +357 -0
  251. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jquanti-altivec.c +250 -0
  252. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jsimd.c +884 -0
  253. data/ext/image_pack/vendor/mozjpeg/simd/powerpc/jsimd_altivec.h +98 -0
  254. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jccolext-avx2.asm +559 -0
  255. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jccolext-sse2.asm +484 -0
  256. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jccolor-avx2.asm +121 -0
  257. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jccolor-sse2.asm +120 -0
  258. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jcgray-avx2.asm +113 -0
  259. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jcgray-sse2.asm +112 -0
  260. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jcgryext-avx2.asm +438 -0
  261. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jcgryext-sse2.asm +363 -0
  262. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jchuff-sse2.asm +583 -0
  263. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jcphuff-sse2.asm +639 -0
  264. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jcsample-avx2.asm +367 -0
  265. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jcsample-sse2.asm +330 -0
  266. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jdcolext-avx2.asm +496 -0
  267. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jdcolext-sse2.asm +439 -0
  268. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jdcolor-avx2.asm +118 -0
  269. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jdcolor-sse2.asm +117 -0
  270. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jdmerge-avx2.asm +136 -0
  271. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jdmerge-sse2.asm +135 -0
  272. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jdmrgext-avx2.asm +596 -0
  273. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jdmrgext-sse2.asm +538 -0
  274. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jdsample-avx2.asm +696 -0
  275. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jdsample-sse2.asm +665 -0
  276. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jfdctflt-sse.asm +355 -0
  277. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jfdctfst-sse2.asm +389 -0
  278. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jfdctint-avx2.asm +320 -0
  279. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jfdctint-sse2.asm +619 -0
  280. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jidctflt-sse2.asm +482 -0
  281. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jidctfst-sse2.asm +491 -0
  282. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jidctint-avx2.asm +418 -0
  283. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jidctint-sse2.asm +847 -0
  284. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jidctred-sse2.asm +574 -0
  285. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jquantf-sse2.asm +155 -0
  286. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jquanti-avx2.asm +163 -0
  287. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jquanti-sse2.asm +188 -0
  288. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jsimd.c +1110 -0
  289. data/ext/image_pack/vendor/mozjpeg/simd/x86_64/jsimdcpu.asm +86 -0
  290. data/ext/image_pack/vendor/mozjpeg/strtest.c +170 -0
  291. data/ext/image_pack/vendor/mozjpeg/structure.txt +900 -0
  292. data/ext/image_pack/vendor/mozjpeg/tjbench.c +1044 -0
  293. data/ext/image_pack/vendor/mozjpeg/tjbenchtest.in +256 -0
  294. data/ext/image_pack/vendor/mozjpeg/tjbenchtest.java.in +215 -0
  295. data/ext/image_pack/vendor/mozjpeg/tjexample.c +406 -0
  296. data/ext/image_pack/vendor/mozjpeg/tjexampletest.in +149 -0
  297. data/ext/image_pack/vendor/mozjpeg/tjexampletest.java.in +151 -0
  298. data/ext/image_pack/vendor/mozjpeg/tjunittest.c +961 -0
  299. data/ext/image_pack/vendor/mozjpeg/tjutil.c +70 -0
  300. data/ext/image_pack/vendor/mozjpeg/tjutil.h +53 -0
  301. data/ext/image_pack/vendor/mozjpeg/transupp.c +2373 -0
  302. data/ext/image_pack/vendor/mozjpeg/transupp.h +243 -0
  303. data/ext/image_pack/vendor/mozjpeg/turbojpeg-jni.c +1259 -0
  304. data/ext/image_pack/vendor/mozjpeg/turbojpeg.c +2320 -0
  305. data/ext/image_pack/vendor/mozjpeg/turbojpeg.h +1784 -0
  306. data/ext/image_pack/vendor/mozjpeg/usage.txt +679 -0
  307. data/ext/image_pack/vendor/mozjpeg/wizard.txt +220 -0
  308. data/ext/image_pack/vendor/mozjpeg/wrbmp.c +552 -0
  309. data/ext/image_pack/vendor/mozjpeg/wrgif.c +580 -0
  310. data/ext/image_pack/vendor/mozjpeg/wrjpgcom.c +577 -0
  311. data/ext/image_pack/vendor/mozjpeg/wrppm.c +366 -0
  312. data/ext/image_pack/vendor/mozjpeg/wrtarga.c +258 -0
  313. data/ext/image_pack/vendor/mozjpeg/yuvjpeg.c +268 -0
  314. data/lib/image_pack/backend.rb +8 -0
  315. data/lib/image_pack/configuration.rb +23 -0
  316. data/lib/image_pack/errors.rb +13 -0
  317. data/lib/image_pack/version.rb +5 -0
  318. data/lib/image_pack.rb +208 -0
  319. metadata +433 -0
@@ -0,0 +1,366 @@
1
+ /*
2
+ * wrppm.c
3
+ *
4
+ * This file was part of the Independent JPEG Group's software:
5
+ * Copyright (C) 1991-1996, Thomas G. Lane.
6
+ * Modified 2009 by Guido Vollbeding.
7
+ * libjpeg-turbo Modifications:
8
+ * Copyright (C) 2017, 2019-2020, 2022, D. R. Commander.
9
+ * For conditions of distribution and use, see the accompanying README.ijg
10
+ * file.
11
+ *
12
+ * This file contains routines to write output images in PPM/PGM format.
13
+ * The extended 2-byte-per-sample raw PPM/PGM formats are supported.
14
+ * The PBMPLUS library is NOT required to compile this software
15
+ * (but it is highly useful as a set of PPM image manipulation programs).
16
+ *
17
+ * These routines may need modification for non-Unix environments or
18
+ * specialized applications. As they stand, they assume output to
19
+ * an ordinary stdio stream.
20
+ */
21
+
22
+ #include "cmyk.h"
23
+ #include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
24
+
25
+ #ifdef PPM_SUPPORTED
26
+
27
+
28
+ /*
29
+ * For 12-bit JPEG data, we either downscale the values to 8 bits
30
+ * (to write standard byte-per-sample PPM/PGM files), or output
31
+ * nonstandard word-per-sample PPM/PGM files. Downscaling is done
32
+ * if PPM_NORAWWORD is defined (this can be done in the Makefile
33
+ * or in jconfig.h).
34
+ * (When the core library supports data precision reduction, a cleaner
35
+ * implementation will be to ask for that instead.)
36
+ */
37
+
38
+ #if BITS_IN_JSAMPLE == 8
39
+ #define PUTPPMSAMPLE(ptr, v) *ptr++ = (char)(v)
40
+ #define BYTESPERSAMPLE 1
41
+ #define PPM_MAXVAL 255
42
+ #else
43
+ #ifdef PPM_NORAWWORD
44
+ #define PUTPPMSAMPLE(ptr, v) *ptr++ = (char)((v) >> (BITS_IN_JSAMPLE - 8))
45
+ #define BYTESPERSAMPLE 1
46
+ #define PPM_MAXVAL 255
47
+ #else
48
+ /* The word-per-sample format always puts the MSB first. */
49
+ #define PUTPPMSAMPLE(ptr, v) { \
50
+ register int val_ = v; \
51
+ *ptr++ = (char)((val_ >> 8) & 0xFF); \
52
+ *ptr++ = (char)(val_ & 0xFF); \
53
+ }
54
+ #define BYTESPERSAMPLE 2
55
+ #define PPM_MAXVAL ((1 << BITS_IN_JSAMPLE) - 1)
56
+ #endif
57
+ #endif
58
+
59
+
60
+ /*
61
+ * When JSAMPLE is the same size as char, we can just fwrite() the
62
+ * decompressed data to the PPM or PGM file.
63
+ */
64
+
65
+
66
+ /* Private version of data destination object */
67
+
68
+ typedef struct {
69
+ struct djpeg_dest_struct pub; /* public fields */
70
+
71
+ /* Usually these two pointers point to the same place: */
72
+ char *iobuffer; /* fwrite's I/O buffer */
73
+ JSAMPROW pixrow; /* decompressor output buffer */
74
+ size_t buffer_width; /* width of I/O buffer */
75
+ JDIMENSION samples_per_row; /* JSAMPLEs per output row */
76
+ } ppm_dest_struct;
77
+
78
+ typedef ppm_dest_struct *ppm_dest_ptr;
79
+
80
+
81
+ /*
82
+ * Write some pixel data.
83
+ * In this module rows_supplied will always be 1.
84
+ *
85
+ * put_pixel_rows handles the "normal" 8-bit case where the decompressor
86
+ * output buffer is physically the same as the fwrite buffer.
87
+ */
88
+
89
+ METHODDEF(void)
90
+ put_pixel_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
91
+ JDIMENSION rows_supplied)
92
+ {
93
+ ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
94
+
95
+ fwrite(dest->iobuffer, 1, dest->buffer_width, dest->pub.output_file);
96
+ }
97
+
98
+
99
+ /*
100
+ * This code is used when we have to copy the data and apply a pixel
101
+ * format translation. Typically this only happens in 12-bit mode.
102
+ */
103
+
104
+ METHODDEF(void)
105
+ copy_pixel_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
106
+ JDIMENSION rows_supplied)
107
+ {
108
+ ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
109
+ register char *bufferptr;
110
+ register JSAMPROW ptr;
111
+ #if BITS_IN_JSAMPLE != 8
112
+ register JDIMENSION col;
113
+ #endif
114
+
115
+ ptr = dest->pub.buffer[0];
116
+ bufferptr = dest->iobuffer;
117
+ #if BITS_IN_JSAMPLE == 8
118
+ memcpy(bufferptr, ptr, dest->samples_per_row);
119
+ #else
120
+ for (col = dest->samples_per_row; col > 0; col--) {
121
+ PUTPPMSAMPLE(bufferptr, *ptr++);
122
+ }
123
+ #endif
124
+ fwrite(dest->iobuffer, 1, dest->buffer_width, dest->pub.output_file);
125
+ }
126
+
127
+
128
+ /*
129
+ * Convert extended RGB to RGB.
130
+ */
131
+
132
+ METHODDEF(void)
133
+ put_rgb(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo, JDIMENSION rows_supplied)
134
+ {
135
+ ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
136
+ register char *bufferptr;
137
+ register JSAMPROW ptr;
138
+ register JDIMENSION col;
139
+ register int rindex = rgb_red[cinfo->out_color_space];
140
+ register int gindex = rgb_green[cinfo->out_color_space];
141
+ register int bindex = rgb_blue[cinfo->out_color_space];
142
+ register int ps = rgb_pixelsize[cinfo->out_color_space];
143
+
144
+ ptr = dest->pub.buffer[0];
145
+ bufferptr = dest->iobuffer;
146
+ for (col = cinfo->output_width; col > 0; col--) {
147
+ PUTPPMSAMPLE(bufferptr, ptr[rindex]);
148
+ PUTPPMSAMPLE(bufferptr, ptr[gindex]);
149
+ PUTPPMSAMPLE(bufferptr, ptr[bindex]);
150
+ ptr += ps;
151
+ }
152
+ fwrite(dest->iobuffer, 1, dest->buffer_width, dest->pub.output_file);
153
+ }
154
+
155
+
156
+ /*
157
+ * Convert CMYK to RGB.
158
+ */
159
+
160
+ METHODDEF(void)
161
+ put_cmyk(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
162
+ JDIMENSION rows_supplied)
163
+ {
164
+ ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
165
+ register char *bufferptr;
166
+ register JSAMPROW ptr;
167
+ register JDIMENSION col;
168
+
169
+ ptr = dest->pub.buffer[0];
170
+ bufferptr = dest->iobuffer;
171
+ for (col = cinfo->output_width; col > 0; col--) {
172
+ JSAMPLE r, g, b, c = *ptr++, m = *ptr++, y = *ptr++, k = *ptr++;
173
+ cmyk_to_rgb(c, m, y, k, &r, &g, &b);
174
+ PUTPPMSAMPLE(bufferptr, r);
175
+ PUTPPMSAMPLE(bufferptr, g);
176
+ PUTPPMSAMPLE(bufferptr, b);
177
+ }
178
+ fwrite(dest->iobuffer, 1, dest->buffer_width, dest->pub.output_file);
179
+ }
180
+
181
+
182
+ /*
183
+ * Write some pixel data when color quantization is in effect.
184
+ * We have to demap the color index values to straight data.
185
+ */
186
+
187
+ METHODDEF(void)
188
+ put_demapped_rgb(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
189
+ JDIMENSION rows_supplied)
190
+ {
191
+ ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
192
+ register char *bufferptr;
193
+ register int pixval;
194
+ register JSAMPROW ptr;
195
+ register JSAMPROW color_map0 = cinfo->colormap[0];
196
+ register JSAMPROW color_map1 = cinfo->colormap[1];
197
+ register JSAMPROW color_map2 = cinfo->colormap[2];
198
+ register JDIMENSION col;
199
+
200
+ ptr = dest->pub.buffer[0];
201
+ bufferptr = dest->iobuffer;
202
+ for (col = cinfo->output_width; col > 0; col--) {
203
+ pixval = *ptr++;
204
+ PUTPPMSAMPLE(bufferptr, color_map0[pixval]);
205
+ PUTPPMSAMPLE(bufferptr, color_map1[pixval]);
206
+ PUTPPMSAMPLE(bufferptr, color_map2[pixval]);
207
+ }
208
+ fwrite(dest->iobuffer, 1, dest->buffer_width, dest->pub.output_file);
209
+ }
210
+
211
+
212
+ METHODDEF(void)
213
+ put_demapped_gray(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
214
+ JDIMENSION rows_supplied)
215
+ {
216
+ ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
217
+ register char *bufferptr;
218
+ register JSAMPROW ptr;
219
+ register JSAMPROW color_map = cinfo->colormap[0];
220
+ register JDIMENSION col;
221
+
222
+ ptr = dest->pub.buffer[0];
223
+ bufferptr = dest->iobuffer;
224
+ for (col = cinfo->output_width; col > 0; col--) {
225
+ PUTPPMSAMPLE(bufferptr, color_map[*ptr++]);
226
+ }
227
+ fwrite(dest->iobuffer, 1, dest->buffer_width, dest->pub.output_file);
228
+ }
229
+
230
+
231
+ /*
232
+ * Startup: write the file header.
233
+ */
234
+
235
+ METHODDEF(void)
236
+ start_output_ppm(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
237
+ {
238
+ ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
239
+
240
+ /* Emit file header */
241
+ switch (cinfo->out_color_space) {
242
+ case JCS_GRAYSCALE:
243
+ /* emit header for raw PGM format */
244
+ fprintf(dest->pub.output_file, "P5\n%ld %ld\n%d\n",
245
+ (long)cinfo->output_width, (long)cinfo->output_height, PPM_MAXVAL);
246
+ break;
247
+ case JCS_RGB:
248
+ case JCS_EXT_RGB:
249
+ case JCS_EXT_RGBX:
250
+ case JCS_EXT_BGR:
251
+ case JCS_EXT_BGRX:
252
+ case JCS_EXT_XBGR:
253
+ case JCS_EXT_XRGB:
254
+ case JCS_EXT_RGBA:
255
+ case JCS_EXT_BGRA:
256
+ case JCS_EXT_ABGR:
257
+ case JCS_EXT_ARGB:
258
+ case JCS_CMYK:
259
+ if (!IsExtRGB(cinfo->out_color_space) && cinfo->quantize_colors)
260
+ ERREXIT(cinfo, JERR_PPM_COLORSPACE);
261
+ /* emit header for raw PPM format */
262
+ fprintf(dest->pub.output_file, "P6\n%ld %ld\n%d\n",
263
+ (long)cinfo->output_width, (long)cinfo->output_height, PPM_MAXVAL);
264
+ break;
265
+ default:
266
+ ERREXIT(cinfo, JERR_PPM_COLORSPACE);
267
+ }
268
+ }
269
+
270
+
271
+ /*
272
+ * Finish up at the end of the file.
273
+ */
274
+
275
+ METHODDEF(void)
276
+ finish_output_ppm(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
277
+ {
278
+ /* Make sure we wrote the output file OK */
279
+ fflush(dinfo->output_file);
280
+ if (ferror(dinfo->output_file))
281
+ ERREXIT(cinfo, JERR_FILE_WRITE);
282
+ }
283
+
284
+
285
+ /*
286
+ * Re-calculate buffer dimensions based on output dimensions.
287
+ */
288
+
289
+ METHODDEF(void)
290
+ calc_buffer_dimensions_ppm(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
291
+ {
292
+ ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
293
+
294
+ if (cinfo->out_color_space == JCS_GRAYSCALE)
295
+ dest->samples_per_row = cinfo->output_width * cinfo->out_color_components;
296
+ else
297
+ dest->samples_per_row = cinfo->output_width * 3;
298
+ dest->buffer_width = dest->samples_per_row * (BYTESPERSAMPLE * sizeof(char));
299
+ }
300
+
301
+
302
+ /*
303
+ * The module selection routine for PPM format output.
304
+ */
305
+
306
+ GLOBAL(djpeg_dest_ptr)
307
+ jinit_write_ppm(j_decompress_ptr cinfo)
308
+ {
309
+ ppm_dest_ptr dest;
310
+
311
+ /* Create module interface object, fill in method pointers */
312
+ dest = (ppm_dest_ptr)
313
+ (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
314
+ sizeof(ppm_dest_struct));
315
+ dest->pub.start_output = start_output_ppm;
316
+ dest->pub.finish_output = finish_output_ppm;
317
+ dest->pub.calc_buffer_dimensions = calc_buffer_dimensions_ppm;
318
+
319
+ /* Calculate output image dimensions so we can allocate space */
320
+ jpeg_calc_output_dimensions(cinfo);
321
+
322
+ /* Create physical I/O buffer */
323
+ dest->pub.calc_buffer_dimensions(cinfo, (djpeg_dest_ptr)dest);
324
+ dest->iobuffer = (char *)(*cinfo->mem->alloc_small)
325
+ ((j_common_ptr)cinfo, JPOOL_IMAGE, dest->buffer_width);
326
+
327
+ if (cinfo->quantize_colors || BITS_IN_JSAMPLE != 8 ||
328
+ sizeof(JSAMPLE) != sizeof(char) ||
329
+ #if RGB_RED == 0 && RGB_GREEN == 1 && RGB_BLUE == 2 && RGB_PIXELSIZE == 3
330
+ (cinfo->out_color_space != JCS_EXT_RGB &&
331
+ cinfo->out_color_space != JCS_RGB)) {
332
+ #else
333
+ cinfo->out_color_space != JCS_EXT_RGB) {
334
+ #endif
335
+ /* When quantizing, we need an output buffer for colormap indexes
336
+ * that's separate from the physical I/O buffer. We also need a
337
+ * separate buffer if pixel format translation must take place.
338
+ */
339
+ dest->pub.buffer = (*cinfo->mem->alloc_sarray)
340
+ ((j_common_ptr)cinfo, JPOOL_IMAGE,
341
+ cinfo->output_width * cinfo->output_components, (JDIMENSION)1);
342
+ dest->pub.buffer_height = 1;
343
+ if (!cinfo->quantize_colors) {
344
+ if (IsExtRGB(cinfo->out_color_space))
345
+ dest->pub.put_pixel_rows = put_rgb;
346
+ else if (cinfo->out_color_space == JCS_CMYK)
347
+ dest->pub.put_pixel_rows = put_cmyk;
348
+ else
349
+ dest->pub.put_pixel_rows = copy_pixel_rows;
350
+ } else if (cinfo->out_color_space == JCS_GRAYSCALE)
351
+ dest->pub.put_pixel_rows = put_demapped_gray;
352
+ else
353
+ dest->pub.put_pixel_rows = put_demapped_rgb;
354
+ } else {
355
+ /* We will fwrite() directly from decompressor output buffer. */
356
+ /* Synthesize a JSAMPARRAY pointer structure */
357
+ dest->pixrow = (JSAMPROW)dest->iobuffer;
358
+ dest->pub.buffer = &dest->pixrow;
359
+ dest->pub.buffer_height = 1;
360
+ dest->pub.put_pixel_rows = put_pixel_rows;
361
+ }
362
+
363
+ return (djpeg_dest_ptr)dest;
364
+ }
365
+
366
+ #endif /* PPM_SUPPORTED */
@@ -0,0 +1,258 @@
1
+ /*
2
+ * wrtarga.c
3
+ *
4
+ * This file was part of the Independent JPEG Group's software:
5
+ * Copyright (C) 1991-1996, Thomas G. Lane.
6
+ * libjpeg-turbo Modifications:
7
+ * Copyright (C) 2017, 2019, 2022, D. R. Commander.
8
+ * For conditions of distribution and use, see the accompanying README.ijg
9
+ * file.
10
+ *
11
+ * This file contains routines to write output images in Targa format.
12
+ *
13
+ * These routines may need modification for non-Unix environments or
14
+ * specialized applications. As they stand, they assume output to
15
+ * an ordinary stdio stream.
16
+ *
17
+ * Based on code contributed by Lee Daniel Crocker.
18
+ */
19
+
20
+ #include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
21
+
22
+ #ifdef TARGA_SUPPORTED
23
+
24
+
25
+ /*
26
+ * To support 12-bit JPEG data, we'd have to scale output down to 8 bits.
27
+ * This is not yet implemented.
28
+ */
29
+
30
+ #if BITS_IN_JSAMPLE != 8
31
+ Sorry, this code only copes with 8-bit JSAMPLEs. /* deliberate syntax err */
32
+ #endif
33
+
34
+
35
+ /* Private version of data destination object */
36
+
37
+ typedef struct {
38
+ struct djpeg_dest_struct pub; /* public fields */
39
+
40
+ char *iobuffer; /* physical I/O buffer */
41
+ JDIMENSION buffer_width; /* width of one row */
42
+ } tga_dest_struct;
43
+
44
+ typedef tga_dest_struct *tga_dest_ptr;
45
+
46
+
47
+ LOCAL(void)
48
+ write_header(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo, int num_colors)
49
+ /* Create and write a Targa header */
50
+ {
51
+ char targaheader[18];
52
+
53
+ /* Set unused fields of header to 0 */
54
+ memset(targaheader, 0, sizeof(targaheader));
55
+
56
+ if (num_colors > 0) {
57
+ targaheader[1] = 1; /* color map type 1 */
58
+ targaheader[5] = (char)(num_colors & 0xFF);
59
+ targaheader[6] = (char)(num_colors >> 8);
60
+ targaheader[7] = 24; /* 24 bits per cmap entry */
61
+ }
62
+
63
+ targaheader[12] = (char)(cinfo->output_width & 0xFF);
64
+ targaheader[13] = (char)(cinfo->output_width >> 8);
65
+ targaheader[14] = (char)(cinfo->output_height & 0xFF);
66
+ targaheader[15] = (char)(cinfo->output_height >> 8);
67
+ targaheader[17] = 0x20; /* Top-down, non-interlaced */
68
+
69
+ if (cinfo->out_color_space == JCS_GRAYSCALE) {
70
+ targaheader[2] = 3; /* image type = uncompressed grayscale */
71
+ targaheader[16] = 8; /* bits per pixel */
72
+ } else { /* must be RGB */
73
+ if (num_colors > 0) {
74
+ targaheader[2] = 1; /* image type = colormapped RGB */
75
+ targaheader[16] = 8;
76
+ } else {
77
+ targaheader[2] = 2; /* image type = uncompressed RGB */
78
+ targaheader[16] = 24;
79
+ }
80
+ }
81
+
82
+ if (fwrite(targaheader, 1, 18, dinfo->output_file) != (size_t)18)
83
+ ERREXIT(cinfo, JERR_FILE_WRITE);
84
+ }
85
+
86
+
87
+ /*
88
+ * Write some pixel data.
89
+ * In this module rows_supplied will always be 1.
90
+ */
91
+
92
+ METHODDEF(void)
93
+ put_pixel_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
94
+ JDIMENSION rows_supplied)
95
+ /* used for unquantized full-color output */
96
+ {
97
+ tga_dest_ptr dest = (tga_dest_ptr)dinfo;
98
+ register JSAMPROW inptr;
99
+ register char *outptr;
100
+ register JDIMENSION col;
101
+
102
+ inptr = dest->pub.buffer[0];
103
+ outptr = dest->iobuffer;
104
+ for (col = cinfo->output_width; col > 0; col--) {
105
+ outptr[0] = inptr[2]; /* RGB to BGR order */
106
+ outptr[1] = inptr[1];
107
+ outptr[2] = inptr[0];
108
+ inptr += 3, outptr += 3;
109
+ }
110
+ fwrite(dest->iobuffer, 1, dest->buffer_width, dest->pub.output_file);
111
+ }
112
+
113
+ METHODDEF(void)
114
+ put_gray_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
115
+ JDIMENSION rows_supplied)
116
+ /* used for grayscale OR quantized color output */
117
+ {
118
+ tga_dest_ptr dest = (tga_dest_ptr)dinfo;
119
+ register JSAMPROW inptr;
120
+ register char *outptr;
121
+
122
+ inptr = dest->pub.buffer[0];
123
+ outptr = dest->iobuffer;
124
+ memcpy(outptr, inptr, cinfo->output_width);
125
+ fwrite(dest->iobuffer, 1, dest->buffer_width, dest->pub.output_file);
126
+ }
127
+
128
+
129
+ /*
130
+ * Write some demapped pixel data when color quantization is in effect.
131
+ * For Targa, this is only applied to grayscale data.
132
+ */
133
+
134
+ METHODDEF(void)
135
+ put_demapped_gray(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
136
+ JDIMENSION rows_supplied)
137
+ {
138
+ tga_dest_ptr dest = (tga_dest_ptr)dinfo;
139
+ register JSAMPROW inptr;
140
+ register char *outptr;
141
+ register JSAMPROW color_map0 = cinfo->colormap[0];
142
+ register JDIMENSION col;
143
+
144
+ inptr = dest->pub.buffer[0];
145
+ outptr = dest->iobuffer;
146
+ for (col = cinfo->output_width; col > 0; col--) {
147
+ *outptr++ = color_map0[*inptr++];
148
+ }
149
+ fwrite(dest->iobuffer, 1, dest->buffer_width, dest->pub.output_file);
150
+ }
151
+
152
+
153
+ /*
154
+ * Startup: write the file header.
155
+ */
156
+
157
+ METHODDEF(void)
158
+ start_output_tga(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
159
+ {
160
+ tga_dest_ptr dest = (tga_dest_ptr)dinfo;
161
+ int num_colors, i;
162
+ FILE *outfile;
163
+
164
+ if (cinfo->out_color_space == JCS_GRAYSCALE) {
165
+ /* Targa doesn't have a mapped grayscale format, so we will */
166
+ /* demap quantized gray output. Never emit a colormap. */
167
+ write_header(cinfo, dinfo, 0);
168
+ if (cinfo->quantize_colors)
169
+ dest->pub.put_pixel_rows = put_demapped_gray;
170
+ else
171
+ dest->pub.put_pixel_rows = put_gray_rows;
172
+ } else if (cinfo->out_color_space == JCS_RGB) {
173
+ if (cinfo->quantize_colors) {
174
+ /* We only support 8-bit colormap indexes, so only 256 colors */
175
+ num_colors = cinfo->actual_number_of_colors;
176
+ if (num_colors > 256)
177
+ ERREXIT1(cinfo, JERR_TOO_MANY_COLORS, num_colors);
178
+ write_header(cinfo, dinfo, num_colors);
179
+ /* Write the colormap. Note Targa uses BGR byte order */
180
+ outfile = dest->pub.output_file;
181
+ for (i = 0; i < num_colors; i++) {
182
+ putc(cinfo->colormap[2][i], outfile);
183
+ putc(cinfo->colormap[1][i], outfile);
184
+ putc(cinfo->colormap[0][i], outfile);
185
+ }
186
+ dest->pub.put_pixel_rows = put_gray_rows;
187
+ } else {
188
+ write_header(cinfo, dinfo, 0);
189
+ dest->pub.put_pixel_rows = put_pixel_rows;
190
+ }
191
+ } else {
192
+ ERREXIT(cinfo, JERR_TGA_COLORSPACE);
193
+ }
194
+ }
195
+
196
+
197
+ /*
198
+ * Finish up at the end of the file.
199
+ */
200
+
201
+ METHODDEF(void)
202
+ finish_output_tga(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
203
+ {
204
+ /* Make sure we wrote the output file OK */
205
+ fflush(dinfo->output_file);
206
+ if (ferror(dinfo->output_file))
207
+ ERREXIT(cinfo, JERR_FILE_WRITE);
208
+ }
209
+
210
+
211
+ /*
212
+ * Re-calculate buffer dimensions based on output dimensions.
213
+ */
214
+
215
+ METHODDEF(void)
216
+ calc_buffer_dimensions_tga(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
217
+ {
218
+ tga_dest_ptr dest = (tga_dest_ptr)dinfo;
219
+
220
+ dest->buffer_width = cinfo->output_width * cinfo->output_components;
221
+ }
222
+
223
+
224
+ /*
225
+ * The module selection routine for Targa format output.
226
+ */
227
+
228
+ GLOBAL(djpeg_dest_ptr)
229
+ jinit_write_targa(j_decompress_ptr cinfo)
230
+ {
231
+ tga_dest_ptr dest;
232
+
233
+ /* Create module interface object, fill in method pointers */
234
+ dest = (tga_dest_ptr)
235
+ (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
236
+ sizeof(tga_dest_struct));
237
+ dest->pub.start_output = start_output_tga;
238
+ dest->pub.finish_output = finish_output_tga;
239
+ dest->pub.calc_buffer_dimensions = calc_buffer_dimensions_tga;
240
+
241
+ /* Calculate output image dimensions so we can allocate space */
242
+ jpeg_calc_output_dimensions(cinfo);
243
+
244
+ /* Create I/O buffer. */
245
+ dest->pub.calc_buffer_dimensions(cinfo, (djpeg_dest_ptr)dest);
246
+ dest->iobuffer = (char *)
247
+ (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
248
+ (size_t)(dest->buffer_width * sizeof(char)));
249
+
250
+ /* Create decompressor output buffer. */
251
+ dest->pub.buffer = (*cinfo->mem->alloc_sarray)
252
+ ((j_common_ptr)cinfo, JPOOL_IMAGE, dest->buffer_width, (JDIMENSION)1);
253
+ dest->pub.buffer_height = 1;
254
+
255
+ return (djpeg_dest_ptr)dest;
256
+ }
257
+
258
+ #endif /* TARGA_SUPPORTED */