epeg 1.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 (504) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +4 -0
  3. data/MANIFEST +5 -0
  4. data/TODO +1 -0
  5. data/epeg/.dockerignore +4 -0
  6. data/epeg/.gitignore +5 -0
  7. data/epeg/CMakeLists.txt +30 -0
  8. data/epeg/Dockerfile +23 -0
  9. data/epeg/Epeg.h +90 -0
  10. data/epeg/README.md +42 -0
  11. data/epeg/epeg_main.c +1642 -0
  12. data/epeg/epeg_private.h +85 -0
  13. data/epeg/example/.gitignore +1 -0
  14. data/epeg/example/CMakeLists.txt +20 -0
  15. data/epeg/example/example.jpg +0 -0
  16. data/epeg/example/rotatetest.c +29 -0
  17. data/epeg/example/scaletest.c +48 -0
  18. data/epeg/vendor/libjpeg-turbo-2.0.4/BUILDING.md +828 -0
  19. data/epeg/vendor/libjpeg-turbo-2.0.4/CMakeLists.txt +1420 -0
  20. data/epeg/vendor/libjpeg-turbo-2.0.4/ChangeLog.md +1494 -0
  21. data/epeg/vendor/libjpeg-turbo-2.0.4/LICENSE.md +132 -0
  22. data/epeg/vendor/libjpeg-turbo-2.0.4/README.ijg +277 -0
  23. data/epeg/vendor/libjpeg-turbo-2.0.4/README.md +356 -0
  24. data/epeg/vendor/libjpeg-turbo-2.0.4/cderror.h +137 -0
  25. data/epeg/vendor/libjpeg-turbo-2.0.4/cdjpeg.c +145 -0
  26. data/epeg/vendor/libjpeg-turbo-2.0.4/cdjpeg.h +157 -0
  27. data/epeg/vendor/libjpeg-turbo-2.0.4/change.log +315 -0
  28. data/epeg/vendor/libjpeg-turbo-2.0.4/cjpeg.1 +354 -0
  29. data/epeg/vendor/libjpeg-turbo-2.0.4/cjpeg.c +695 -0
  30. data/epeg/vendor/libjpeg-turbo-2.0.4/cmakescripts/BuildPackages.cmake +182 -0
  31. data/epeg/vendor/libjpeg-turbo-2.0.4/cmakescripts/GNUInstallDirs.cmake +416 -0
  32. data/epeg/vendor/libjpeg-turbo-2.0.4/cmakescripts/cmake_uninstall.cmake.in +24 -0
  33. data/epeg/vendor/libjpeg-turbo-2.0.4/cmakescripts/testclean.cmake +41 -0
  34. data/epeg/vendor/libjpeg-turbo-2.0.4/cmyk.h +61 -0
  35. data/epeg/vendor/libjpeg-turbo-2.0.4/coderules.txt +78 -0
  36. data/epeg/vendor/libjpeg-turbo-2.0.4/djpeg.1 +296 -0
  37. data/epeg/vendor/libjpeg-turbo-2.0.4/djpeg.c +822 -0
  38. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/annotated.html +104 -0
  39. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/bc_s.png +0 -0
  40. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/bdwn.png +0 -0
  41. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/classes.html +106 -0
  42. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/closed.png +0 -0
  43. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/doxygen-extra.css +3 -0
  44. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/doxygen.css +1184 -0
  45. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/doxygen.png +0 -0
  46. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/dynsections.js +97 -0
  47. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2blank.png +0 -0
  48. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2cl.png +0 -0
  49. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2doc.png +0 -0
  50. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2folderclosed.png +0 -0
  51. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2folderopen.png +0 -0
  52. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2lastnode.png +0 -0
  53. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2link.png +0 -0
  54. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2mlastnode.png +0 -0
  55. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2mnode.png +0 -0
  56. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2mo.png +0 -0
  57. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2node.png +0 -0
  58. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2ns.png +0 -0
  59. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2plastnode.png +0 -0
  60. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2pnode.png +0 -0
  61. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2splitbar.png +0 -0
  62. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/ftv2vertline.png +0 -0
  63. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/functions.html +134 -0
  64. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/functions_vars.html +134 -0
  65. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/group___turbo_j_p_e_g.html +2775 -0
  66. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/index.html +90 -0
  67. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/jquery.js +8 -0
  68. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/modules.html +95 -0
  69. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/nav_f.png +0 -0
  70. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/nav_g.png +0 -0
  71. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/nav_h.png +0 -0
  72. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/open.png +0 -0
  73. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_63.html +26 -0
  74. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_63.js +4 -0
  75. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_64.html +26 -0
  76. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_64.js +5 -0
  77. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_68.html +26 -0
  78. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_68.js +4 -0
  79. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_6e.html +26 -0
  80. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_6e.js +4 -0
  81. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_6f.html +26 -0
  82. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_6f.js +5 -0
  83. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_72.html +26 -0
  84. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_72.js +4 -0
  85. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_74.html +26 -0
  86. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_74.js +102 -0
  87. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_77.html +26 -0
  88. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_77.js +4 -0
  89. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_78.html +26 -0
  90. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_78.js +4 -0
  91. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_79.html +26 -0
  92. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/all_79.js +4 -0
  93. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/classes_74.html +26 -0
  94. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/classes_74.js +6 -0
  95. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/close.png +0 -0
  96. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/enums_74.html +26 -0
  97. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/enums_74.js +8 -0
  98. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/enumvalues_74.html +26 -0
  99. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/enumvalues_74.js +37 -0
  100. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/functions_74.html +26 -0
  101. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/functions_74.js +31 -0
  102. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/groups_74.html +26 -0
  103. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/groups_74.js +4 -0
  104. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/mag_sel.png +0 -0
  105. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/nomatches.html +12 -0
  106. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/search.css +271 -0
  107. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/search.js +809 -0
  108. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/search_l.png +0 -0
  109. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/search_m.png +0 -0
  110. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/search_r.png +0 -0
  111. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/typedefs_74.html +26 -0
  112. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/typedefs_74.js +5 -0
  113. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_63.html +26 -0
  114. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_63.js +4 -0
  115. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_64.html +26 -0
  116. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_64.js +5 -0
  117. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_68.html +26 -0
  118. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_68.js +4 -0
  119. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_6e.html +26 -0
  120. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_6e.js +4 -0
  121. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_6f.html +26 -0
  122. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_6f.js +5 -0
  123. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_72.html +26 -0
  124. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_72.js +4 -0
  125. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_74.html +26 -0
  126. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_74.js +10 -0
  127. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_77.html +26 -0
  128. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_77.js +4 -0
  129. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_78.html +26 -0
  130. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_78.js +4 -0
  131. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_79.html +26 -0
  132. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/search/variables_79.js +4 -0
  133. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/structtjregion.html +186 -0
  134. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/structtjscalingfactor.html +148 -0
  135. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/structtjtransform.html +212 -0
  136. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/sync_off.png +0 -0
  137. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/sync_on.png +0 -0
  138. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/tab_a.png +0 -0
  139. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/tab_b.png +0 -0
  140. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/tab_h.png +0 -0
  141. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/tab_s.png +0 -0
  142. data/epeg/vendor/libjpeg-turbo-2.0.4/doc/html/tabs.css +60 -0
  143. data/epeg/vendor/libjpeg-turbo-2.0.4/doxygen-extra.css +3 -0
  144. data/epeg/vendor/libjpeg-turbo-2.0.4/doxygen.config +16 -0
  145. data/epeg/vendor/libjpeg-turbo-2.0.4/example.txt +464 -0
  146. data/epeg/vendor/libjpeg-turbo-2.0.4/jaricom.c +157 -0
  147. data/epeg/vendor/libjpeg-turbo-2.0.4/java/CMakeLists.txt +88 -0
  148. data/epeg/vendor/libjpeg-turbo-2.0.4/java/MANIFEST.MF +2 -0
  149. data/epeg/vendor/libjpeg-turbo-2.0.4/java/README +52 -0
  150. data/epeg/vendor/libjpeg-turbo-2.0.4/java/TJBench.java +1021 -0
  151. data/epeg/vendor/libjpeg-turbo-2.0.4/java/TJExample.java +405 -0
  152. data/epeg/vendor/libjpeg-turbo-2.0.4/java/TJUnitTest.java +960 -0
  153. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/allclasses-frame.html +24 -0
  154. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/allclasses-noframe.html +24 -0
  155. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/constant-values.html +532 -0
  156. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/deprecated-list.html +252 -0
  157. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/help-doc.html +210 -0
  158. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/index-all.html +1029 -0
  159. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/index.html +71 -0
  160. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/org/libjpegturbo/turbojpeg/TJ.html +1356 -0
  161. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/org/libjpegturbo/turbojpeg/TJCompressor.html +926 -0
  162. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/org/libjpegturbo/turbojpeg/TJCustomFilter.html +241 -0
  163. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/org/libjpegturbo/turbojpeg/TJDecompressor.html +1255 -0
  164. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/org/libjpegturbo/turbojpeg/TJException.html +340 -0
  165. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/org/libjpegturbo/turbojpeg/TJScalingFactor.html +343 -0
  166. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/org/libjpegturbo/turbojpeg/TJTransform.html +751 -0
  167. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/org/libjpegturbo/turbojpeg/TJTransformer.html +421 -0
  168. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/org/libjpegturbo/turbojpeg/YUVImage.html +765 -0
  169. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/org/libjpegturbo/turbojpeg/package-frame.html +31 -0
  170. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/org/libjpegturbo/turbojpeg/package-summary.html +202 -0
  171. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/org/libjpegturbo/turbojpeg/package-tree.html +160 -0
  172. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/overview-tree.html +164 -0
  173. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/package-list +1 -0
  174. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/resources/background.gif +0 -0
  175. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/resources/tab.gif +0 -0
  176. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/resources/titlebar.gif +0 -0
  177. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/resources/titlebar_end.gif +0 -0
  178. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/script.js +30 -0
  179. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/serialized-form.html +176 -0
  180. data/epeg/vendor/libjpeg-turbo-2.0.4/java/doc/stylesheet.css +474 -0
  181. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org/libjpegturbo/turbojpeg/TJ.java +584 -0
  182. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org/libjpegturbo/turbojpeg/TJCompressor.java +677 -0
  183. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org/libjpegturbo/turbojpeg/TJCustomFilter.java +76 -0
  184. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org/libjpegturbo/turbojpeg/TJDecompressor.java +931 -0
  185. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org/libjpegturbo/turbojpeg/TJException.java +78 -0
  186. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org/libjpegturbo/turbojpeg/TJLoader-unix.java.in +59 -0
  187. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org/libjpegturbo/turbojpeg/TJLoader-win.java.in +35 -0
  188. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org/libjpegturbo/turbojpeg/TJScalingFactor.java +115 -0
  189. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org/libjpegturbo/turbojpeg/TJTransform.java +227 -0
  190. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org/libjpegturbo/turbojpeg/TJTransformer.java +163 -0
  191. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org/libjpegturbo/turbojpeg/YUVImage.java +445 -0
  192. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org_libjpegturbo_turbojpeg_TJ.h +129 -0
  193. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org_libjpegturbo_turbojpeg_TJCompressor.h +101 -0
  194. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org_libjpegturbo_turbojpeg_TJDecompressor.h +101 -0
  195. data/epeg/vendor/libjpeg-turbo-2.0.4/java/org_libjpegturbo_turbojpeg_TJTransformer.h +29 -0
  196. data/epeg/vendor/libjpeg-turbo-2.0.4/jcapimin.c +295 -0
  197. data/epeg/vendor/libjpeg-turbo-2.0.4/jcapistd.c +162 -0
  198. data/epeg/vendor/libjpeg-turbo-2.0.4/jcarith.c +932 -0
  199. data/epeg/vendor/libjpeg-turbo-2.0.4/jccoefct.c +449 -0
  200. data/epeg/vendor/libjpeg-turbo-2.0.4/jccolext.c +144 -0
  201. data/epeg/vendor/libjpeg-turbo-2.0.4/jccolor.c +710 -0
  202. data/epeg/vendor/libjpeg-turbo-2.0.4/jcdctmgr.c +721 -0
  203. data/epeg/vendor/libjpeg-turbo-2.0.4/jchuff.c +1096 -0
  204. data/epeg/vendor/libjpeg-turbo-2.0.4/jchuff.h +42 -0
  205. data/epeg/vendor/libjpeg-turbo-2.0.4/jcicc.c +105 -0
  206. data/epeg/vendor/libjpeg-turbo-2.0.4/jcinit.c +77 -0
  207. data/epeg/vendor/libjpeg-turbo-2.0.4/jcmainct.c +162 -0
  208. data/epeg/vendor/libjpeg-turbo-2.0.4/jcmarker.c +664 -0
  209. data/epeg/vendor/libjpeg-turbo-2.0.4/jcmaster.c +640 -0
  210. data/epeg/vendor/libjpeg-turbo-2.0.4/jcomapi.c +109 -0
  211. data/epeg/vendor/libjpeg-turbo-2.0.4/jconfig.h.in +73 -0
  212. data/epeg/vendor/libjpeg-turbo-2.0.4/jconfig.txt +143 -0
  213. data/epeg/vendor/libjpeg-turbo-2.0.4/jconfigint.h.in +31 -0
  214. data/epeg/vendor/libjpeg-turbo-2.0.4/jcparam.c +541 -0
  215. data/epeg/vendor/libjpeg-turbo-2.0.4/jcphuff.c +1105 -0
  216. data/epeg/vendor/libjpeg-turbo-2.0.4/jcprepct.c +351 -0
  217. data/epeg/vendor/libjpeg-turbo-2.0.4/jcsample.c +539 -0
  218. data/epeg/vendor/libjpeg-turbo-2.0.4/jcstest.c +126 -0
  219. data/epeg/vendor/libjpeg-turbo-2.0.4/jctrans.c +400 -0
  220. data/epeg/vendor/libjpeg-turbo-2.0.4/jdapimin.c +407 -0
  221. data/epeg/vendor/libjpeg-turbo-2.0.4/jdapistd.c +639 -0
  222. data/epeg/vendor/libjpeg-turbo-2.0.4/jdarith.c +773 -0
  223. data/epeg/vendor/libjpeg-turbo-2.0.4/jdatadst-tj.c +203 -0
  224. data/epeg/vendor/libjpeg-turbo-2.0.4/jdatadst.c +293 -0
  225. data/epeg/vendor/libjpeg-turbo-2.0.4/jdatasrc-tj.c +194 -0
  226. data/epeg/vendor/libjpeg-turbo-2.0.4/jdatasrc.c +295 -0
  227. data/epeg/vendor/libjpeg-turbo-2.0.4/jdcoefct.c +692 -0
  228. data/epeg/vendor/libjpeg-turbo-2.0.4/jdcoefct.h +82 -0
  229. data/epeg/vendor/libjpeg-turbo-2.0.4/jdcol565.c +384 -0
  230. data/epeg/vendor/libjpeg-turbo-2.0.4/jdcolext.c +143 -0
  231. data/epeg/vendor/libjpeg-turbo-2.0.4/jdcolor.c +883 -0
  232. data/epeg/vendor/libjpeg-turbo-2.0.4/jdct.h +208 -0
  233. data/epeg/vendor/libjpeg-turbo-2.0.4/jddctmgr.c +352 -0
  234. data/epeg/vendor/libjpeg-turbo-2.0.4/jdhuff.c +831 -0
  235. data/epeg/vendor/libjpeg-turbo-2.0.4/jdhuff.h +238 -0
  236. data/epeg/vendor/libjpeg-turbo-2.0.4/jdicc.c +171 -0
  237. data/epeg/vendor/libjpeg-turbo-2.0.4/jdinput.c +408 -0
  238. data/epeg/vendor/libjpeg-turbo-2.0.4/jdmainct.c +460 -0
  239. data/epeg/vendor/libjpeg-turbo-2.0.4/jdmainct.h +71 -0
  240. data/epeg/vendor/libjpeg-turbo-2.0.4/jdmarker.c +1377 -0
  241. data/epeg/vendor/libjpeg-turbo-2.0.4/jdmaster.c +737 -0
  242. data/epeg/vendor/libjpeg-turbo-2.0.4/jdmaster.h +28 -0
  243. data/epeg/vendor/libjpeg-turbo-2.0.4/jdmerge.c +617 -0
  244. data/epeg/vendor/libjpeg-turbo-2.0.4/jdmrg565.c +354 -0
  245. data/epeg/vendor/libjpeg-turbo-2.0.4/jdmrgext.c +184 -0
  246. data/epeg/vendor/libjpeg-turbo-2.0.4/jdphuff.c +687 -0
  247. data/epeg/vendor/libjpeg-turbo-2.0.4/jdpostct.c +294 -0
  248. data/epeg/vendor/libjpeg-turbo-2.0.4/jdsample.c +518 -0
  249. data/epeg/vendor/libjpeg-turbo-2.0.4/jdsample.h +50 -0
  250. data/epeg/vendor/libjpeg-turbo-2.0.4/jdtrans.c +155 -0
  251. data/epeg/vendor/libjpeg-turbo-2.0.4/jerror.c +251 -0
  252. data/epeg/vendor/libjpeg-turbo-2.0.4/jerror.h +316 -0
  253. data/epeg/vendor/libjpeg-turbo-2.0.4/jfdctflt.c +169 -0
  254. data/epeg/vendor/libjpeg-turbo-2.0.4/jfdctfst.c +227 -0
  255. data/epeg/vendor/libjpeg-turbo-2.0.4/jfdctint.c +288 -0
  256. data/epeg/vendor/libjpeg-turbo-2.0.4/jidctflt.c +240 -0
  257. data/epeg/vendor/libjpeg-turbo-2.0.4/jidctfst.c +371 -0
  258. data/epeg/vendor/libjpeg-turbo-2.0.4/jidctint.c +2627 -0
  259. data/epeg/vendor/libjpeg-turbo-2.0.4/jidctred.c +409 -0
  260. data/epeg/vendor/libjpeg-turbo-2.0.4/jinclude.h +88 -0
  261. data/epeg/vendor/libjpeg-turbo-2.0.4/jmemmgr.c +1179 -0
  262. data/epeg/vendor/libjpeg-turbo-2.0.4/jmemnobs.c +115 -0
  263. data/epeg/vendor/libjpeg-turbo-2.0.4/jmemsys.h +178 -0
  264. data/epeg/vendor/libjpeg-turbo-2.0.4/jmorecfg.h +421 -0
  265. data/epeg/vendor/libjpeg-turbo-2.0.4/jpeg_nbits_table.h +4098 -0
  266. data/epeg/vendor/libjpeg-turbo-2.0.4/jpegcomp.h +31 -0
  267. data/epeg/vendor/libjpeg-turbo-2.0.4/jpegint.h +368 -0
  268. data/epeg/vendor/libjpeg-turbo-2.0.4/jpeglib.h +1132 -0
  269. data/epeg/vendor/libjpeg-turbo-2.0.4/jpegtran.1 +295 -0
  270. data/epeg/vendor/libjpeg-turbo-2.0.4/jpegtran.c +601 -0
  271. data/epeg/vendor/libjpeg-turbo-2.0.4/jquant1.c +859 -0
  272. data/epeg/vendor/libjpeg-turbo-2.0.4/jquant2.c +1285 -0
  273. data/epeg/vendor/libjpeg-turbo-2.0.4/jsimd.h +117 -0
  274. data/epeg/vendor/libjpeg-turbo-2.0.4/jsimd_none.c +418 -0
  275. data/epeg/vendor/libjpeg-turbo-2.0.4/jsimddct.h +70 -0
  276. data/epeg/vendor/libjpeg-turbo-2.0.4/jstdhuff.c +143 -0
  277. data/epeg/vendor/libjpeg-turbo-2.0.4/jutils.c +133 -0
  278. data/epeg/vendor/libjpeg-turbo-2.0.4/jversion.h +52 -0
  279. data/epeg/vendor/libjpeg-turbo-2.0.4/libjpeg.map.in +11 -0
  280. data/epeg/vendor/libjpeg-turbo-2.0.4/libjpeg.txt +3144 -0
  281. data/epeg/vendor/libjpeg-turbo-2.0.4/md5/CMakeLists.txt +1 -0
  282. data/epeg/vendor/libjpeg-turbo-2.0.4/md5/md5.c +275 -0
  283. data/epeg/vendor/libjpeg-turbo-2.0.4/md5/md5.h +57 -0
  284. data/epeg/vendor/libjpeg-turbo-2.0.4/md5/md5cmp.c +59 -0
  285. data/epeg/vendor/libjpeg-turbo-2.0.4/md5/md5hl.c +125 -0
  286. data/epeg/vendor/libjpeg-turbo-2.0.4/rdbmp.c +689 -0
  287. data/epeg/vendor/libjpeg-turbo-2.0.4/rdcolmap.c +254 -0
  288. data/epeg/vendor/libjpeg-turbo-2.0.4/rdgif.c +39 -0
  289. data/epeg/vendor/libjpeg-turbo-2.0.4/rdjpgcom.1 +63 -0
  290. data/epeg/vendor/libjpeg-turbo-2.0.4/rdjpgcom.c +510 -0
  291. data/epeg/vendor/libjpeg-turbo-2.0.4/rdppm.c +766 -0
  292. data/epeg/vendor/libjpeg-turbo-2.0.4/rdrle.c +389 -0
  293. data/epeg/vendor/libjpeg-turbo-2.0.4/rdswitch.c +424 -0
  294. data/epeg/vendor/libjpeg-turbo-2.0.4/rdtarga.c +509 -0
  295. data/epeg/vendor/libjpeg-turbo-2.0.4/release/Distribution.xml.in +24 -0
  296. data/epeg/vendor/libjpeg-turbo-2.0.4/release/License.rtf +20 -0
  297. data/epeg/vendor/libjpeg-turbo-2.0.4/release/ReadMe.txt +5 -0
  298. data/epeg/vendor/libjpeg-turbo-2.0.4/release/Welcome.rtf +17 -0
  299. data/epeg/vendor/libjpeg-turbo-2.0.4/release/deb-control.in +31 -0
  300. data/epeg/vendor/libjpeg-turbo-2.0.4/release/installer.nsi.in +191 -0
  301. data/epeg/vendor/libjpeg-turbo-2.0.4/release/libjpeg.pc.in +10 -0
  302. data/epeg/vendor/libjpeg-turbo-2.0.4/release/libturbojpeg.pc.in +10 -0
  303. data/epeg/vendor/libjpeg-turbo-2.0.4/release/makecygwinpkg.in +66 -0
  304. data/epeg/vendor/libjpeg-turbo-2.0.4/release/makedpkg.in +115 -0
  305. data/epeg/vendor/libjpeg-turbo-2.0.4/release/makemacpkg.in +284 -0
  306. data/epeg/vendor/libjpeg-turbo-2.0.4/release/makerpm.in +30 -0
  307. data/epeg/vendor/libjpeg-turbo-2.0.4/release/makesrpm.in +48 -0
  308. data/epeg/vendor/libjpeg-turbo-2.0.4/release/maketarball.in +51 -0
  309. data/epeg/vendor/libjpeg-turbo-2.0.4/release/rpm.spec.in +221 -0
  310. data/epeg/vendor/libjpeg-turbo-2.0.4/release/uninstall.in +113 -0
  311. data/epeg/vendor/libjpeg-turbo-2.0.4/sharedlib/CMakeLists.txt +99 -0
  312. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/CMakeLists.txt +385 -0
  313. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/arm/jsimd.c +721 -0
  314. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/arm/jsimd_neon.S +2878 -0
  315. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/arm64/jsimd.c +798 -0
  316. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/arm64/jsimd_neon.S +3433 -0
  317. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/gas-preprocessor.in +1 -0
  318. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jccolext-avx2.asm +578 -0
  319. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jccolext-mmx.asm +476 -0
  320. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jccolext-sse2.asm +503 -0
  321. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jccolor-avx2.asm +121 -0
  322. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jccolor-mmx.asm +121 -0
  323. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jccolor-sse2.asm +120 -0
  324. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jcgray-avx2.asm +113 -0
  325. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jcgray-mmx.asm +113 -0
  326. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jcgray-sse2.asm +112 -0
  327. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jcgryext-avx2.asm +457 -0
  328. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jcgryext-mmx.asm +355 -0
  329. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jcgryext-sse2.asm +382 -0
  330. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jchuff-sse2.asm +424 -0
  331. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jcphuff-sse2.asm +660 -0
  332. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jcsample-avx2.asm +388 -0
  333. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jcsample-mmx.asm +324 -0
  334. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jcsample-sse2.asm +351 -0
  335. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdcolext-avx2.asm +515 -0
  336. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdcolext-mmx.asm +404 -0
  337. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdcolext-sse2.asm +458 -0
  338. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdcolor-avx2.asm +118 -0
  339. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdcolor-mmx.asm +117 -0
  340. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdcolor-sse2.asm +117 -0
  341. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdmerge-avx2.asm +136 -0
  342. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdmerge-mmx.asm +123 -0
  343. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdmerge-sse2.asm +135 -0
  344. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdmrgext-avx2.asm +575 -0
  345. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdmrgext-mmx.asm +460 -0
  346. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdmrgext-sse2.asm +517 -0
  347. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdsample-avx2.asm +760 -0
  348. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdsample-mmx.asm +731 -0
  349. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jdsample-sse2.asm +724 -0
  350. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jfdctflt-3dn.asm +318 -0
  351. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jfdctflt-sse.asm +369 -0
  352. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jfdctfst-mmx.asm +395 -0
  353. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jfdctfst-sse2.asm +403 -0
  354. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jfdctint-avx2.asm +331 -0
  355. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jfdctint-mmx.asm +620 -0
  356. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jfdctint-sse2.asm +633 -0
  357. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jidctflt-3dn.asm +451 -0
  358. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jidctflt-sse.asm +571 -0
  359. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jidctflt-sse2.asm +497 -0
  360. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jidctfst-mmx.asm +499 -0
  361. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jidctfst-sse2.asm +501 -0
  362. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jidctint-avx2.asm +453 -0
  363. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jidctint-mmx.asm +851 -0
  364. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jidctint-sse2.asm +858 -0
  365. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jidctred-mmx.asm +704 -0
  366. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jidctred-sse2.asm +592 -0
  367. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jquant-3dn.asm +230 -0
  368. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jquant-mmx.asm +276 -0
  369. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jquant-sse.asm +208 -0
  370. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jquantf-sse2.asm +168 -0
  371. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jquanti-avx2.asm +188 -0
  372. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jquanti-sse2.asm +201 -0
  373. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jsimd.c +1253 -0
  374. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/i386/jsimdcpu.asm +135 -0
  375. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/jsimd.h +1083 -0
  376. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/jccolext-mmi.c +483 -0
  377. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/jccolor-mmi.c +148 -0
  378. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/jcsample-mmi.c +100 -0
  379. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/jcsample.h +28 -0
  380. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/jdcolext-mmi.c +424 -0
  381. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/jdcolor-mmi.c +139 -0
  382. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/jdsample-mmi.c +245 -0
  383. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/jfdctint-mmi.c +398 -0
  384. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/jidctint-mmi.c +571 -0
  385. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/jquanti-mmi.c +130 -0
  386. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/jsimd.c +610 -0
  387. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/jsimd_mmi.h +57 -0
  388. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/loongson/loongson-mmintrin.h +1324 -0
  389. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/mips/jsimd.c +1123 -0
  390. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/mips/jsimd_dspr2.S +4479 -0
  391. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/mips/jsimd_dspr2_asm.h +292 -0
  392. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/nasm/jcolsamp.inc +135 -0
  393. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/nasm/jdct.inc +31 -0
  394. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/nasm/jpeg_nbits_table.inc +4097 -0
  395. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/nasm/jsimdcfg.inc +93 -0
  396. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/nasm/jsimdcfg.inc.h +131 -0
  397. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/nasm/jsimdext.inc +479 -0
  398. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jccolext-altivec.c +269 -0
  399. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jccolor-altivec.c +116 -0
  400. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jcgray-altivec.c +111 -0
  401. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jcgryext-altivec.c +228 -0
  402. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jcsample-altivec.c +159 -0
  403. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jcsample.h +28 -0
  404. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jdcolext-altivec.c +276 -0
  405. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jdcolor-altivec.c +106 -0
  406. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jdmerge-altivec.c +130 -0
  407. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jdmrgext-altivec.c +329 -0
  408. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jdsample-altivec.c +400 -0
  409. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jfdctfst-altivec.c +154 -0
  410. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jfdctint-altivec.c +258 -0
  411. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jidctfst-altivec.c +255 -0
  412. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jidctint-altivec.c +357 -0
  413. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jquanti-altivec.c +250 -0
  414. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jsimd.c +872 -0
  415. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/powerpc/jsimd_altivec.h +98 -0
  416. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jccolext-avx2.asm +558 -0
  417. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jccolext-sse2.asm +483 -0
  418. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jccolor-avx2.asm +121 -0
  419. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jccolor-sse2.asm +120 -0
  420. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jcgray-avx2.asm +113 -0
  421. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jcgray-sse2.asm +112 -0
  422. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jcgryext-avx2.asm +437 -0
  423. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jcgryext-sse2.asm +362 -0
  424. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jchuff-sse2.asm +346 -0
  425. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jcphuff-sse2.asm +637 -0
  426. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jcsample-avx2.asm +366 -0
  427. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jcsample-sse2.asm +329 -0
  428. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jdcolext-avx2.asm +495 -0
  429. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jdcolext-sse2.asm +438 -0
  430. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jdcolor-avx2.asm +118 -0
  431. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jdcolor-sse2.asm +117 -0
  432. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jdmerge-avx2.asm +136 -0
  433. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jdmerge-sse2.asm +135 -0
  434. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jdmrgext-avx2.asm +593 -0
  435. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jdmrgext-sse2.asm +535 -0
  436. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jdsample-avx2.asm +695 -0
  437. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jdsample-sse2.asm +664 -0
  438. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jfdctflt-sse.asm +355 -0
  439. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jfdctfst-sse2.asm +389 -0
  440. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jfdctint-avx2.asm +320 -0
  441. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jfdctint-sse2.asm +619 -0
  442. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jidctflt-sse2.asm +481 -0
  443. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jidctfst-sse2.asm +490 -0
  444. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jidctint-avx2.asm +417 -0
  445. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jidctint-sse2.asm +846 -0
  446. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jidctred-sse2.asm +573 -0
  447. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jquantf-sse2.asm +154 -0
  448. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jquanti-avx2.asm +162 -0
  449. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jquanti-sse2.asm +187 -0
  450. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jsimd.c +1076 -0
  451. data/epeg/vendor/libjpeg-turbo-2.0.4/simd/x86_64/jsimdcpu.asm +86 -0
  452. data/epeg/vendor/libjpeg-turbo-2.0.4/structure.txt +904 -0
  453. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/nightshot_iso_100.bmp +0 -0
  454. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/nightshot_iso_100.txt +25 -0
  455. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/test.scan +5 -0
  456. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/test1.icc +0 -0
  457. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/test1.icc.txt +20 -0
  458. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/test2.icc +0 -0
  459. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/test2.icc.txt +20 -0
  460. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/testimgari.jpg +0 -0
  461. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/testimgint.jpg +0 -0
  462. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/testorig.jpg +0 -0
  463. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/testorig.ppm +4 -0
  464. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/testorig12.jpg +0 -0
  465. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/vgl_5674_0098.bmp +0 -0
  466. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/vgl_6434_0018a.bmp +0 -0
  467. data/epeg/vendor/libjpeg-turbo-2.0.4/testimages/vgl_6548_0026a.bmp +0 -0
  468. data/epeg/vendor/libjpeg-turbo-2.0.4/tjbench.c +1031 -0
  469. data/epeg/vendor/libjpeg-turbo-2.0.4/tjbenchtest.in +256 -0
  470. data/epeg/vendor/libjpeg-turbo-2.0.4/tjbenchtest.java.in +215 -0
  471. data/epeg/vendor/libjpeg-turbo-2.0.4/tjexample.c +396 -0
  472. data/epeg/vendor/libjpeg-turbo-2.0.4/tjexampletest.in +149 -0
  473. data/epeg/vendor/libjpeg-turbo-2.0.4/tjexampletest.java.in +151 -0
  474. data/epeg/vendor/libjpeg-turbo-2.0.4/tjunittest.c +931 -0
  475. data/epeg/vendor/libjpeg-turbo-2.0.4/tjutil.c +70 -0
  476. data/epeg/vendor/libjpeg-turbo-2.0.4/tjutil.h +47 -0
  477. data/epeg/vendor/libjpeg-turbo-2.0.4/transupp.c +1628 -0
  478. data/epeg/vendor/libjpeg-turbo-2.0.4/transupp.h +210 -0
  479. data/epeg/vendor/libjpeg-turbo-2.0.4/turbojpeg-jni.c +1246 -0
  480. data/epeg/vendor/libjpeg-turbo-2.0.4/turbojpeg-mapfile +65 -0
  481. data/epeg/vendor/libjpeg-turbo-2.0.4/turbojpeg-mapfile.jni +101 -0
  482. data/epeg/vendor/libjpeg-turbo-2.0.4/turbojpeg.c +2152 -0
  483. data/epeg/vendor/libjpeg-turbo-2.0.4/turbojpeg.h +1744 -0
  484. data/epeg/vendor/libjpeg-turbo-2.0.4/usage.txt +635 -0
  485. data/epeg/vendor/libjpeg-turbo-2.0.4/win/jconfig.h.in +34 -0
  486. data/epeg/vendor/libjpeg-turbo-2.0.4/win/jpeg62-memsrcdst.def +108 -0
  487. data/epeg/vendor/libjpeg-turbo-2.0.4/win/jpeg62.def +106 -0
  488. data/epeg/vendor/libjpeg-turbo-2.0.4/win/jpeg7-memsrcdst.def +110 -0
  489. data/epeg/vendor/libjpeg-turbo-2.0.4/win/jpeg7.def +108 -0
  490. data/epeg/vendor/libjpeg-turbo-2.0.4/win/jpeg8.def +111 -0
  491. data/epeg/vendor/libjpeg-turbo-2.0.4/wizard.txt +212 -0
  492. data/epeg/vendor/libjpeg-turbo-2.0.4/wrbmp.c +558 -0
  493. data/epeg/vendor/libjpeg-turbo-2.0.4/wrgif.c +413 -0
  494. data/epeg/vendor/libjpeg-turbo-2.0.4/wrjpgcom.1 +103 -0
  495. data/epeg/vendor/libjpeg-turbo-2.0.4/wrjpgcom.c +591 -0
  496. data/epeg/vendor/libjpeg-turbo-2.0.4/wrppm.c +365 -0
  497. data/epeg/vendor/libjpeg-turbo-2.0.4/wrrle.c +309 -0
  498. data/epeg/vendor/libjpeg-turbo-2.0.4/wrtarga.c +261 -0
  499. data/epeg.c +131 -0
  500. data/epeg.gemspec +18 -0
  501. data/extconf.rb +80 -0
  502. data/test.jpg +0 -0
  503. data/test.rb +42 -0
  504. metadata +546 -0
@@ -0,0 +1,464 @@
1
+ /*
2
+ * example.txt
3
+ *
4
+ * This file illustrates how to use the IJG code as a subroutine library
5
+ * to read or write JPEG image files. You should look at this code in
6
+ * conjunction with the documentation file libjpeg.txt.
7
+ *
8
+ * This code will not do anything useful as-is, but it may be helpful as a
9
+ * skeleton for constructing routines that call the JPEG library.
10
+ *
11
+ * We present these routines in the same coding style used in the JPEG code
12
+ * (ANSI function definitions, etc); but you are of course free to code your
13
+ * routines in a different style if you prefer.
14
+ */
15
+
16
+ /* This example was part of the original libjpeg documentation and has been
17
+ * unchanged since 1994. It is, as described in libjpeg.txt, "heavily
18
+ * commented skeleton code for calling the JPEG library." It is not meant to
19
+ * be compiled as a standalone program, since it has no main() function and
20
+ * does not compress from/decompress to a real image buffer (corollary:
21
+ * put_scanline_someplace() is not a real function.) First-time users of
22
+ * libjpeg-turbo would be better served by looking at tjexample.c, which uses
23
+ * the more straightforward TurboJPEG API, or at cjpeg.c and djpeg.c, which are
24
+ * examples of libjpeg API usage that can be (and are) compiled into standalone
25
+ * programs. Note that this example, as well as the examples in cjpeg.c and
26
+ * djpeg.c, interleave disk I/O with JPEG compression/decompression, so none of
27
+ * these examples is suitable for benchmarking purposes.
28
+ */
29
+
30
+ #include <stdio.h>
31
+
32
+ /*
33
+ * Include file for users of JPEG library.
34
+ * You will need to have included system headers that define at least
35
+ * the typedefs FILE and size_t before you can include jpeglib.h.
36
+ * (stdio.h is sufficient on ANSI-conforming systems.)
37
+ * You may also wish to include "jerror.h".
38
+ */
39
+
40
+ #include "jpeglib.h"
41
+
42
+ /*
43
+ * <setjmp.h> is used for the optional error recovery mechanism shown in
44
+ * the second part of the example.
45
+ */
46
+
47
+ #include <setjmp.h>
48
+
49
+
50
+
51
+ /******************** JPEG COMPRESSION SAMPLE INTERFACE *******************/
52
+
53
+ /* This half of the example shows how to feed data into the JPEG compressor.
54
+ * We present a minimal version that does not worry about refinements such
55
+ * as error recovery (the JPEG code will just exit() if it gets an error).
56
+ */
57
+
58
+
59
+ /*
60
+ * IMAGE DATA FORMATS:
61
+ *
62
+ * The standard input image format is a rectangular array of pixels, with
63
+ * each pixel having the same number of "component" values (color channels).
64
+ * Each pixel row is an array of JSAMPLEs (which typically are unsigned chars).
65
+ * If you are working with color data, then the color values for each pixel
66
+ * must be adjacent in the row; for example, R,G,B,R,G,B,R,G,B,... for 24-bit
67
+ * RGB color.
68
+ *
69
+ * For this example, we'll assume that this data structure matches the way
70
+ * our application has stored the image in memory, so we can just pass a
71
+ * pointer to our image buffer. In particular, let's say that the image is
72
+ * RGB color and is described by:
73
+ */
74
+
75
+ extern JSAMPLE *image_buffer; /* Points to large array of R,G,B-order data */
76
+ extern int image_height; /* Number of rows in image */
77
+ extern int image_width; /* Number of columns in image */
78
+
79
+
80
+ /*
81
+ * Sample routine for JPEG compression. We assume that the target file name
82
+ * and a compression quality factor are passed in.
83
+ */
84
+
85
+ GLOBAL(void)
86
+ write_JPEG_file(char *filename, int quality)
87
+ {
88
+ /* This struct contains the JPEG compression parameters and pointers to
89
+ * working space (which is allocated as needed by the JPEG library).
90
+ * It is possible to have several such structures, representing multiple
91
+ * compression/decompression processes, in existence at once. We refer
92
+ * to any one struct (and its associated working data) as a "JPEG object".
93
+ */
94
+ struct jpeg_compress_struct cinfo;
95
+ /* This struct represents a JPEG error handler. It is declared separately
96
+ * because applications often want to supply a specialized error handler
97
+ * (see the second half of this file for an example). But here we just
98
+ * take the easy way out and use the standard error handler, which will
99
+ * print a message on stderr and call exit() if compression fails.
100
+ * Note that this struct must live as long as the main JPEG parameter
101
+ * struct, to avoid dangling-pointer problems.
102
+ */
103
+ struct jpeg_error_mgr jerr;
104
+ /* More stuff */
105
+ FILE *outfile; /* target file */
106
+ JSAMPROW row_pointer[1]; /* pointer to JSAMPLE row[s] */
107
+ int row_stride; /* physical row width in image buffer */
108
+
109
+ /* Step 1: allocate and initialize JPEG compression object */
110
+
111
+ /* We have to set up the error handler first, in case the initialization
112
+ * step fails. (Unlikely, but it could happen if you are out of memory.)
113
+ * This routine fills in the contents of struct jerr, and returns jerr's
114
+ * address which we place into the link field in cinfo.
115
+ */
116
+ cinfo.err = jpeg_std_error(&jerr);
117
+ /* Now we can initialize the JPEG compression object. */
118
+ jpeg_create_compress(&cinfo);
119
+
120
+ /* Step 2: specify data destination (eg, a file) */
121
+ /* Note: steps 2 and 3 can be done in either order. */
122
+
123
+ /* Here we use the library-supplied code to send compressed data to a
124
+ * stdio stream. You can also write your own code to do something else.
125
+ * VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
126
+ * requires it in order to write binary files.
127
+ */
128
+ if ((outfile = fopen(filename, "wb")) == NULL) {
129
+ fprintf(stderr, "can't open %s\n", filename);
130
+ exit(1);
131
+ }
132
+ jpeg_stdio_dest(&cinfo, outfile);
133
+
134
+ /* Step 3: set parameters for compression */
135
+
136
+ /* First we supply a description of the input image.
137
+ * Four fields of the cinfo struct must be filled in:
138
+ */
139
+ cinfo.image_width = image_width; /* image width and height, in pixels */
140
+ cinfo.image_height = image_height;
141
+ cinfo.input_components = 3; /* # of color components per pixel */
142
+ cinfo.in_color_space = JCS_RGB; /* colorspace of input image */
143
+ /* Now use the library's routine to set default compression parameters.
144
+ * (You must set at least cinfo.in_color_space before calling this,
145
+ * since the defaults depend on the source color space.)
146
+ */
147
+ jpeg_set_defaults(&cinfo);
148
+ /* Now you can set any non-default parameters you wish to.
149
+ * Here we just illustrate the use of quality (quantization table) scaling:
150
+ */
151
+ jpeg_set_quality(&cinfo, quality, TRUE /* limit to baseline-JPEG values */);
152
+
153
+ /* Step 4: Start compressor */
154
+
155
+ /* TRUE ensures that we will write a complete interchange-JPEG file.
156
+ * Pass TRUE unless you are very sure of what you're doing.
157
+ */
158
+ jpeg_start_compress(&cinfo, TRUE);
159
+
160
+ /* Step 5: while (scan lines remain to be written) */
161
+ /* jpeg_write_scanlines(...); */
162
+
163
+ /* Here we use the library's state variable cinfo.next_scanline as the
164
+ * loop counter, so that we don't have to keep track ourselves.
165
+ * To keep things simple, we pass one scanline per call; you can pass
166
+ * more if you wish, though.
167
+ */
168
+ row_stride = image_width * 3; /* JSAMPLEs per row in image_buffer */
169
+
170
+ while (cinfo.next_scanline < cinfo.image_height) {
171
+ /* jpeg_write_scanlines expects an array of pointers to scanlines.
172
+ * Here the array is only one element long, but you could pass
173
+ * more than one scanline at a time if that's more convenient.
174
+ */
175
+ row_pointer[0] = &image_buffer[cinfo.next_scanline * row_stride];
176
+ (void)jpeg_write_scanlines(&cinfo, row_pointer, 1);
177
+ }
178
+
179
+ /* Step 6: Finish compression */
180
+
181
+ jpeg_finish_compress(&cinfo);
182
+ /* After finish_compress, we can close the output file. */
183
+ fclose(outfile);
184
+
185
+ /* Step 7: release JPEG compression object */
186
+
187
+ /* This is an important step since it will release a good deal of memory. */
188
+ jpeg_destroy_compress(&cinfo);
189
+
190
+ /* And we're done! */
191
+ }
192
+
193
+
194
+ /*
195
+ * SOME FINE POINTS:
196
+ *
197
+ * In the above loop, we ignored the return value of jpeg_write_scanlines,
198
+ * which is the number of scanlines actually written. We could get away
199
+ * with this because we were only relying on the value of cinfo.next_scanline,
200
+ * which will be incremented correctly. If you maintain additional loop
201
+ * variables then you should be careful to increment them properly.
202
+ * Actually, for output to a stdio stream you needn't worry, because
203
+ * then jpeg_write_scanlines will write all the lines passed (or else exit
204
+ * with a fatal error). Partial writes can only occur if you use a data
205
+ * destination module that can demand suspension of the compressor.
206
+ * (If you don't know what that's for, you don't need it.)
207
+ *
208
+ * If the compressor requires full-image buffers (for entropy-coding
209
+ * optimization or a multi-scan JPEG file), it will create temporary
210
+ * files for anything that doesn't fit within the maximum-memory setting.
211
+ * (Note that temp files are NOT needed if you use the default parameters.)
212
+ * On some systems you may need to set up a signal handler to ensure that
213
+ * temporary files are deleted if the program is interrupted. See libjpeg.txt.
214
+ *
215
+ * Scanlines MUST be supplied in top-to-bottom order if you want your JPEG
216
+ * files to be compatible with everyone else's. If you cannot readily read
217
+ * your data in that order, you'll need an intermediate array to hold the
218
+ * image. See rdtarga.c or rdbmp.c for examples of handling bottom-to-top
219
+ * source data using the JPEG code's internal virtual-array mechanisms.
220
+ */
221
+
222
+
223
+
224
+ /******************** JPEG DECOMPRESSION SAMPLE INTERFACE *******************/
225
+
226
+ /* This half of the example shows how to read data from the JPEG decompressor.
227
+ * It's a bit more refined than the above, in that we show:
228
+ * (a) how to modify the JPEG library's standard error-reporting behavior;
229
+ * (b) how to allocate workspace using the library's memory manager.
230
+ *
231
+ * Just to make this example a little different from the first one, we'll
232
+ * assume that we do not intend to put the whole image into an in-memory
233
+ * buffer, but to send it line-by-line someplace else. We need a one-
234
+ * scanline-high JSAMPLE array as a work buffer, and we will let the JPEG
235
+ * memory manager allocate it for us. This approach is actually quite useful
236
+ * because we don't need to remember to deallocate the buffer separately: it
237
+ * will go away automatically when the JPEG object is cleaned up.
238
+ */
239
+
240
+
241
+ /*
242
+ * ERROR HANDLING:
243
+ *
244
+ * The JPEG library's standard error handler (jerror.c) is divided into
245
+ * several "methods" which you can override individually. This lets you
246
+ * adjust the behavior without duplicating a lot of code, which you might
247
+ * have to update with each future release.
248
+ *
249
+ * Our example here shows how to override the "error_exit" method so that
250
+ * control is returned to the library's caller when a fatal error occurs,
251
+ * rather than calling exit() as the standard error_exit method does.
252
+ *
253
+ * We use C's setjmp/longjmp facility to return control. This means that the
254
+ * routine which calls the JPEG library must first execute a setjmp() call to
255
+ * establish the return point. We want the replacement error_exit to do a
256
+ * longjmp(). But we need to make the setjmp buffer accessible to the
257
+ * error_exit routine. To do this, we make a private extension of the
258
+ * standard JPEG error handler object. (If we were using C++, we'd say we
259
+ * were making a subclass of the regular error handler.)
260
+ *
261
+ * Here's the extended error handler struct:
262
+ */
263
+
264
+ struct my_error_mgr {
265
+ struct jpeg_error_mgr pub; /* "public" fields */
266
+
267
+ jmp_buf setjmp_buffer; /* for return to caller */
268
+ };
269
+
270
+ typedef struct my_error_mgr *my_error_ptr;
271
+
272
+ /*
273
+ * Here's the routine that will replace the standard error_exit method:
274
+ */
275
+
276
+ METHODDEF(void)
277
+ my_error_exit(j_common_ptr cinfo)
278
+ {
279
+ /* cinfo->err really points to a my_error_mgr struct, so coerce pointer */
280
+ my_error_ptr myerr = (my_error_ptr)cinfo->err;
281
+
282
+ /* Always display the message. */
283
+ /* We could postpone this until after returning, if we chose. */
284
+ (*cinfo->err->output_message) (cinfo);
285
+
286
+ /* Return control to the setjmp point */
287
+ longjmp(myerr->setjmp_buffer, 1);
288
+ }
289
+
290
+
291
+ METHODDEF(int) do_read_JPEG_file(struct jpeg_decompress_struct *cinfo,
292
+ char *filename);
293
+
294
+ /*
295
+ * Sample routine for JPEG decompression. We assume that the source file name
296
+ * is passed in. We want to return 1 on success, 0 on error.
297
+ */
298
+
299
+ GLOBAL(int)
300
+ read_JPEG_file(char *filename)
301
+ {
302
+ /* This struct contains the JPEG decompression parameters and pointers to
303
+ * working space (which is allocated as needed by the JPEG library).
304
+ */
305
+ struct jpeg_decompress_struct cinfo;
306
+
307
+ return do_read_JPEG_file(&cinfo, filename);
308
+ }
309
+
310
+ /*
311
+ * We call the libjpeg API from within a separate function, because modifying
312
+ * the local non-volatile jpeg_decompress_struct instance below the setjmp()
313
+ * return point and then accessing the instance after setjmp() returns would
314
+ * return in undefined behavior that may potentially overwrite all or part of
315
+ * the structure.
316
+ */
317
+
318
+ METHODDEF(int)
319
+ do_read_JPEG_file(struct jpeg_decompress_struct *cinfo, char *filename)
320
+ {
321
+ /* We use our private extension JPEG error handler.
322
+ * Note that this struct must live as long as the main JPEG parameter
323
+ * struct, to avoid dangling-pointer problems.
324
+ */
325
+ struct my_error_mgr jerr;
326
+ /* More stuff */
327
+ FILE *infile; /* source file */
328
+ JSAMPARRAY buffer; /* Output row buffer */
329
+ int row_stride; /* physical row width in output buffer */
330
+
331
+ /* In this example we want to open the input file before doing anything else,
332
+ * so that the setjmp() error recovery below can assume the file is open.
333
+ * VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
334
+ * requires it in order to read binary files.
335
+ */
336
+
337
+ if ((infile = fopen(filename, "rb")) == NULL) {
338
+ fprintf(stderr, "can't open %s\n", filename);
339
+ return 0;
340
+ }
341
+
342
+ /* Step 1: allocate and initialize JPEG decompression object */
343
+
344
+ /* We set up the normal JPEG error routines, then override error_exit. */
345
+ cinfo->err = jpeg_std_error(&jerr.pub);
346
+ jerr.pub.error_exit = my_error_exit;
347
+ /* Establish the setjmp return context for my_error_exit to use. */
348
+ if (setjmp(jerr.setjmp_buffer)) {
349
+ /* If we get here, the JPEG code has signaled an error.
350
+ * We need to clean up the JPEG object, close the input file, and return.
351
+ */
352
+ jpeg_destroy_decompress(cinfo);
353
+ fclose(infile);
354
+ return 0;
355
+ }
356
+ /* Now we can initialize the JPEG decompression object. */
357
+ jpeg_create_decompress(cinfo);
358
+
359
+ /* Step 2: specify data source (eg, a file) */
360
+
361
+ jpeg_stdio_src(cinfo, infile);
362
+
363
+ /* Step 3: read file parameters with jpeg_read_header() */
364
+
365
+ (void)jpeg_read_header(cinfo, TRUE);
366
+ /* We can ignore the return value from jpeg_read_header since
367
+ * (a) suspension is not possible with the stdio data source, and
368
+ * (b) we passed TRUE to reject a tables-only JPEG file as an error.
369
+ * See libjpeg.txt for more info.
370
+ */
371
+
372
+ /* Step 4: set parameters for decompression */
373
+
374
+ /* In this example, we don't need to change any of the defaults set by
375
+ * jpeg_read_header(), so we do nothing here.
376
+ */
377
+
378
+ /* Step 5: Start decompressor */
379
+
380
+ (void)jpeg_start_decompress(cinfo);
381
+ /* We can ignore the return value since suspension is not possible
382
+ * with the stdio data source.
383
+ */
384
+
385
+ /* We may need to do some setup of our own at this point before reading
386
+ * the data. After jpeg_start_decompress() we have the correct scaled
387
+ * output image dimensions available, as well as the output colormap
388
+ * if we asked for color quantization.
389
+ * In this example, we need to make an output work buffer of the right size.
390
+ */
391
+ /* JSAMPLEs per row in output buffer */
392
+ row_stride = cinfo->output_width * cinfo->output_components;
393
+ /* Make a one-row-high sample array that will go away when done with image */
394
+ buffer = (*cinfo->mem->alloc_sarray)
395
+ ((j_common_ptr)cinfo, JPOOL_IMAGE, row_stride, 1);
396
+
397
+ /* Step 6: while (scan lines remain to be read) */
398
+ /* jpeg_read_scanlines(...); */
399
+
400
+ /* Here we use the library's state variable cinfo->output_scanline as the
401
+ * loop counter, so that we don't have to keep track ourselves.
402
+ */
403
+ while (cinfo->output_scanline < cinfo->output_height) {
404
+ /* jpeg_read_scanlines expects an array of pointers to scanlines.
405
+ * Here the array is only one element long, but you could ask for
406
+ * more than one scanline at a time if that's more convenient.
407
+ */
408
+ (void)jpeg_read_scanlines(cinfo, buffer, 1);
409
+ /* Assume put_scanline_someplace wants a pointer and sample count. */
410
+ put_scanline_someplace(buffer[0], row_stride);
411
+ }
412
+
413
+ /* Step 7: Finish decompression */
414
+
415
+ (void)jpeg_finish_decompress(cinfo);
416
+ /* We can ignore the return value since suspension is not possible
417
+ * with the stdio data source.
418
+ */
419
+
420
+ /* Step 8: Release JPEG decompression object */
421
+
422
+ /* This is an important step since it will release a good deal of memory. */
423
+ jpeg_destroy_decompress(cinfo);
424
+
425
+ /* After finish_decompress, we can close the input file.
426
+ * Here we postpone it until after no more JPEG errors are possible,
427
+ * so as to simplify the setjmp error logic above. (Actually, I don't
428
+ * think that jpeg_destroy can do an error exit, but why assume anything...)
429
+ */
430
+ fclose(infile);
431
+
432
+ /* At this point you may want to check to see whether any corrupt-data
433
+ * warnings occurred (test whether jerr.pub.num_warnings is nonzero).
434
+ */
435
+
436
+ /* And we're done! */
437
+ return 1;
438
+ }
439
+
440
+
441
+ /*
442
+ * SOME FINE POINTS:
443
+ *
444
+ * In the above code, we ignored the return value of jpeg_read_scanlines,
445
+ * which is the number of scanlines actually read. We could get away with
446
+ * this because we asked for only one line at a time and we weren't using
447
+ * a suspending data source. See libjpeg.txt for more info.
448
+ *
449
+ * We cheated a bit by calling alloc_sarray() after jpeg_start_decompress();
450
+ * we should have done it beforehand to ensure that the space would be
451
+ * counted against the JPEG max_memory setting. In some systems the above
452
+ * code would risk an out-of-memory error. However, in general we don't
453
+ * know the output image dimensions before jpeg_start_decompress(), unless we
454
+ * call jpeg_calc_output_dimensions(). See libjpeg.txt for more about this.
455
+ *
456
+ * Scanlines are returned in the same order as they appear in the JPEG file,
457
+ * which is standardly top-to-bottom. If you must emit data bottom-to-top,
458
+ * you can use one of the virtual arrays provided by the JPEG memory manager
459
+ * to invert the data. See wrbmp.c for an example.
460
+ *
461
+ * As with compression, some operating modes may require temporary files.
462
+ * On some systems you may need to set up a signal handler to ensure that
463
+ * temporary files are deleted if the program is interrupted. See libjpeg.txt.
464
+ */
@@ -0,0 +1,157 @@
1
+ /*
2
+ * jaricom.c
3
+ *
4
+ * This file was part of the Independent JPEG Group's software:
5
+ * Developed 1997-2009 by Guido Vollbeding.
6
+ * libjpeg-turbo Modifications:
7
+ * Copyright (C) 2015, 2018, D. R. Commander.
8
+ * For conditions of distribution and use, see the accompanying README.ijg
9
+ * file.
10
+ *
11
+ * This file contains probability estimation tables for common use in
12
+ * arithmetic entropy encoding and decoding routines.
13
+ *
14
+ * This data represents Table D.2 in
15
+ * Recommendation ITU-T T.81 (1992) | ISO/IEC 10918-1:1994 and Table 24 in
16
+ * Recommendation ITU-T T.82 (1993) | ISO/IEC 11544:1993.
17
+ */
18
+
19
+ #define JPEG_INTERNALS
20
+ #include "jinclude.h"
21
+ #include "jpeglib.h"
22
+
23
+ /* The following #define specifies the packing of the four components
24
+ * into the compact JLONG representation.
25
+ * Note that this formula must match the actual arithmetic encoder
26
+ * and decoder implementation. The implementation has to be changed
27
+ * if this formula is changed.
28
+ * The current organization is leaned on Markus Kuhn's JBIG
29
+ * implementation (jbig_tab.c).
30
+ */
31
+
32
+ #define V(i, a, b, c, d) \
33
+ (((JLONG)a << 16) | ((JLONG)c << 8) | ((JLONG)d << 7) | b)
34
+
35
+ const JLONG jpeg_aritab[113 + 1] = {
36
+ /*
37
+ * Index, Qe_Value, Next_Index_LPS, Next_Index_MPS, Switch_MPS
38
+ */
39
+ V( 0, 0x5a1d, 1, 1, 1 ),
40
+ V( 1, 0x2586, 14, 2, 0 ),
41
+ V( 2, 0x1114, 16, 3, 0 ),
42
+ V( 3, 0x080b, 18, 4, 0 ),
43
+ V( 4, 0x03d8, 20, 5, 0 ),
44
+ V( 5, 0x01da, 23, 6, 0 ),
45
+ V( 6, 0x00e5, 25, 7, 0 ),
46
+ V( 7, 0x006f, 28, 8, 0 ),
47
+ V( 8, 0x0036, 30, 9, 0 ),
48
+ V( 9, 0x001a, 33, 10, 0 ),
49
+ V( 10, 0x000d, 35, 11, 0 ),
50
+ V( 11, 0x0006, 9, 12, 0 ),
51
+ V( 12, 0x0003, 10, 13, 0 ),
52
+ V( 13, 0x0001, 12, 13, 0 ),
53
+ V( 14, 0x5a7f, 15, 15, 1 ),
54
+ V( 15, 0x3f25, 36, 16, 0 ),
55
+ V( 16, 0x2cf2, 38, 17, 0 ),
56
+ V( 17, 0x207c, 39, 18, 0 ),
57
+ V( 18, 0x17b9, 40, 19, 0 ),
58
+ V( 19, 0x1182, 42, 20, 0 ),
59
+ V( 20, 0x0cef, 43, 21, 0 ),
60
+ V( 21, 0x09a1, 45, 22, 0 ),
61
+ V( 22, 0x072f, 46, 23, 0 ),
62
+ V( 23, 0x055c, 48, 24, 0 ),
63
+ V( 24, 0x0406, 49, 25, 0 ),
64
+ V( 25, 0x0303, 51, 26, 0 ),
65
+ V( 26, 0x0240, 52, 27, 0 ),
66
+ V( 27, 0x01b1, 54, 28, 0 ),
67
+ V( 28, 0x0144, 56, 29, 0 ),
68
+ V( 29, 0x00f5, 57, 30, 0 ),
69
+ V( 30, 0x00b7, 59, 31, 0 ),
70
+ V( 31, 0x008a, 60, 32, 0 ),
71
+ V( 32, 0x0068, 62, 33, 0 ),
72
+ V( 33, 0x004e, 63, 34, 0 ),
73
+ V( 34, 0x003b, 32, 35, 0 ),
74
+ V( 35, 0x002c, 33, 9, 0 ),
75
+ V( 36, 0x5ae1, 37, 37, 1 ),
76
+ V( 37, 0x484c, 64, 38, 0 ),
77
+ V( 38, 0x3a0d, 65, 39, 0 ),
78
+ V( 39, 0x2ef1, 67, 40, 0 ),
79
+ V( 40, 0x261f, 68, 41, 0 ),
80
+ V( 41, 0x1f33, 69, 42, 0 ),
81
+ V( 42, 0x19a8, 70, 43, 0 ),
82
+ V( 43, 0x1518, 72, 44, 0 ),
83
+ V( 44, 0x1177, 73, 45, 0 ),
84
+ V( 45, 0x0e74, 74, 46, 0 ),
85
+ V( 46, 0x0bfb, 75, 47, 0 ),
86
+ V( 47, 0x09f8, 77, 48, 0 ),
87
+ V( 48, 0x0861, 78, 49, 0 ),
88
+ V( 49, 0x0706, 79, 50, 0 ),
89
+ V( 50, 0x05cd, 48, 51, 0 ),
90
+ V( 51, 0x04de, 50, 52, 0 ),
91
+ V( 52, 0x040f, 50, 53, 0 ),
92
+ V( 53, 0x0363, 51, 54, 0 ),
93
+ V( 54, 0x02d4, 52, 55, 0 ),
94
+ V( 55, 0x025c, 53, 56, 0 ),
95
+ V( 56, 0x01f8, 54, 57, 0 ),
96
+ V( 57, 0x01a4, 55, 58, 0 ),
97
+ V( 58, 0x0160, 56, 59, 0 ),
98
+ V( 59, 0x0125, 57, 60, 0 ),
99
+ V( 60, 0x00f6, 58, 61, 0 ),
100
+ V( 61, 0x00cb, 59, 62, 0 ),
101
+ V( 62, 0x00ab, 61, 63, 0 ),
102
+ V( 63, 0x008f, 61, 32, 0 ),
103
+ V( 64, 0x5b12, 65, 65, 1 ),
104
+ V( 65, 0x4d04, 80, 66, 0 ),
105
+ V( 66, 0x412c, 81, 67, 0 ),
106
+ V( 67, 0x37d8, 82, 68, 0 ),
107
+ V( 68, 0x2fe8, 83, 69, 0 ),
108
+ V( 69, 0x293c, 84, 70, 0 ),
109
+ V( 70, 0x2379, 86, 71, 0 ),
110
+ V( 71, 0x1edf, 87, 72, 0 ),
111
+ V( 72, 0x1aa9, 87, 73, 0 ),
112
+ V( 73, 0x174e, 72, 74, 0 ),
113
+ V( 74, 0x1424, 72, 75, 0 ),
114
+ V( 75, 0x119c, 74, 76, 0 ),
115
+ V( 76, 0x0f6b, 74, 77, 0 ),
116
+ V( 77, 0x0d51, 75, 78, 0 ),
117
+ V( 78, 0x0bb6, 77, 79, 0 ),
118
+ V( 79, 0x0a40, 77, 48, 0 ),
119
+ V( 80, 0x5832, 80, 81, 1 ),
120
+ V( 81, 0x4d1c, 88, 82, 0 ),
121
+ V( 82, 0x438e, 89, 83, 0 ),
122
+ V( 83, 0x3bdd, 90, 84, 0 ),
123
+ V( 84, 0x34ee, 91, 85, 0 ),
124
+ V( 85, 0x2eae, 92, 86, 0 ),
125
+ V( 86, 0x299a, 93, 87, 0 ),
126
+ V( 87, 0x2516, 86, 71, 0 ),
127
+ V( 88, 0x5570, 88, 89, 1 ),
128
+ V( 89, 0x4ca9, 95, 90, 0 ),
129
+ V( 90, 0x44d9, 96, 91, 0 ),
130
+ V( 91, 0x3e22, 97, 92, 0 ),
131
+ V( 92, 0x3824, 99, 93, 0 ),
132
+ V( 93, 0x32b4, 99, 94, 0 ),
133
+ V( 94, 0x2e17, 93, 86, 0 ),
134
+ V( 95, 0x56a8, 95, 96, 1 ),
135
+ V( 96, 0x4f46, 101, 97, 0 ),
136
+ V( 97, 0x47e5, 102, 98, 0 ),
137
+ V( 98, 0x41cf, 103, 99, 0 ),
138
+ V( 99, 0x3c3d, 104, 100, 0 ),
139
+ V( 100, 0x375e, 99, 93, 0 ),
140
+ V( 101, 0x5231, 105, 102, 0 ),
141
+ V( 102, 0x4c0f, 106, 103, 0 ),
142
+ V( 103, 0x4639, 107, 104, 0 ),
143
+ V( 104, 0x415e, 103, 99, 0 ),
144
+ V( 105, 0x5627, 105, 106, 1 ),
145
+ V( 106, 0x50e7, 108, 107, 0 ),
146
+ V( 107, 0x4b85, 109, 103, 0 ),
147
+ V( 108, 0x5597, 110, 109, 0 ),
148
+ V( 109, 0x504f, 111, 107, 0 ),
149
+ V( 110, 0x5a10, 110, 111, 1 ),
150
+ V( 111, 0x5522, 112, 109, 0 ),
151
+ V( 112, 0x59eb, 112, 111, 1 ),
152
+ /*
153
+ * This last entry is used for fixed probability estimate of 0.5
154
+ * as recommended in Section 10.3 Table 5 of ITU-T Rec. T.851.
155
+ */
156
+ V( 113, 0x5a1d, 113, 113, 0 )
157
+ };