rfreeimage 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (860) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +1 -0
  4. data/Rakefile +34 -0
  5. data/ext/rfreeimage/extconf.rb +35 -0
  6. data/ext/rfreeimage/rfi_main.c +389 -0
  7. data/lib/rfreeimage/image.rb +26 -0
  8. data/lib/rfreeimage/version.rb +3 -0
  9. data/lib/rfreeimage.rb +3 -0
  10. data/rfreeimage.gemspec +32 -0
  11. data/vendor/FreeImage/Makefile +34 -0
  12. data/vendor/FreeImage/Makefile.cygwin +74 -0
  13. data/vendor/FreeImage/Makefile.fip +84 -0
  14. data/vendor/FreeImage/Makefile.gnu +83 -0
  15. data/vendor/FreeImage/Makefile.iphone +96 -0
  16. data/vendor/FreeImage/Makefile.mingw +136 -0
  17. data/vendor/FreeImage/Makefile.osx +115 -0
  18. data/vendor/FreeImage/Makefile.solaris +66 -0
  19. data/vendor/FreeImage/Makefile.srcs +6 -0
  20. data/vendor/FreeImage/README.iphone +19 -0
  21. data/vendor/FreeImage/README.linux +50 -0
  22. data/vendor/FreeImage/README.minGW +236 -0
  23. data/vendor/FreeImage/README.osx +44 -0
  24. data/vendor/FreeImage/README.solaris +67 -0
  25. data/vendor/FreeImage/Source/CacheFile.h +92 -0
  26. data/vendor/FreeImage/Source/DeprecationManager/Deprecated.cpp +36 -0
  27. data/vendor/FreeImage/Source/DeprecationManager/DeprecationMgr.cpp +103 -0
  28. data/vendor/FreeImage/Source/DeprecationManager/DeprecationMgr.h +83 -0
  29. data/vendor/FreeImage/Source/FreeImage/BitmapAccess.cpp +1573 -0
  30. data/vendor/FreeImage/Source/FreeImage/CacheFile.cpp +271 -0
  31. data/vendor/FreeImage/Source/FreeImage/ColorLookup.cpp +785 -0
  32. data/vendor/FreeImage/Source/FreeImage/Conversion.cpp +551 -0
  33. data/vendor/FreeImage/Source/FreeImage/Conversion16_555.cpp +209 -0
  34. data/vendor/FreeImage/Source/FreeImage/Conversion16_565.cpp +204 -0
  35. data/vendor/FreeImage/Source/FreeImage/Conversion24.cpp +252 -0
  36. data/vendor/FreeImage/Source/FreeImage/Conversion32.cpp +345 -0
  37. data/vendor/FreeImage/Source/FreeImage/Conversion4.cpp +246 -0
  38. data/vendor/FreeImage/Source/FreeImage/Conversion8.cpp +305 -0
  39. data/vendor/FreeImage/Source/FreeImage/ConversionFloat.cpp +194 -0
  40. data/vendor/FreeImage/Source/FreeImage/ConversionRGB16.cpp +144 -0
  41. data/vendor/FreeImage/Source/FreeImage/ConversionRGBA16.cpp +147 -0
  42. data/vendor/FreeImage/Source/FreeImage/ConversionRGBAF.cpp +250 -0
  43. data/vendor/FreeImage/Source/FreeImage/ConversionRGBF.cpp +243 -0
  44. data/vendor/FreeImage/Source/FreeImage/ConversionType.cpp +699 -0
  45. data/vendor/FreeImage/Source/FreeImage/ConversionUINT16.cpp +134 -0
  46. data/vendor/FreeImage/Source/FreeImage/FreeImage.cpp +226 -0
  47. data/vendor/FreeImage/Source/FreeImage/FreeImageC.c +22 -0
  48. data/vendor/FreeImage/Source/FreeImage/FreeImageIO.cpp +175 -0
  49. data/vendor/FreeImage/Source/FreeImage/GetType.cpp +92 -0
  50. data/vendor/FreeImage/Source/FreeImage/Halftoning.cpp +474 -0
  51. data/vendor/FreeImage/Source/FreeImage/J2KHelper.cpp +591 -0
  52. data/vendor/FreeImage/Source/FreeImage/J2KHelper.h +36 -0
  53. data/vendor/FreeImage/Source/FreeImage/LFPQuantizer.cpp +208 -0
  54. data/vendor/FreeImage/Source/FreeImage/MNGHelper.cpp +1320 -0
  55. data/vendor/FreeImage/Source/FreeImage/MemoryIO.cpp +237 -0
  56. data/vendor/FreeImage/Source/FreeImage/MultiPage.cpp +974 -0
  57. data/vendor/FreeImage/Source/FreeImage/NNQuantizer.cpp +507 -0
  58. data/vendor/FreeImage/Source/FreeImage/PSDParser.cpp +1057 -0
  59. data/vendor/FreeImage/Source/FreeImage/PSDParser.h +271 -0
  60. data/vendor/FreeImage/Source/FreeImage/PixelAccess.cpp +197 -0
  61. data/vendor/FreeImage/Source/FreeImage/Plugin.cpp +822 -0
  62. data/vendor/FreeImage/Source/FreeImage/PluginBMP.cpp +1494 -0
  63. data/vendor/FreeImage/Source/FreeImage/PluginCUT.cpp +240 -0
  64. data/vendor/FreeImage/Source/FreeImage/PluginDDS.cpp +655 -0
  65. data/vendor/FreeImage/Source/FreeImage/PluginEXR.cpp +773 -0
  66. data/vendor/FreeImage/Source/FreeImage/PluginG3.cpp +433 -0
  67. data/vendor/FreeImage/Source/FreeImage/PluginGIF.cpp +1407 -0
  68. data/vendor/FreeImage/Source/FreeImage/PluginHDR.cpp +722 -0
  69. data/vendor/FreeImage/Source/FreeImage/PluginICO.cpp +824 -0
  70. data/vendor/FreeImage/Source/FreeImage/PluginIFF.cpp +459 -0
  71. data/vendor/FreeImage/Source/FreeImage/PluginJ2K.cpp +328 -0
  72. data/vendor/FreeImage/Source/FreeImage/PluginJNG.cpp +162 -0
  73. data/vendor/FreeImage/Source/FreeImage/PluginJP2.cpp +328 -0
  74. data/vendor/FreeImage/Source/FreeImage/PluginJPEG.cpp +1706 -0
  75. data/vendor/FreeImage/Source/FreeImage/PluginJXR.cpp +1475 -0
  76. data/vendor/FreeImage/Source/FreeImage/PluginKOALA.cpp +243 -0
  77. data/vendor/FreeImage/Source/FreeImage/PluginMNG.cpp +153 -0
  78. data/vendor/FreeImage/Source/FreeImage/PluginPCD.cpp +251 -0
  79. data/vendor/FreeImage/Source/FreeImage/PluginPCX.cpp +659 -0
  80. data/vendor/FreeImage/Source/FreeImage/PluginPFM.cpp +409 -0
  81. data/vendor/FreeImage/Source/FreeImage/PluginPICT.cpp +1343 -0
  82. data/vendor/FreeImage/Source/FreeImage/PluginPNG.cpp +1115 -0
  83. data/vendor/FreeImage/Source/FreeImage/PluginPNM.cpp +838 -0
  84. data/vendor/FreeImage/Source/FreeImage/PluginPSD.cpp +131 -0
  85. data/vendor/FreeImage/Source/FreeImage/PluginRAS.cpp +512 -0
  86. data/vendor/FreeImage/Source/FreeImage/PluginRAW.cpp +793 -0
  87. data/vendor/FreeImage/Source/FreeImage/PluginSGI.cpp +425 -0
  88. data/vendor/FreeImage/Source/FreeImage/PluginTARGA.cpp +1591 -0
  89. data/vendor/FreeImage/Source/FreeImage/PluginTIFF.cpp +2631 -0
  90. data/vendor/FreeImage/Source/FreeImage/PluginWBMP.cpp +372 -0
  91. data/vendor/FreeImage/Source/FreeImage/PluginWebP.cpp +698 -0
  92. data/vendor/FreeImage/Source/FreeImage/PluginXBM.cpp +399 -0
  93. data/vendor/FreeImage/Source/FreeImage/PluginXPM.cpp +487 -0
  94. data/vendor/FreeImage/Source/FreeImage/TIFFLogLuv.cpp +65 -0
  95. data/vendor/FreeImage/Source/FreeImage/ToneMapping.cpp +75 -0
  96. data/vendor/FreeImage/Source/FreeImage/WuQuantizer.cpp +559 -0
  97. data/vendor/FreeImage/Source/FreeImage/ZLibInterface.cpp +223 -0
  98. data/vendor/FreeImage/Source/FreeImage/tmoColorConvert.cpp +479 -0
  99. data/vendor/FreeImage/Source/FreeImage/tmoDrago03.cpp +295 -0
  100. data/vendor/FreeImage/Source/FreeImage/tmoFattal02.cpp +689 -0
  101. data/vendor/FreeImage/Source/FreeImage/tmoReinhard05.cpp +260 -0
  102. data/vendor/FreeImage/Source/FreeImage.h +1153 -0
  103. data/vendor/FreeImage/Source/FreeImageIO.h +63 -0
  104. data/vendor/FreeImage/Source/FreeImageToolkit/BSplineRotate.cpp +730 -0
  105. data/vendor/FreeImage/Source/FreeImageToolkit/Background.cpp +895 -0
  106. data/vendor/FreeImage/Source/FreeImageToolkit/Channels.cpp +488 -0
  107. data/vendor/FreeImage/Source/FreeImageToolkit/ClassicRotate.cpp +917 -0
  108. data/vendor/FreeImage/Source/FreeImageToolkit/Colors.cpp +967 -0
  109. data/vendor/FreeImage/Source/FreeImageToolkit/CopyPaste.cpp +861 -0
  110. data/vendor/FreeImage/Source/FreeImageToolkit/Display.cpp +230 -0
  111. data/vendor/FreeImage/Source/FreeImageToolkit/Filters.h +287 -0
  112. data/vendor/FreeImage/Source/FreeImageToolkit/Flip.cpp +166 -0
  113. data/vendor/FreeImage/Source/FreeImageToolkit/JPEGTransform.cpp +623 -0
  114. data/vendor/FreeImage/Source/FreeImageToolkit/MultigridPoissonSolver.cpp +505 -0
  115. data/vendor/FreeImage/Source/FreeImageToolkit/Rescale.cpp +192 -0
  116. data/vendor/FreeImage/Source/FreeImageToolkit/Resize.cpp +2116 -0
  117. data/vendor/FreeImage/Source/FreeImageToolkit/Resize.h +196 -0
  118. data/vendor/FreeImage/Source/LibJPEG/ansi2knr.c +739 -0
  119. data/vendor/FreeImage/Source/LibJPEG/cderror.h +134 -0
  120. data/vendor/FreeImage/Source/LibJPEG/cdjpeg.c +181 -0
  121. data/vendor/FreeImage/Source/LibJPEG/cdjpeg.h +187 -0
  122. data/vendor/FreeImage/Source/LibJPEG/cjpeg.c +664 -0
  123. data/vendor/FreeImage/Source/LibJPEG/ckconfig.c +402 -0
  124. data/vendor/FreeImage/Source/LibJPEG/djpeg.c +617 -0
  125. data/vendor/FreeImage/Source/LibJPEG/example.c +433 -0
  126. data/vendor/FreeImage/Source/LibJPEG/jaricom.c +153 -0
  127. data/vendor/FreeImage/Source/LibJPEG/jcapimin.c +288 -0
  128. data/vendor/FreeImage/Source/LibJPEG/jcapistd.c +162 -0
  129. data/vendor/FreeImage/Source/LibJPEG/jcarith.c +944 -0
  130. data/vendor/FreeImage/Source/LibJPEG/jccoefct.c +454 -0
  131. data/vendor/FreeImage/Source/LibJPEG/jccolor.c +604 -0
  132. data/vendor/FreeImage/Source/LibJPEG/jcdctmgr.c +477 -0
  133. data/vendor/FreeImage/Source/LibJPEG/jchuff.c +1573 -0
  134. data/vendor/FreeImage/Source/LibJPEG/jcinit.c +84 -0
  135. data/vendor/FreeImage/Source/LibJPEG/jcmainct.c +297 -0
  136. data/vendor/FreeImage/Source/LibJPEG/jcmarker.c +719 -0
  137. data/vendor/FreeImage/Source/LibJPEG/jcmaster.c +856 -0
  138. data/vendor/FreeImage/Source/LibJPEG/jcomapi.c +106 -0
  139. data/vendor/FreeImage/Source/LibJPEG/jconfig.h +161 -0
  140. data/vendor/FreeImage/Source/LibJPEG/jcparam.c +675 -0
  141. data/vendor/FreeImage/Source/LibJPEG/jcprepct.c +358 -0
  142. data/vendor/FreeImage/Source/LibJPEG/jcsample.c +545 -0
  143. data/vendor/FreeImage/Source/LibJPEG/jctrans.c +385 -0
  144. data/vendor/FreeImage/Source/LibJPEG/jdapimin.c +399 -0
  145. data/vendor/FreeImage/Source/LibJPEG/jdapistd.c +276 -0
  146. data/vendor/FreeImage/Source/LibJPEG/jdarith.c +796 -0
  147. data/vendor/FreeImage/Source/LibJPEG/jdatadst.c +270 -0
  148. data/vendor/FreeImage/Source/LibJPEG/jdatasrc.c +275 -0
  149. data/vendor/FreeImage/Source/LibJPEG/jdcoefct.c +741 -0
  150. data/vendor/FreeImage/Source/LibJPEG/jdcolor.c +748 -0
  151. data/vendor/FreeImage/Source/LibJPEG/jdct.h +393 -0
  152. data/vendor/FreeImage/Source/LibJPEG/jddctmgr.c +384 -0
  153. data/vendor/FreeImage/Source/LibJPEG/jdhuff.c +1554 -0
  154. data/vendor/FreeImage/Source/LibJPEG/jdinput.c +662 -0
  155. data/vendor/FreeImage/Source/LibJPEG/jdmainct.c +513 -0
  156. data/vendor/FreeImage/Source/LibJPEG/jdmarker.c +1511 -0
  157. data/vendor/FreeImage/Source/LibJPEG/jdmaster.c +543 -0
  158. data/vendor/FreeImage/Source/LibJPEG/jdmerge.c +401 -0
  159. data/vendor/FreeImage/Source/LibJPEG/jdpostct.c +290 -0
  160. data/vendor/FreeImage/Source/LibJPEG/jdsample.c +361 -0
  161. data/vendor/FreeImage/Source/LibJPEG/jdtrans.c +140 -0
  162. data/vendor/FreeImage/Source/LibJPEG/jerror.c +253 -0
  163. data/vendor/FreeImage/Source/LibJPEG/jerror.h +304 -0
  164. data/vendor/FreeImage/Source/LibJPEG/jfdctflt.c +174 -0
  165. data/vendor/FreeImage/Source/LibJPEG/jfdctfst.c +230 -0
  166. data/vendor/FreeImage/Source/LibJPEG/jfdctint.c +4406 -0
  167. data/vendor/FreeImage/Source/LibJPEG/jidctflt.c +235 -0
  168. data/vendor/FreeImage/Source/LibJPEG/jidctfst.c +368 -0
  169. data/vendor/FreeImage/Source/LibJPEG/jidctint.c +5179 -0
  170. data/vendor/FreeImage/Source/LibJPEG/jinclude.h +91 -0
  171. data/vendor/FreeImage/Source/LibJPEG/jmemansi.c +167 -0
  172. data/vendor/FreeImage/Source/LibJPEG/jmemdos.c +638 -0
  173. data/vendor/FreeImage/Source/LibJPEG/jmemmac.c +289 -0
  174. data/vendor/FreeImage/Source/LibJPEG/jmemmgr.c +1119 -0
  175. data/vendor/FreeImage/Source/LibJPEG/jmemname.c +276 -0
  176. data/vendor/FreeImage/Source/LibJPEG/jmemnobs.c +109 -0
  177. data/vendor/FreeImage/Source/LibJPEG/jmemsys.h +198 -0
  178. data/vendor/FreeImage/Source/LibJPEG/jmorecfg.h +442 -0
  179. data/vendor/FreeImage/Source/LibJPEG/jpegint.h +426 -0
  180. data/vendor/FreeImage/Source/LibJPEG/jpeglib.h +1180 -0
  181. data/vendor/FreeImage/Source/LibJPEG/jpegtran.c +577 -0
  182. data/vendor/FreeImage/Source/LibJPEG/jquant1.c +857 -0
  183. data/vendor/FreeImage/Source/LibJPEG/jquant2.c +1311 -0
  184. data/vendor/FreeImage/Source/LibJPEG/jutils.c +227 -0
  185. data/vendor/FreeImage/Source/LibJPEG/jversion.h +14 -0
  186. data/vendor/FreeImage/Source/LibJPEG/rdbmp.c +480 -0
  187. data/vendor/FreeImage/Source/LibJPEG/rdcolmap.c +253 -0
  188. data/vendor/FreeImage/Source/LibJPEG/rdgif.c +38 -0
  189. data/vendor/FreeImage/Source/LibJPEG/rdjpgcom.c +515 -0
  190. data/vendor/FreeImage/Source/LibJPEG/rdppm.c +459 -0
  191. data/vendor/FreeImage/Source/LibJPEG/rdrle.c +387 -0
  192. data/vendor/FreeImage/Source/LibJPEG/rdswitch.c +365 -0
  193. data/vendor/FreeImage/Source/LibJPEG/rdtarga.c +500 -0
  194. data/vendor/FreeImage/Source/LibJPEG/transupp.c +1763 -0
  195. data/vendor/FreeImage/Source/LibJPEG/transupp.h +219 -0
  196. data/vendor/FreeImage/Source/LibJPEG/wrbmp.c +442 -0
  197. data/vendor/FreeImage/Source/LibJPEG/wrgif.c +399 -0
  198. data/vendor/FreeImage/Source/LibJPEG/wrjpgcom.c +583 -0
  199. data/vendor/FreeImage/Source/LibJPEG/wrppm.c +269 -0
  200. data/vendor/FreeImage/Source/LibJPEG/wrrle.c +305 -0
  201. data/vendor/FreeImage/Source/LibJPEG/wrtarga.c +253 -0
  202. data/vendor/FreeImage/Source/LibJXR/common/include/guiddef.h +230 -0
  203. data/vendor/FreeImage/Source/LibJXR/common/include/wmsal.h +757 -0
  204. data/vendor/FreeImage/Source/LibJXR/common/include/wmspecstring.h +342 -0
  205. data/vendor/FreeImage/Source/LibJXR/common/include/wmspecstrings_adt.h +71 -0
  206. data/vendor/FreeImage/Source/LibJXR/common/include/wmspecstrings_strict.h +1096 -0
  207. data/vendor/FreeImage/Source/LibJXR/common/include/wmspecstrings_undef.h +406 -0
  208. data/vendor/FreeImage/Source/LibJXR/image/decode/JXRTranscode.c +987 -0
  209. data/vendor/FreeImage/Source/LibJXR/image/decode/decode.c +200 -0
  210. data/vendor/FreeImage/Source/LibJXR/image/decode/decode.h +143 -0
  211. data/vendor/FreeImage/Source/LibJXR/image/decode/postprocess.c +288 -0
  212. data/vendor/FreeImage/Source/LibJXR/image/decode/segdec.c +1205 -0
  213. data/vendor/FreeImage/Source/LibJXR/image/decode/strInvTransform.c +1888 -0
  214. data/vendor/FreeImage/Source/LibJXR/image/decode/strPredQuantDec.c +539 -0
  215. data/vendor/FreeImage/Source/LibJXR/image/decode/strdec.c +3628 -0
  216. data/vendor/FreeImage/Source/LibJXR/image/decode/strdec_x86.c +1640 -0
  217. data/vendor/FreeImage/Source/LibJXR/image/encode/encode.c +144 -0
  218. data/vendor/FreeImage/Source/LibJXR/image/encode/encode.h +113 -0
  219. data/vendor/FreeImage/Source/LibJXR/image/encode/segenc.c +1186 -0
  220. data/vendor/FreeImage/Source/LibJXR/image/encode/strFwdTransform.c +1111 -0
  221. data/vendor/FreeImage/Source/LibJXR/image/encode/strPredQuantEnc.c +511 -0
  222. data/vendor/FreeImage/Source/LibJXR/image/encode/strenc.c +2370 -0
  223. data/vendor/FreeImage/Source/LibJXR/image/encode/strenc_x86.c +409 -0
  224. data/vendor/FreeImage/Source/LibJXR/image/sys/adapthuff.c +511 -0
  225. data/vendor/FreeImage/Source/LibJXR/image/sys/ansi.h +61 -0
  226. data/vendor/FreeImage/Source/LibJXR/image/sys/common.h +131 -0
  227. data/vendor/FreeImage/Source/LibJXR/image/sys/image.c +183 -0
  228. data/vendor/FreeImage/Source/LibJXR/image/sys/perfTimer.h +115 -0
  229. data/vendor/FreeImage/Source/LibJXR/image/sys/perfTimerANSI.c +274 -0
  230. data/vendor/FreeImage/Source/LibJXR/image/sys/strPredQuant.c +306 -0
  231. data/vendor/FreeImage/Source/LibJXR/image/sys/strTransform.c +85 -0
  232. data/vendor/FreeImage/Source/LibJXR/image/sys/strTransform.h +50 -0
  233. data/vendor/FreeImage/Source/LibJXR/image/sys/strcodec.c +1251 -0
  234. data/vendor/FreeImage/Source/LibJXR/image/sys/strcodec.h +681 -0
  235. data/vendor/FreeImage/Source/LibJXR/image/sys/windowsmediaphoto.h +515 -0
  236. data/vendor/FreeImage/Source/LibJXR/image/sys/xplatform_image.h +84 -0
  237. data/vendor/FreeImage/Source/LibJXR/image/x86/x86.h +58 -0
  238. data/vendor/FreeImage/Source/LibJXR/jxrgluelib/JXRGlue.c +930 -0
  239. data/vendor/FreeImage/Source/LibJXR/jxrgluelib/JXRGlue.h +636 -0
  240. data/vendor/FreeImage/Source/LibJXR/jxrgluelib/JXRGlueJxr.c +2246 -0
  241. data/vendor/FreeImage/Source/LibJXR/jxrgluelib/JXRGluePFC.c +2338 -0
  242. data/vendor/FreeImage/Source/LibJXR/jxrgluelib/JXRMeta.c +905 -0
  243. data/vendor/FreeImage/Source/LibJXR/jxrgluelib/JXRMeta.h +258 -0
  244. data/vendor/FreeImage/Source/LibOpenJPEG/bio.c +188 -0
  245. data/vendor/FreeImage/Source/LibOpenJPEG/bio.h +128 -0
  246. data/vendor/FreeImage/Source/LibOpenJPEG/cidx_manager.c +239 -0
  247. data/vendor/FreeImage/Source/LibOpenJPEG/cidx_manager.h +68 -0
  248. data/vendor/FreeImage/Source/LibOpenJPEG/cio.c +644 -0
  249. data/vendor/FreeImage/Source/LibOpenJPEG/cio.h +393 -0
  250. data/vendor/FreeImage/Source/LibOpenJPEG/dwt.c +919 -0
  251. data/vendor/FreeImage/Source/LibOpenJPEG/dwt.h +116 -0
  252. data/vendor/FreeImage/Source/LibOpenJPEG/event.c +141 -0
  253. data/vendor/FreeImage/Source/LibOpenJPEG/event.h +97 -0
  254. data/vendor/FreeImage/Source/LibOpenJPEG/function_list.c +114 -0
  255. data/vendor/FreeImage/Source/LibOpenJPEG/function_list.h +126 -0
  256. data/vendor/FreeImage/Source/LibOpenJPEG/image.c +235 -0
  257. data/vendor/FreeImage/Source/LibOpenJPEG/image.h +63 -0
  258. data/vendor/FreeImage/Source/LibOpenJPEG/indexbox_manager.h +148 -0
  259. data/vendor/FreeImage/Source/LibOpenJPEG/invert.c +289 -0
  260. data/vendor/FreeImage/Source/LibOpenJPEG/invert.h +59 -0
  261. data/vendor/FreeImage/Source/LibOpenJPEG/j2k.c +10238 -0
  262. data/vendor/FreeImage/Source/LibOpenJPEG/j2k.h +838 -0
  263. data/vendor/FreeImage/Source/LibOpenJPEG/jp2.c +2776 -0
  264. data/vendor/FreeImage/Source/LibOpenJPEG/jp2.h +490 -0
  265. data/vendor/FreeImage/Source/LibOpenJPEG/mct.c +319 -0
  266. data/vendor/FreeImage/Source/LibOpenJPEG/mct.h +149 -0
  267. data/vendor/FreeImage/Source/LibOpenJPEG/mqc.c +604 -0
  268. data/vendor/FreeImage/Source/LibOpenJPEG/mqc.h +201 -0
  269. data/vendor/FreeImage/Source/LibOpenJPEG/openjpeg.c +955 -0
  270. data/vendor/FreeImage/Source/LibOpenJPEG/openjpeg.h +1475 -0
  271. data/vendor/FreeImage/Source/LibOpenJPEG/opj_clock.c +59 -0
  272. data/vendor/FreeImage/Source/LibOpenJPEG/opj_clock.h +54 -0
  273. data/vendor/FreeImage/Source/LibOpenJPEG/opj_codec.h +160 -0
  274. data/vendor/FreeImage/Source/LibOpenJPEG/opj_config.h +9 -0
  275. data/vendor/FreeImage/Source/LibOpenJPEG/opj_config_private.h +16 -0
  276. data/vendor/FreeImage/Source/LibOpenJPEG/opj_includes.h +175 -0
  277. data/vendor/FreeImage/Source/LibOpenJPEG/opj_intmath.h +172 -0
  278. data/vendor/FreeImage/Source/LibOpenJPEG/opj_inttypes.h +43 -0
  279. data/vendor/FreeImage/Source/LibOpenJPEG/opj_malloc.h +180 -0
  280. data/vendor/FreeImage/Source/LibOpenJPEG/opj_stdint.h +47 -0
  281. data/vendor/FreeImage/Source/LibOpenJPEG/phix_manager.c +191 -0
  282. data/vendor/FreeImage/Source/LibOpenJPEG/pi.c +1870 -0
  283. data/vendor/FreeImage/Source/LibOpenJPEG/pi.h +182 -0
  284. data/vendor/FreeImage/Source/LibOpenJPEG/ppix_manager.c +194 -0
  285. data/vendor/FreeImage/Source/LibOpenJPEG/raw.c +89 -0
  286. data/vendor/FreeImage/Source/LibOpenJPEG/raw.h +100 -0
  287. data/vendor/FreeImage/Source/LibOpenJPEG/t1.c +1751 -0
  288. data/vendor/FreeImage/Source/LibOpenJPEG/t1.h +157 -0
  289. data/vendor/FreeImage/Source/LibOpenJPEG/t1_generate_luts.c +276 -0
  290. data/vendor/FreeImage/Source/LibOpenJPEG/t1_luts.h +143 -0
  291. data/vendor/FreeImage/Source/LibOpenJPEG/t2.c +1334 -0
  292. data/vendor/FreeImage/Source/LibOpenJPEG/t2.h +127 -0
  293. data/vendor/FreeImage/Source/LibOpenJPEG/tcd.c +2123 -0
  294. data/vendor/FreeImage/Source/LibOpenJPEG/tcd.h +348 -0
  295. data/vendor/FreeImage/Source/LibOpenJPEG/tgt.c +331 -0
  296. data/vendor/FreeImage/Source/LibOpenJPEG/tgt.h +140 -0
  297. data/vendor/FreeImage/Source/LibOpenJPEG/thix_manager.c +134 -0
  298. data/vendor/FreeImage/Source/LibOpenJPEG/tpix_manager.c +185 -0
  299. data/vendor/FreeImage/Source/LibPNG/example.c +1061 -0
  300. data/vendor/FreeImage/Source/LibPNG/png.c +4493 -0
  301. data/vendor/FreeImage/Source/LibPNG/png.h +3282 -0
  302. data/vendor/FreeImage/Source/LibPNG/pngconf.h +644 -0
  303. data/vendor/FreeImage/Source/LibPNG/pngdebug.h +154 -0
  304. data/vendor/FreeImage/Source/LibPNG/pngerror.c +963 -0
  305. data/vendor/FreeImage/Source/LibPNG/pngget.c +1213 -0
  306. data/vendor/FreeImage/Source/LibPNG/pnginfo.h +260 -0
  307. data/vendor/FreeImage/Source/LibPNG/pnglibconf.h +218 -0
  308. data/vendor/FreeImage/Source/LibPNG/pngmem.c +281 -0
  309. data/vendor/FreeImage/Source/LibPNG/pngpread.c +1168 -0
  310. data/vendor/FreeImage/Source/LibPNG/pngpriv.h +1944 -0
  311. data/vendor/FreeImage/Source/LibPNG/pngread.c +4121 -0
  312. data/vendor/FreeImage/Source/LibPNG/pngrio.c +120 -0
  313. data/vendor/FreeImage/Source/LibPNG/pngrtran.c +4994 -0
  314. data/vendor/FreeImage/Source/LibPNG/pngrutil.c +4474 -0
  315. data/vendor/FreeImage/Source/LibPNG/pngset.c +1611 -0
  316. data/vendor/FreeImage/Source/LibPNG/pngstruct.h +489 -0
  317. data/vendor/FreeImage/Source/LibPNG/pngtest.c +2011 -0
  318. data/vendor/FreeImage/Source/LibPNG/pngtrans.c +849 -0
  319. data/vendor/FreeImage/Source/LibPNG/pngwio.c +168 -0
  320. data/vendor/FreeImage/Source/LibPNG/pngwrite.c +2455 -0
  321. data/vendor/FreeImage/Source/LibPNG/pngwtran.c +574 -0
  322. data/vendor/FreeImage/Source/LibPNG/pngwutil.c +3029 -0
  323. data/vendor/FreeImage/Source/LibRawLite/dcraw/dcraw.c +15462 -0
  324. data/vendor/FreeImage/Source/LibRawLite/internal/aahd_demosaic.cpp +706 -0
  325. data/vendor/FreeImage/Source/LibRawLite/internal/dcb_demosaicing.c +710 -0
  326. data/vendor/FreeImage/Source/LibRawLite/internal/dcraw_common.cpp +13593 -0
  327. data/vendor/FreeImage/Source/LibRawLite/internal/dcraw_fileio.cpp +240 -0
  328. data/vendor/FreeImage/Source/LibRawLite/internal/defines.h +167 -0
  329. data/vendor/FreeImage/Source/LibRawLite/internal/demosaic_packs.cpp +99 -0
  330. data/vendor/FreeImage/Source/LibRawLite/internal/dht_demosaic.cpp +873 -0
  331. data/vendor/FreeImage/Source/LibRawLite/internal/libraw_internal_funcs.h +282 -0
  332. data/vendor/FreeImage/Source/LibRawLite/internal/libraw_x3f.cpp +1919 -0
  333. data/vendor/FreeImage/Source/LibRawLite/internal/var_defines.h +216 -0
  334. data/vendor/FreeImage/Source/LibRawLite/internal/wf_filtering.cpp +1950 -0
  335. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw.h +338 -0
  336. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw_alloc.h +99 -0
  337. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw_const.h +233 -0
  338. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw_datastream.h +238 -0
  339. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw_internal.h +225 -0
  340. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw_types.h +442 -0
  341. data/vendor/FreeImage/Source/LibRawLite/libraw/libraw_version.h +62 -0
  342. data/vendor/FreeImage/Source/LibRawLite/src/libraw_c_api.cpp +230 -0
  343. data/vendor/FreeImage/Source/LibRawLite/src/libraw_cxx.cpp +4533 -0
  344. data/vendor/FreeImage/Source/LibRawLite/src/libraw_datastream.cpp +703 -0
  345. data/vendor/FreeImage/Source/LibTIFF4/mkg3states.c +451 -0
  346. data/vendor/FreeImage/Source/LibTIFF4/mkspans.c +82 -0
  347. data/vendor/FreeImage/Source/LibTIFF4/t4.h +292 -0
  348. data/vendor/FreeImage/Source/LibTIFF4/tif_aux.c +358 -0
  349. data/vendor/FreeImage/Source/LibTIFF4/tif_close.c +140 -0
  350. data/vendor/FreeImage/Source/LibTIFF4/tif_codec.c +166 -0
  351. data/vendor/FreeImage/Source/LibTIFF4/tif_color.c +287 -0
  352. data/vendor/FreeImage/Source/LibTIFF4/tif_compress.c +304 -0
  353. data/vendor/FreeImage/Source/LibTIFF4/tif_config.h +97 -0
  354. data/vendor/FreeImage/Source/LibTIFF4/tif_config.vc.h +74 -0
  355. data/vendor/FreeImage/Source/LibTIFF4/tif_config.wince.h +71 -0
  356. data/vendor/FreeImage/Source/LibTIFF4/tif_dir.c +1700 -0
  357. data/vendor/FreeImage/Source/LibTIFF4/tif_dir.h +308 -0
  358. data/vendor/FreeImage/Source/LibTIFF4/tif_dirinfo.c +959 -0
  359. data/vendor/FreeImage/Source/LibTIFF4/tif_dirread.c +5640 -0
  360. data/vendor/FreeImage/Source/LibTIFF4/tif_dirwrite.c +2910 -0
  361. data/vendor/FreeImage/Source/LibTIFF4/tif_dumpmode.c +143 -0
  362. data/vendor/FreeImage/Source/LibTIFF4/tif_error.c +80 -0
  363. data/vendor/FreeImage/Source/LibTIFF4/tif_extension.c +118 -0
  364. data/vendor/FreeImage/Source/LibTIFF4/tif_fax3.c +1595 -0
  365. data/vendor/FreeImage/Source/LibTIFF4/tif_fax3.h +538 -0
  366. data/vendor/FreeImage/Source/LibTIFF4/tif_fax3sm.c +1260 -0
  367. data/vendor/FreeImage/Source/LibTIFF4/tif_flush.c +118 -0
  368. data/vendor/FreeImage/Source/LibTIFF4/tif_getimage.c +2890 -0
  369. data/vendor/FreeImage/Source/LibTIFF4/tif_jbig.c +213 -0
  370. data/vendor/FreeImage/Source/LibTIFF4/tif_jpeg.c +2354 -0
  371. data/vendor/FreeImage/Source/LibTIFF4/tif_jpeg_12.c +65 -0
  372. data/vendor/FreeImage/Source/LibTIFF4/tif_luv.c +1683 -0
  373. data/vendor/FreeImage/Source/LibTIFF4/tif_lzma.c +495 -0
  374. data/vendor/FreeImage/Source/LibTIFF4/tif_lzw.c +1169 -0
  375. data/vendor/FreeImage/Source/LibTIFF4/tif_next.c +181 -0
  376. data/vendor/FreeImage/Source/LibTIFF4/tif_ojpeg.c +2501 -0
  377. data/vendor/FreeImage/Source/LibTIFF4/tif_open.c +725 -0
  378. data/vendor/FreeImage/Source/LibTIFF4/tif_packbits.c +300 -0
  379. data/vendor/FreeImage/Source/LibTIFF4/tif_pixarlog.c +1442 -0
  380. data/vendor/FreeImage/Source/LibTIFF4/tif_predict.c +764 -0
  381. data/vendor/FreeImage/Source/LibTIFF4/tif_predict.h +77 -0
  382. data/vendor/FreeImage/Source/LibTIFF4/tif_print.c +716 -0
  383. data/vendor/FreeImage/Source/LibTIFF4/tif_read.c +1086 -0
  384. data/vendor/FreeImage/Source/LibTIFF4/tif_strip.c +383 -0
  385. data/vendor/FreeImage/Source/LibTIFF4/tif_swab.c +310 -0
  386. data/vendor/FreeImage/Source/LibTIFF4/tif_thunder.c +207 -0
  387. data/vendor/FreeImage/Source/LibTIFF4/tif_tile.c +299 -0
  388. data/vendor/FreeImage/Source/LibTIFF4/tif_unix.c +325 -0
  389. data/vendor/FreeImage/Source/LibTIFF4/tif_version.c +40 -0
  390. data/vendor/FreeImage/Source/LibTIFF4/tif_vms.c +603 -0
  391. data/vendor/FreeImage/Source/LibTIFF4/tif_warning.c +81 -0
  392. data/vendor/FreeImage/Source/LibTIFF4/tif_win32.c +443 -0
  393. data/vendor/FreeImage/Source/LibTIFF4/tif_wince.c +293 -0
  394. data/vendor/FreeImage/Source/LibTIFF4/tif_write.c +771 -0
  395. data/vendor/FreeImage/Source/LibTIFF4/tif_zip.c +472 -0
  396. data/vendor/FreeImage/Source/LibTIFF4/tiff.h +681 -0
  397. data/vendor/FreeImage/Source/LibTIFF4/tiffconf.h +170 -0
  398. data/vendor/FreeImage/Source/LibTIFF4/tiffconf.vc.h +160 -0
  399. data/vendor/FreeImage/Source/LibTIFF4/tiffconf.wince.h +121 -0
  400. data/vendor/FreeImage/Source/LibTIFF4/tiffio.h +557 -0
  401. data/vendor/FreeImage/Source/LibTIFF4/tiffiop.h +367 -0
  402. data/vendor/FreeImage/Source/LibTIFF4/tiffvers.h +9 -0
  403. data/vendor/FreeImage/Source/LibTIFF4/uvcode.h +180 -0
  404. data/vendor/FreeImage/Source/LibWebP/src/dec/alphai.h +55 -0
  405. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.alpha.c +167 -0
  406. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.buffer.c +249 -0
  407. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.frame.c +827 -0
  408. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.idec.c +857 -0
  409. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.io.c +640 -0
  410. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.quant.c +110 -0
  411. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.tree.c +525 -0
  412. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.vp8.c +663 -0
  413. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.vp8l.c +1584 -0
  414. data/vendor/FreeImage/Source/LibWebP/src/dec/dec.webp.c +834 -0
  415. data/vendor/FreeImage/Source/LibWebP/src/dec/decode_vp8.h +185 -0
  416. data/vendor/FreeImage/Source/LibWebP/src/dec/vp8i.h +353 -0
  417. data/vendor/FreeImage/Source/LibWebP/src/dec/vp8li.h +136 -0
  418. data/vendor/FreeImage/Source/LibWebP/src/dec/webpi.h +120 -0
  419. data/vendor/FreeImage/Source/LibWebP/src/demux/demux.demux.c +957 -0
  420. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.alpha_processing.c +377 -0
  421. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.alpha_processing_mips_dsp_r2.c +139 -0
  422. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.alpha_processing_sse2.c +296 -0
  423. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.argb.c +68 -0
  424. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.argb_mips_dsp_r2.c +108 -0
  425. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.argb_sse2.c +62 -0
  426. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.cost.c +412 -0
  427. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.cost_mips32.c +154 -0
  428. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.cost_mips_dsp_r2.c +107 -0
  429. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.cost_sse2.c +121 -0
  430. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.cpu.c +138 -0
  431. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.dec.c +760 -0
  432. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.dec_clip_tables.c +366 -0
  433. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.dec_mips32.c +585 -0
  434. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.dec_mips_dsp_r2.c +992 -0
  435. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.dec_neon.c +1489 -0
  436. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.dec_sse2.c +1284 -0
  437. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.enc.c +788 -0
  438. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.enc_avx2.c +24 -0
  439. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.enc_mips32.c +670 -0
  440. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.enc_mips_dsp_r2.c +1510 -0
  441. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.enc_neon.c +932 -0
  442. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.enc_sse2.c +940 -0
  443. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.filters.c +240 -0
  444. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.filters_mips_dsp_r2.c +404 -0
  445. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.filters_sse2.c +349 -0
  446. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.h +434 -0
  447. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.lossless.c +1838 -0
  448. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.lossless_mips32.c +416 -0
  449. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.lossless_mips_dsp_r2.c +921 -0
  450. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.lossless_neon.c +357 -0
  451. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.lossless_sse2.c +535 -0
  452. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.rescaler.c +115 -0
  453. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.rescaler_mips32.c +192 -0
  454. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.rescaler_mips_dsp_r2.c +210 -0
  455. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.upsampling.c +252 -0
  456. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.upsampling_mips_dsp_r2.c +280 -0
  457. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.upsampling_neon.c +267 -0
  458. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.upsampling_sse2.c +214 -0
  459. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.yuv.c +166 -0
  460. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.yuv_mips32.c +100 -0
  461. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.yuv_mips_dsp_r2.c +131 -0
  462. data/vendor/FreeImage/Source/LibWebP/src/dsp/dsp.yuv_sse2.c +322 -0
  463. data/vendor/FreeImage/Source/LibWebP/src/dsp/lossless.h +313 -0
  464. data/vendor/FreeImage/Source/LibWebP/src/dsp/mips_macro.h +200 -0
  465. data/vendor/FreeImage/Source/LibWebP/src/dsp/neon.h +82 -0
  466. data/vendor/FreeImage/Source/LibWebP/src/dsp/yuv.h +321 -0
  467. data/vendor/FreeImage/Source/LibWebP/src/dsp/yuv_tables_sse2.h +536 -0
  468. data/vendor/FreeImage/Source/LibWebP/src/enc/backward_references.h +202 -0
  469. data/vendor/FreeImage/Source/LibWebP/src/enc/cost.h +69 -0
  470. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.alpha.c +440 -0
  471. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.analysis.c +501 -0
  472. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.backward_references.c +1076 -0
  473. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.config.c +163 -0
  474. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.cost.c +355 -0
  475. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.filter.c +296 -0
  476. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.frame.c +850 -0
  477. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.histogram.c +897 -0
  478. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.iterator.c +456 -0
  479. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.near_lossless.c +160 -0
  480. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.picture.c +290 -0
  481. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.picture_csp.c +1100 -0
  482. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.picture_psnr.c +150 -0
  483. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.picture_rescale.c +285 -0
  484. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.picture_tools.c +206 -0
  485. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.quant.c +1191 -0
  486. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.syntax.c +383 -0
  487. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.token.c +285 -0
  488. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.tree.c +504 -0
  489. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.vp8l.c +1437 -0
  490. data/vendor/FreeImage/Source/LibWebP/src/enc/enc.webpenc.c +379 -0
  491. data/vendor/FreeImage/Source/LibWebP/src/enc/histogram.h +114 -0
  492. data/vendor/FreeImage/Source/LibWebP/src/enc/vp8enci.h +551 -0
  493. data/vendor/FreeImage/Source/LibWebP/src/enc/vp8li.h +78 -0
  494. data/vendor/FreeImage/Source/LibWebP/src/mux/mux.anim_encode.c +1241 -0
  495. data/vendor/FreeImage/Source/LibWebP/src/mux/mux.muxedit.c +696 -0
  496. data/vendor/FreeImage/Source/LibWebP/src/mux/mux.muxinternal.c +551 -0
  497. data/vendor/FreeImage/Source/LibWebP/src/mux/mux.muxread.c +544 -0
  498. data/vendor/FreeImage/Source/LibWebP/src/mux/muxi.h +232 -0
  499. data/vendor/FreeImage/Source/LibWebP/src/utils/bit_reader.h +168 -0
  500. data/vendor/FreeImage/Source/LibWebP/src/utils/bit_reader_inl.h +172 -0
  501. data/vendor/FreeImage/Source/LibWebP/src/utils/bit_writer.h +120 -0
  502. data/vendor/FreeImage/Source/LibWebP/src/utils/color_cache.h +74 -0
  503. data/vendor/FreeImage/Source/LibWebP/src/utils/endian_inl.h +100 -0
  504. data/vendor/FreeImage/Source/LibWebP/src/utils/filters.h +32 -0
  505. data/vendor/FreeImage/Source/LibWebP/src/utils/huffman.h +67 -0
  506. data/vendor/FreeImage/Source/LibWebP/src/utils/huffman_encode.h +60 -0
  507. data/vendor/FreeImage/Source/LibWebP/src/utils/quant_levels.h +36 -0
  508. data/vendor/FreeImage/Source/LibWebP/src/utils/quant_levels_dec.h +35 -0
  509. data/vendor/FreeImage/Source/LibWebP/src/utils/random.h +63 -0
  510. data/vendor/FreeImage/Source/LibWebP/src/utils/rescaler.h +78 -0
  511. data/vendor/FreeImage/Source/LibWebP/src/utils/thread.h +93 -0
  512. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.bit_reader.c +208 -0
  513. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.bit_writer.c +308 -0
  514. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.color_cache.c +49 -0
  515. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.filters.c +76 -0
  516. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.h +121 -0
  517. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.huffman.c +205 -0
  518. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.huffman_encode.c +417 -0
  519. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.quant_levels.c +140 -0
  520. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.quant_levels_dec.c +279 -0
  521. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.random.c +43 -0
  522. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.rescaler.c +82 -0
  523. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.thread.c +309 -0
  524. data/vendor/FreeImage/Source/LibWebP/src/utils/utils.utils.c +211 -0
  525. data/vendor/FreeImage/Source/LibWebP/src/webp/decode.h +493 -0
  526. data/vendor/FreeImage/Source/LibWebP/src/webp/demux.h +224 -0
  527. data/vendor/FreeImage/Source/LibWebP/src/webp/encode.h +515 -0
  528. data/vendor/FreeImage/Source/LibWebP/src/webp/format_constants.h +88 -0
  529. data/vendor/FreeImage/Source/LibWebP/src/webp/mux.h +507 -0
  530. data/vendor/FreeImage/Source/LibWebP/src/webp/mux_types.h +97 -0
  531. data/vendor/FreeImage/Source/LibWebP/src/webp/types.h +52 -0
  532. data/vendor/FreeImage/Source/MapIntrospector.h +212 -0
  533. data/vendor/FreeImage/Source/Metadata/Exif.cpp +1253 -0
  534. data/vendor/FreeImage/Source/Metadata/FIRational.cpp +176 -0
  535. data/vendor/FreeImage/Source/Metadata/FIRational.h +108 -0
  536. data/vendor/FreeImage/Source/Metadata/FreeImageTag.cpp +353 -0
  537. data/vendor/FreeImage/Source/Metadata/FreeImageTag.h +500 -0
  538. data/vendor/FreeImage/Source/Metadata/IPTC.cpp +342 -0
  539. data/vendor/FreeImage/Source/Metadata/TagConversion.cpp +1094 -0
  540. data/vendor/FreeImage/Source/Metadata/TagLib.cpp +1618 -0
  541. data/vendor/FreeImage/Source/Metadata/XTIFF.cpp +766 -0
  542. data/vendor/FreeImage/Source/OpenEXR/Half/eLut.cpp +114 -0
  543. data/vendor/FreeImage/Source/OpenEXR/Half/eLut.h +71 -0
  544. data/vendor/FreeImage/Source/OpenEXR/Half/half.cpp +310 -0
  545. data/vendor/FreeImage/Source/OpenEXR/Half/half.h +757 -0
  546. data/vendor/FreeImage/Source/OpenEXR/Half/halfExport.h +27 -0
  547. data/vendor/FreeImage/Source/OpenEXR/Half/halfFunction.h +179 -0
  548. data/vendor/FreeImage/Source/OpenEXR/Half/halfLimits.h +102 -0
  549. data/vendor/FreeImage/Source/OpenEXR/Half/toFloat.cpp +164 -0
  550. data/vendor/FreeImage/Source/OpenEXR/Half/toFloat.h +16391 -0
  551. data/vendor/FreeImage/Source/OpenEXR/Iex/Iex.h +60 -0
  552. data/vendor/FreeImage/Source/OpenEXR/Iex/IexBaseExc.cpp +156 -0
  553. data/vendor/FreeImage/Source/OpenEXR/Iex/IexBaseExc.h +264 -0
  554. data/vendor/FreeImage/Source/OpenEXR/Iex/IexErrnoExc.h +208 -0
  555. data/vendor/FreeImage/Source/OpenEXR/Iex/IexExport.h +51 -0
  556. data/vendor/FreeImage/Source/OpenEXR/Iex/IexForward.h +229 -0
  557. data/vendor/FreeImage/Source/OpenEXR/Iex/IexMacros.h +170 -0
  558. data/vendor/FreeImage/Source/OpenEXR/Iex/IexMathExc.h +57 -0
  559. data/vendor/FreeImage/Source/OpenEXR/Iex/IexNamespace.h +112 -0
  560. data/vendor/FreeImage/Source/OpenEXR/Iex/IexThrowErrnoExc.cpp +873 -0
  561. data/vendor/FreeImage/Source/OpenEXR/Iex/IexThrowErrnoExc.h +97 -0
  562. data/vendor/FreeImage/Source/OpenEXR/IexMath/IexMathFloatExc.cpp +113 -0
  563. data/vendor/FreeImage/Source/OpenEXR/IexMath/IexMathFloatExc.h +146 -0
  564. data/vendor/FreeImage/Source/OpenEXR/IexMath/IexMathFpu.cpp +530 -0
  565. data/vendor/FreeImage/Source/OpenEXR/IexMath/IexMathFpu.h +91 -0
  566. data/vendor/FreeImage/Source/OpenEXR/IexMath/IexMathIeeeExc.h +62 -0
  567. data/vendor/FreeImage/Source/OpenEXR/IlmBaseConfig.h +61 -0
  568. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfAcesFile.cpp +633 -0
  569. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfAcesFile.h +324 -0
  570. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfArray.h +285 -0
  571. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfAttribute.cpp +158 -0
  572. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfAttribute.h +407 -0
  573. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfAutoArray.h +95 -0
  574. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfB44Compressor.cpp +1072 -0
  575. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfB44Compressor.h +118 -0
  576. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfBoxAttribute.cpp +111 -0
  577. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfBoxAttribute.h +87 -0
  578. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCRgbaFile.cpp +1438 -0
  579. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCRgbaFile.h +555 -0
  580. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChannelList.cpp +322 -0
  581. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChannelList.h +436 -0
  582. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChannelListAttribute.cpp +150 -0
  583. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChannelListAttribute.h +74 -0
  584. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCheckedArithmetic.h +163 -0
  585. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChromaticities.cpp +151 -0
  586. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChromaticities.h +131 -0
  587. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChromaticitiesAttribute.cpp +87 -0
  588. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfChromaticitiesAttribute.h +73 -0
  589. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompositeDeepScanLine.cpp +591 -0
  590. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompositeDeepScanLine.h +142 -0
  591. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompression.h +84 -0
  592. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompressionAttribute.cpp +78 -0
  593. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompressionAttribute.h +64 -0
  594. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompressor.cpp +226 -0
  595. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfCompressor.h +265 -0
  596. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfConvert.cpp +143 -0
  597. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfConvert.h +107 -0
  598. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepCompositing.cpp +110 -0
  599. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepCompositing.h +132 -0
  600. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepFrameBuffer.cpp +230 -0
  601. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepFrameBuffer.h +339 -0
  602. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepImageState.h +96 -0
  603. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepImageStateAttribute.cpp +78 -0
  604. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepImageStateAttribute.h +68 -0
  605. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineInputFile.cpp +2025 -0
  606. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineInputFile.h +276 -0
  607. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineInputPart.cpp +149 -0
  608. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineInputPart.h +181 -0
  609. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineOutputFile.cpp +1552 -0
  610. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineOutputFile.h +244 -0
  611. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineOutputPart.cpp +107 -0
  612. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepScanLineOutputPart.h +168 -0
  613. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledInputFile.cpp +1979 -0
  614. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledInputFile.h +437 -0
  615. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledInputPart.cpp +273 -0
  616. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledInputPart.h +362 -0
  617. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledOutputFile.cpp +2055 -0
  618. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledOutputFile.h +475 -0
  619. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledOutputPart.cpp +250 -0
  620. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDeepTiledOutputPart.h +394 -0
  621. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDoubleAttribute.cpp +57 -0
  622. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDoubleAttribute.h +59 -0
  623. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDwaCompressor.cpp +3424 -0
  624. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDwaCompressor.h +210 -0
  625. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfDwaCompressorSimd.h +2145 -0
  626. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfEnvmap.cpp +335 -0
  627. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfEnvmap.h +336 -0
  628. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfEnvmapAttribute.cpp +76 -0
  629. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfEnvmapAttribute.h +68 -0
  630. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfExport.h +46 -0
  631. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFastHuf.cpp +768 -0
  632. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFastHuf.h +148 -0
  633. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFloatAttribute.cpp +57 -0
  634. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFloatAttribute.h +58 -0
  635. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFloatVectorAttribute.cpp +84 -0
  636. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFloatVectorAttribute.h +76 -0
  637. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfForward.h +127 -0
  638. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFrameBuffer.cpp +228 -0
  639. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFrameBuffer.h +386 -0
  640. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFramesPerSecond.cpp +76 -0
  641. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfFramesPerSecond.h +94 -0
  642. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfGenericInputFile.cpp +76 -0
  643. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfGenericInputFile.h +58 -0
  644. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfGenericOutputFile.cpp +112 -0
  645. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfGenericOutputFile.h +62 -0
  646. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfHeader.cpp +1283 -0
  647. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfHeader.h +699 -0
  648. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfHuf.cpp +1114 -0
  649. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfHuf.h +82 -0
  650. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfIO.cpp +110 -0
  651. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfIO.h +255 -0
  652. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputFile.cpp +895 -0
  653. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputFile.h +240 -0
  654. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputPart.cpp +114 -0
  655. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputPart.h +84 -0
  656. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputPartData.cpp +51 -0
  657. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputPartData.h +69 -0
  658. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInputStreamMutex.h +68 -0
  659. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfInt64.h +56 -0
  660. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfIntAttribute.cpp +57 -0
  661. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfIntAttribute.h +58 -0
  662. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfKeyCode.cpp +217 -0
  663. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfKeyCode.h +167 -0
  664. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfKeyCodeAttribute.cpp +99 -0
  665. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfKeyCodeAttribute.h +73 -0
  666. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfLineOrder.h +69 -0
  667. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfLineOrderAttribute.cpp +78 -0
  668. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfLineOrderAttribute.h +72 -0
  669. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfLut.cpp +178 -0
  670. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfLut.h +188 -0
  671. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMatrixAttribute.cpp +263 -0
  672. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMatrixAttribute.h +83 -0
  673. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMisc.cpp +1872 -0
  674. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMisc.h +466 -0
  675. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMultiPartInputFile.cpp +783 -0
  676. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMultiPartInputFile.h +128 -0
  677. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMultiPartOutputFile.cpp +519 -0
  678. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMultiPartOutputFile.h +118 -0
  679. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMultiView.cpp +435 -0
  680. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfMultiView.h +187 -0
  681. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfName.h +150 -0
  682. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfNamespace.h +115 -0
  683. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOpaqueAttribute.cpp +126 -0
  684. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOpaqueAttribute.h +110 -0
  685. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOptimizedPixelReading.h +646 -0
  686. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputFile.cpp +1378 -0
  687. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputFile.h +263 -0
  688. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputPart.cpp +105 -0
  689. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputPart.h +77 -0
  690. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputPartData.cpp +52 -0
  691. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputPartData.h +62 -0
  692. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfOutputStreamMutex.h +70 -0
  693. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPartHelper.h +262 -0
  694. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPartType.cpp +63 -0
  695. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPartType.h +62 -0
  696. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPixelType.h +67 -0
  697. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPizCompressor.cpp +667 -0
  698. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPizCompressor.h +117 -0
  699. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPreviewImage.cpp +104 -0
  700. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPreviewImage.h +135 -0
  701. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPreviewImageAttribute.cpp +103 -0
  702. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPreviewImageAttribute.h +70 -0
  703. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPxr24Compressor.cpp +553 -0
  704. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfPxr24Compressor.h +109 -0
  705. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRational.cpp +127 -0
  706. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRational.h +98 -0
  707. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRationalAttribute.cpp +74 -0
  708. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRationalAttribute.h +69 -0
  709. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRgba.h +109 -0
  710. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRgbaFile.cpp +1405 -0
  711. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRgbaFile.h +346 -0
  712. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRgbaYca.cpp +497 -0
  713. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRgbaYca.h +259 -0
  714. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRle.cpp +157 -0
  715. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRle.h +63 -0
  716. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRleCompressor.cpp +220 -0
  717. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfRleCompressor.h +80 -0
  718. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfScanLineInputFile.cpp +1702 -0
  719. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfScanLineInputFile.h +210 -0
  720. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfSimd.h +59 -0
  721. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStandardAttributes.cpp +125 -0
  722. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStandardAttributes.h +382 -0
  723. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStdIO.cpp +242 -0
  724. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStdIO.h +160 -0
  725. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStringAttribute.cpp +80 -0
  726. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStringAttribute.h +71 -0
  727. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStringVectorAttribute.cpp +100 -0
  728. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfStringVectorAttribute.h +74 -0
  729. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfSystemSpecific.cpp +129 -0
  730. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfSystemSpecific.h +172 -0
  731. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTestFile.cpp +216 -0
  732. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTestFile.h +97 -0
  733. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfThreading.cpp +62 -0
  734. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfThreading.h +95 -0
  735. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTileDescription.h +107 -0
  736. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTileDescriptionAttribute.cpp +86 -0
  737. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTileDescriptionAttribute.h +72 -0
  738. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTileOffsets.cpp +552 -0
  739. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTileOffsets.h +125 -0
  740. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledInputFile.cpp +1533 -0
  741. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledInputFile.h +401 -0
  742. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledInputPart.cpp +208 -0
  743. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledInputPart.h +100 -0
  744. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledMisc.cpp +389 -0
  745. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledMisc.h +106 -0
  746. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledOutputFile.cpp +1841 -0
  747. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledOutputFile.h +495 -0
  748. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledOutputPart.cpp +228 -0
  749. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledOutputPart.h +105 -0
  750. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledRgbaFile.cpp +1163 -0
  751. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTiledRgbaFile.h +482 -0
  752. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTimeCode.cpp +431 -0
  753. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTimeCode.h +242 -0
  754. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTimeCodeAttribute.cpp +79 -0
  755. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfTimeCodeAttribute.h +74 -0
  756. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfVecAttribute.cpp +217 -0
  757. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfVecAttribute.h +100 -0
  758. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfVersion.cpp +60 -0
  759. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfVersion.h +136 -0
  760. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfWav.cpp +391 -0
  761. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfWav.h +78 -0
  762. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfXdr.h +927 -0
  763. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfZip.cpp +196 -0
  764. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfZip.h +78 -0
  765. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfZipCompressor.cpp +127 -0
  766. data/vendor/FreeImage/Source/OpenEXR/IlmImf/ImfZipCompressor.h +89 -0
  767. data/vendor/FreeImage/Source/OpenEXR/IlmImf/b44ExpLogTable.cpp +136 -0
  768. data/vendor/FreeImage/Source/OpenEXR/IlmImf/b44ExpLogTable.h +16396 -0
  769. data/vendor/FreeImage/Source/OpenEXR/IlmImf/dwaLookups.cpp +573 -0
  770. data/vendor/FreeImage/Source/OpenEXR/IlmImf/dwaLookups.h +98334 -0
  771. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThread.cpp +80 -0
  772. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThread.h +143 -0
  773. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadExport.h +46 -0
  774. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadForward.h +52 -0
  775. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadMutex.cpp +59 -0
  776. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadMutex.h +160 -0
  777. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadMutexPosix.cpp +85 -0
  778. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadMutexWin32.cpp +79 -0
  779. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadNamespace.h +114 -0
  780. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadPool.cpp +483 -0
  781. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadPool.h +160 -0
  782. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadPosix.cpp +98 -0
  783. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadSemaphore.cpp +60 -0
  784. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadSemaphore.h +112 -0
  785. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadSemaphorePosix.cpp +106 -0
  786. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadSemaphorePosixCompat.cpp +155 -0
  787. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadSemaphoreWin32.cpp +153 -0
  788. data/vendor/FreeImage/Source/OpenEXR/IlmThread/IlmThreadWin32.cpp +100 -0
  789. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathBox.cpp +37 -0
  790. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathBox.h +849 -0
  791. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathBoxAlgo.h +1016 -0
  792. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathColor.h +736 -0
  793. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathColorAlgo.cpp +178 -0
  794. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathColorAlgo.h +257 -0
  795. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathEuler.h +926 -0
  796. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathExc.h +73 -0
  797. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathExport.h +46 -0
  798. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathForward.h +72 -0
  799. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathFrame.h +192 -0
  800. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathFrustum.h +741 -0
  801. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathFrustumTest.h +417 -0
  802. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathFun.cpp +181 -0
  803. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathFun.h +269 -0
  804. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathGL.h +166 -0
  805. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathGLU.h +54 -0
  806. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathHalfLimits.h +68 -0
  807. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathInt64.h +62 -0
  808. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathInterval.h +226 -0
  809. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathLimits.h +268 -0
  810. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathLine.h +185 -0
  811. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathLineAlgo.h +288 -0
  812. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathMath.h +208 -0
  813. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathMatrix.h +3441 -0
  814. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathMatrixAlgo.cpp +1252 -0
  815. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathMatrixAlgo.h +1425 -0
  816. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathNamespace.h +115 -0
  817. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathPlane.h +257 -0
  818. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathPlatform.h +112 -0
  819. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathQuat.h +964 -0
  820. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathRandom.cpp +194 -0
  821. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathRandom.h +401 -0
  822. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathRoots.h +219 -0
  823. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathShear.cpp +54 -0
  824. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathShear.h +656 -0
  825. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathSphere.h +177 -0
  826. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathVec.cpp +583 -0
  827. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathVec.h +2227 -0
  828. data/vendor/FreeImage/Source/OpenEXR/Imath/ImathVecAlgo.h +147 -0
  829. data/vendor/FreeImage/Source/OpenEXR/OpenEXRConfig.h +72 -0
  830. data/vendor/FreeImage/Source/Plugin.h +144 -0
  831. data/vendor/FreeImage/Source/Quantizers.h +354 -0
  832. data/vendor/FreeImage/Source/ToneMapping.h +44 -0
  833. data/vendor/FreeImage/Source/Utilities.h +516 -0
  834. data/vendor/FreeImage/Source/ZLib/adler32.c +179 -0
  835. data/vendor/FreeImage/Source/ZLib/compress.c +80 -0
  836. data/vendor/FreeImage/Source/ZLib/crc32.c +425 -0
  837. data/vendor/FreeImage/Source/ZLib/crc32.h +441 -0
  838. data/vendor/FreeImage/Source/ZLib/deflate.c +1967 -0
  839. data/vendor/FreeImage/Source/ZLib/deflate.h +346 -0
  840. data/vendor/FreeImage/Source/ZLib/gzclose.c +25 -0
  841. data/vendor/FreeImage/Source/ZLib/gzguts.h +209 -0
  842. data/vendor/FreeImage/Source/ZLib/gzlib.c +634 -0
  843. data/vendor/FreeImage/Source/ZLib/gzread.c +594 -0
  844. data/vendor/FreeImage/Source/ZLib/gzwrite.c +577 -0
  845. data/vendor/FreeImage/Source/ZLib/infback.c +640 -0
  846. data/vendor/FreeImage/Source/ZLib/inffast.c +340 -0
  847. data/vendor/FreeImage/Source/ZLib/inffast.h +11 -0
  848. data/vendor/FreeImage/Source/ZLib/inffixed.h +94 -0
  849. data/vendor/FreeImage/Source/ZLib/inflate.c +1512 -0
  850. data/vendor/FreeImage/Source/ZLib/inflate.h +122 -0
  851. data/vendor/FreeImage/Source/ZLib/inftrees.c +306 -0
  852. data/vendor/FreeImage/Source/ZLib/inftrees.h +62 -0
  853. data/vendor/FreeImage/Source/ZLib/trees.c +1226 -0
  854. data/vendor/FreeImage/Source/ZLib/trees.h +128 -0
  855. data/vendor/FreeImage/Source/ZLib/uncompr.c +59 -0
  856. data/vendor/FreeImage/Source/ZLib/zconf.h +511 -0
  857. data/vendor/FreeImage/Source/ZLib/zlib.h +1768 -0
  858. data/vendor/FreeImage/Source/ZLib/zutil.c +324 -0
  859. data/vendor/FreeImage/Source/ZLib/zutil.h +253 -0
  860. metadata +931 -0
@@ -0,0 +1,1284 @@
1
+ // Copyright 2011 Google Inc. All Rights Reserved.
2
+ //
3
+ // Use of this source code is governed by a BSD-style license
4
+ // that can be found in the COPYING file in the root of the source
5
+ // tree. An additional intellectual property rights grant can be found
6
+ // in the file PATENTS. All contributing project authors may
7
+ // be found in the AUTHORS file in the root of the source tree.
8
+ // -----------------------------------------------------------------------------
9
+ //
10
+ // SSE2 version of some decoding functions (idct, loop filtering).
11
+ //
12
+ // Author: somnath@google.com (Somnath Banerjee)
13
+ // cduvivier@google.com (Christian Duvivier)
14
+
15
+ #include "./dsp.h"
16
+
17
+ #if defined(WEBP_USE_SSE2)
18
+
19
+ // The 3-coeff sparse transform in SSE2 is not really faster than the plain-C
20
+ // one it seems => disable it by default. Uncomment the following to enable:
21
+ // #define USE_TRANSFORM_AC3
22
+
23
+ #include <emmintrin.h>
24
+ #include "../dec/vp8i.h"
25
+
26
+ //------------------------------------------------------------------------------
27
+ // Transforms (Paragraph 14.4)
28
+
29
+ static void Transform(const int16_t* in, uint8_t* dst, int do_two) {
30
+ // This implementation makes use of 16-bit fixed point versions of two
31
+ // multiply constants:
32
+ // K1 = sqrt(2) * cos (pi/8) ~= 85627 / 2^16
33
+ // K2 = sqrt(2) * sin (pi/8) ~= 35468 / 2^16
34
+ //
35
+ // To be able to use signed 16-bit integers, we use the following trick to
36
+ // have constants within range:
37
+ // - Associated constants are obtained by subtracting the 16-bit fixed point
38
+ // version of one:
39
+ // k = K - (1 << 16) => K = k + (1 << 16)
40
+ // K1 = 85267 => k1 = 20091
41
+ // K2 = 35468 => k2 = -30068
42
+ // - The multiplication of a variable by a constant become the sum of the
43
+ // variable and the multiplication of that variable by the associated
44
+ // constant:
45
+ // (x * K) >> 16 = (x * (k + (1 << 16))) >> 16 = ((x * k ) >> 16) + x
46
+ const __m128i k1 = _mm_set1_epi16(20091);
47
+ const __m128i k2 = _mm_set1_epi16(-30068);
48
+ __m128i T0, T1, T2, T3;
49
+
50
+ // Load and concatenate the transform coefficients (we'll do two transforms
51
+ // in parallel). In the case of only one transform, the second half of the
52
+ // vectors will just contain random value we'll never use nor store.
53
+ __m128i in0, in1, in2, in3;
54
+ {
55
+ in0 = _mm_loadl_epi64((const __m128i*)&in[0]);
56
+ in1 = _mm_loadl_epi64((const __m128i*)&in[4]);
57
+ in2 = _mm_loadl_epi64((const __m128i*)&in[8]);
58
+ in3 = _mm_loadl_epi64((const __m128i*)&in[12]);
59
+ // a00 a10 a20 a30 x x x x
60
+ // a01 a11 a21 a31 x x x x
61
+ // a02 a12 a22 a32 x x x x
62
+ // a03 a13 a23 a33 x x x x
63
+ if (do_two) {
64
+ const __m128i inB0 = _mm_loadl_epi64((const __m128i*)&in[16]);
65
+ const __m128i inB1 = _mm_loadl_epi64((const __m128i*)&in[20]);
66
+ const __m128i inB2 = _mm_loadl_epi64((const __m128i*)&in[24]);
67
+ const __m128i inB3 = _mm_loadl_epi64((const __m128i*)&in[28]);
68
+ in0 = _mm_unpacklo_epi64(in0, inB0);
69
+ in1 = _mm_unpacklo_epi64(in1, inB1);
70
+ in2 = _mm_unpacklo_epi64(in2, inB2);
71
+ in3 = _mm_unpacklo_epi64(in3, inB3);
72
+ // a00 a10 a20 a30 b00 b10 b20 b30
73
+ // a01 a11 a21 a31 b01 b11 b21 b31
74
+ // a02 a12 a22 a32 b02 b12 b22 b32
75
+ // a03 a13 a23 a33 b03 b13 b23 b33
76
+ }
77
+ }
78
+
79
+ // Vertical pass and subsequent transpose.
80
+ {
81
+ // First pass, c and d calculations are longer because of the "trick"
82
+ // multiplications.
83
+ const __m128i a = _mm_add_epi16(in0, in2);
84
+ const __m128i b = _mm_sub_epi16(in0, in2);
85
+ // c = MUL(in1, K2) - MUL(in3, K1) = MUL(in1, k2) - MUL(in3, k1) + in1 - in3
86
+ const __m128i c1 = _mm_mulhi_epi16(in1, k2);
87
+ const __m128i c2 = _mm_mulhi_epi16(in3, k1);
88
+ const __m128i c3 = _mm_sub_epi16(in1, in3);
89
+ const __m128i c4 = _mm_sub_epi16(c1, c2);
90
+ const __m128i c = _mm_add_epi16(c3, c4);
91
+ // d = MUL(in1, K1) + MUL(in3, K2) = MUL(in1, k1) + MUL(in3, k2) + in1 + in3
92
+ const __m128i d1 = _mm_mulhi_epi16(in1, k1);
93
+ const __m128i d2 = _mm_mulhi_epi16(in3, k2);
94
+ const __m128i d3 = _mm_add_epi16(in1, in3);
95
+ const __m128i d4 = _mm_add_epi16(d1, d2);
96
+ const __m128i d = _mm_add_epi16(d3, d4);
97
+
98
+ // Second pass.
99
+ const __m128i tmp0 = _mm_add_epi16(a, d);
100
+ const __m128i tmp1 = _mm_add_epi16(b, c);
101
+ const __m128i tmp2 = _mm_sub_epi16(b, c);
102
+ const __m128i tmp3 = _mm_sub_epi16(a, d);
103
+
104
+ // Transpose the two 4x4.
105
+ // a00 a01 a02 a03 b00 b01 b02 b03
106
+ // a10 a11 a12 a13 b10 b11 b12 b13
107
+ // a20 a21 a22 a23 b20 b21 b22 b23
108
+ // a30 a31 a32 a33 b30 b31 b32 b33
109
+ const __m128i transpose0_0 = _mm_unpacklo_epi16(tmp0, tmp1);
110
+ const __m128i transpose0_1 = _mm_unpacklo_epi16(tmp2, tmp3);
111
+ const __m128i transpose0_2 = _mm_unpackhi_epi16(tmp0, tmp1);
112
+ const __m128i transpose0_3 = _mm_unpackhi_epi16(tmp2, tmp3);
113
+ // a00 a10 a01 a11 a02 a12 a03 a13
114
+ // a20 a30 a21 a31 a22 a32 a23 a33
115
+ // b00 b10 b01 b11 b02 b12 b03 b13
116
+ // b20 b30 b21 b31 b22 b32 b23 b33
117
+ const __m128i transpose1_0 = _mm_unpacklo_epi32(transpose0_0, transpose0_1);
118
+ const __m128i transpose1_1 = _mm_unpacklo_epi32(transpose0_2, transpose0_3);
119
+ const __m128i transpose1_2 = _mm_unpackhi_epi32(transpose0_0, transpose0_1);
120
+ const __m128i transpose1_3 = _mm_unpackhi_epi32(transpose0_2, transpose0_3);
121
+ // a00 a10 a20 a30 a01 a11 a21 a31
122
+ // b00 b10 b20 b30 b01 b11 b21 b31
123
+ // a02 a12 a22 a32 a03 a13 a23 a33
124
+ // b02 b12 a22 b32 b03 b13 b23 b33
125
+ T0 = _mm_unpacklo_epi64(transpose1_0, transpose1_1);
126
+ T1 = _mm_unpackhi_epi64(transpose1_0, transpose1_1);
127
+ T2 = _mm_unpacklo_epi64(transpose1_2, transpose1_3);
128
+ T3 = _mm_unpackhi_epi64(transpose1_2, transpose1_3);
129
+ // a00 a10 a20 a30 b00 b10 b20 b30
130
+ // a01 a11 a21 a31 b01 b11 b21 b31
131
+ // a02 a12 a22 a32 b02 b12 b22 b32
132
+ // a03 a13 a23 a33 b03 b13 b23 b33
133
+ }
134
+
135
+ // Horizontal pass and subsequent transpose.
136
+ {
137
+ // First pass, c and d calculations are longer because of the "trick"
138
+ // multiplications.
139
+ const __m128i four = _mm_set1_epi16(4);
140
+ const __m128i dc = _mm_add_epi16(T0, four);
141
+ const __m128i a = _mm_add_epi16(dc, T2);
142
+ const __m128i b = _mm_sub_epi16(dc, T2);
143
+ // c = MUL(T1, K2) - MUL(T3, K1) = MUL(T1, k2) - MUL(T3, k1) + T1 - T3
144
+ const __m128i c1 = _mm_mulhi_epi16(T1, k2);
145
+ const __m128i c2 = _mm_mulhi_epi16(T3, k1);
146
+ const __m128i c3 = _mm_sub_epi16(T1, T3);
147
+ const __m128i c4 = _mm_sub_epi16(c1, c2);
148
+ const __m128i c = _mm_add_epi16(c3, c4);
149
+ // d = MUL(T1, K1) + MUL(T3, K2) = MUL(T1, k1) + MUL(T3, k2) + T1 + T3
150
+ const __m128i d1 = _mm_mulhi_epi16(T1, k1);
151
+ const __m128i d2 = _mm_mulhi_epi16(T3, k2);
152
+ const __m128i d3 = _mm_add_epi16(T1, T3);
153
+ const __m128i d4 = _mm_add_epi16(d1, d2);
154
+ const __m128i d = _mm_add_epi16(d3, d4);
155
+
156
+ // Second pass.
157
+ const __m128i tmp0 = _mm_add_epi16(a, d);
158
+ const __m128i tmp1 = _mm_add_epi16(b, c);
159
+ const __m128i tmp2 = _mm_sub_epi16(b, c);
160
+ const __m128i tmp3 = _mm_sub_epi16(a, d);
161
+ const __m128i shifted0 = _mm_srai_epi16(tmp0, 3);
162
+ const __m128i shifted1 = _mm_srai_epi16(tmp1, 3);
163
+ const __m128i shifted2 = _mm_srai_epi16(tmp2, 3);
164
+ const __m128i shifted3 = _mm_srai_epi16(tmp3, 3);
165
+
166
+ // Transpose the two 4x4.
167
+ // a00 a01 a02 a03 b00 b01 b02 b03
168
+ // a10 a11 a12 a13 b10 b11 b12 b13
169
+ // a20 a21 a22 a23 b20 b21 b22 b23
170
+ // a30 a31 a32 a33 b30 b31 b32 b33
171
+ const __m128i transpose0_0 = _mm_unpacklo_epi16(shifted0, shifted1);
172
+ const __m128i transpose0_1 = _mm_unpacklo_epi16(shifted2, shifted3);
173
+ const __m128i transpose0_2 = _mm_unpackhi_epi16(shifted0, shifted1);
174
+ const __m128i transpose0_3 = _mm_unpackhi_epi16(shifted2, shifted3);
175
+ // a00 a10 a01 a11 a02 a12 a03 a13
176
+ // a20 a30 a21 a31 a22 a32 a23 a33
177
+ // b00 b10 b01 b11 b02 b12 b03 b13
178
+ // b20 b30 b21 b31 b22 b32 b23 b33
179
+ const __m128i transpose1_0 = _mm_unpacklo_epi32(transpose0_0, transpose0_1);
180
+ const __m128i transpose1_1 = _mm_unpacklo_epi32(transpose0_2, transpose0_3);
181
+ const __m128i transpose1_2 = _mm_unpackhi_epi32(transpose0_0, transpose0_1);
182
+ const __m128i transpose1_3 = _mm_unpackhi_epi32(transpose0_2, transpose0_3);
183
+ // a00 a10 a20 a30 a01 a11 a21 a31
184
+ // b00 b10 b20 b30 b01 b11 b21 b31
185
+ // a02 a12 a22 a32 a03 a13 a23 a33
186
+ // b02 b12 a22 b32 b03 b13 b23 b33
187
+ T0 = _mm_unpacklo_epi64(transpose1_0, transpose1_1);
188
+ T1 = _mm_unpackhi_epi64(transpose1_0, transpose1_1);
189
+ T2 = _mm_unpacklo_epi64(transpose1_2, transpose1_3);
190
+ T3 = _mm_unpackhi_epi64(transpose1_2, transpose1_3);
191
+ // a00 a10 a20 a30 b00 b10 b20 b30
192
+ // a01 a11 a21 a31 b01 b11 b21 b31
193
+ // a02 a12 a22 a32 b02 b12 b22 b32
194
+ // a03 a13 a23 a33 b03 b13 b23 b33
195
+ }
196
+
197
+ // Add inverse transform to 'dst' and store.
198
+ {
199
+ const __m128i zero = _mm_setzero_si128();
200
+ // Load the reference(s).
201
+ __m128i dst0, dst1, dst2, dst3;
202
+ if (do_two) {
203
+ // Load eight bytes/pixels per line.
204
+ dst0 = _mm_loadl_epi64((__m128i*)(dst + 0 * BPS));
205
+ dst1 = _mm_loadl_epi64((__m128i*)(dst + 1 * BPS));
206
+ dst2 = _mm_loadl_epi64((__m128i*)(dst + 2 * BPS));
207
+ dst3 = _mm_loadl_epi64((__m128i*)(dst + 3 * BPS));
208
+ } else {
209
+ // Load four bytes/pixels per line.
210
+ dst0 = _mm_cvtsi32_si128(*(int*)(dst + 0 * BPS));
211
+ dst1 = _mm_cvtsi32_si128(*(int*)(dst + 1 * BPS));
212
+ dst2 = _mm_cvtsi32_si128(*(int*)(dst + 2 * BPS));
213
+ dst3 = _mm_cvtsi32_si128(*(int*)(dst + 3 * BPS));
214
+ }
215
+ // Convert to 16b.
216
+ dst0 = _mm_unpacklo_epi8(dst0, zero);
217
+ dst1 = _mm_unpacklo_epi8(dst1, zero);
218
+ dst2 = _mm_unpacklo_epi8(dst2, zero);
219
+ dst3 = _mm_unpacklo_epi8(dst3, zero);
220
+ // Add the inverse transform(s).
221
+ dst0 = _mm_add_epi16(dst0, T0);
222
+ dst1 = _mm_add_epi16(dst1, T1);
223
+ dst2 = _mm_add_epi16(dst2, T2);
224
+ dst3 = _mm_add_epi16(dst3, T3);
225
+ // Unsigned saturate to 8b.
226
+ dst0 = _mm_packus_epi16(dst0, dst0);
227
+ dst1 = _mm_packus_epi16(dst1, dst1);
228
+ dst2 = _mm_packus_epi16(dst2, dst2);
229
+ dst3 = _mm_packus_epi16(dst3, dst3);
230
+ // Store the results.
231
+ if (do_two) {
232
+ // Store eight bytes/pixels per line.
233
+ _mm_storel_epi64((__m128i*)(dst + 0 * BPS), dst0);
234
+ _mm_storel_epi64((__m128i*)(dst + 1 * BPS), dst1);
235
+ _mm_storel_epi64((__m128i*)(dst + 2 * BPS), dst2);
236
+ _mm_storel_epi64((__m128i*)(dst + 3 * BPS), dst3);
237
+ } else {
238
+ // Store four bytes/pixels per line.
239
+ *(int*)(dst + 0 * BPS) = _mm_cvtsi128_si32(dst0);
240
+ *(int*)(dst + 1 * BPS) = _mm_cvtsi128_si32(dst1);
241
+ *(int*)(dst + 2 * BPS) = _mm_cvtsi128_si32(dst2);
242
+ *(int*)(dst + 3 * BPS) = _mm_cvtsi128_si32(dst3);
243
+ }
244
+ }
245
+ }
246
+
247
+ #if defined(USE_TRANSFORM_AC3)
248
+ #define MUL(a, b) (((a) * (b)) >> 16)
249
+ static void TransformAC3(const int16_t* in, uint8_t* dst) {
250
+ static const int kC1 = 20091 + (1 << 16);
251
+ static const int kC2 = 35468;
252
+ const __m128i A = _mm_set1_epi16(in[0] + 4);
253
+ const __m128i c4 = _mm_set1_epi16(MUL(in[4], kC2));
254
+ const __m128i d4 = _mm_set1_epi16(MUL(in[4], kC1));
255
+ const int c1 = MUL(in[1], kC2);
256
+ const int d1 = MUL(in[1], kC1);
257
+ const __m128i CD = _mm_set_epi16(0, 0, 0, 0, -d1, -c1, c1, d1);
258
+ const __m128i B = _mm_adds_epi16(A, CD);
259
+ const __m128i m0 = _mm_adds_epi16(B, d4);
260
+ const __m128i m1 = _mm_adds_epi16(B, c4);
261
+ const __m128i m2 = _mm_subs_epi16(B, c4);
262
+ const __m128i m3 = _mm_subs_epi16(B, d4);
263
+ const __m128i zero = _mm_setzero_si128();
264
+ // Load the source pixels.
265
+ __m128i dst0 = _mm_cvtsi32_si128(*(int*)(dst + 0 * BPS));
266
+ __m128i dst1 = _mm_cvtsi32_si128(*(int*)(dst + 1 * BPS));
267
+ __m128i dst2 = _mm_cvtsi32_si128(*(int*)(dst + 2 * BPS));
268
+ __m128i dst3 = _mm_cvtsi32_si128(*(int*)(dst + 3 * BPS));
269
+ // Convert to 16b.
270
+ dst0 = _mm_unpacklo_epi8(dst0, zero);
271
+ dst1 = _mm_unpacklo_epi8(dst1, zero);
272
+ dst2 = _mm_unpacklo_epi8(dst2, zero);
273
+ dst3 = _mm_unpacklo_epi8(dst3, zero);
274
+ // Add the inverse transform.
275
+ dst0 = _mm_adds_epi16(dst0, _mm_srai_epi16(m0, 3));
276
+ dst1 = _mm_adds_epi16(dst1, _mm_srai_epi16(m1, 3));
277
+ dst2 = _mm_adds_epi16(dst2, _mm_srai_epi16(m2, 3));
278
+ dst3 = _mm_adds_epi16(dst3, _mm_srai_epi16(m3, 3));
279
+ // Unsigned saturate to 8b.
280
+ dst0 = _mm_packus_epi16(dst0, dst0);
281
+ dst1 = _mm_packus_epi16(dst1, dst1);
282
+ dst2 = _mm_packus_epi16(dst2, dst2);
283
+ dst3 = _mm_packus_epi16(dst3, dst3);
284
+ // Store the results.
285
+ *(int*)(dst + 0 * BPS) = _mm_cvtsi128_si32(dst0);
286
+ *(int*)(dst + 1 * BPS) = _mm_cvtsi128_si32(dst1);
287
+ *(int*)(dst + 2 * BPS) = _mm_cvtsi128_si32(dst2);
288
+ *(int*)(dst + 3 * BPS) = _mm_cvtsi128_si32(dst3);
289
+ }
290
+ #undef MUL
291
+ #endif // USE_TRANSFORM_AC3
292
+
293
+ //------------------------------------------------------------------------------
294
+ // Loop Filter (Paragraph 15)
295
+
296
+ // Compute abs(p - q) = subs(p - q) OR subs(q - p)
297
+ #define MM_ABS(p, q) _mm_or_si128( \
298
+ _mm_subs_epu8((q), (p)), \
299
+ _mm_subs_epu8((p), (q)))
300
+
301
+ // Shift each byte of "x" by 3 bits while preserving by the sign bit.
302
+ static WEBP_INLINE void SignedShift8b(__m128i* const x) {
303
+ const __m128i zero = _mm_setzero_si128();
304
+ const __m128i signs = _mm_cmpgt_epi8(zero, *x);
305
+ const __m128i lo_0 = _mm_unpacklo_epi8(*x, signs); // s8 -> s16 sign extend
306
+ const __m128i hi_0 = _mm_unpackhi_epi8(*x, signs);
307
+ const __m128i lo_1 = _mm_srai_epi16(lo_0, 3);
308
+ const __m128i hi_1 = _mm_srai_epi16(hi_0, 3);
309
+ *x = _mm_packs_epi16(lo_1, hi_1);
310
+ }
311
+
312
+ #define FLIP_SIGN_BIT2(a, b) { \
313
+ a = _mm_xor_si128(a, sign_bit); \
314
+ b = _mm_xor_si128(b, sign_bit); \
315
+ }
316
+
317
+ #define FLIP_SIGN_BIT4(a, b, c, d) { \
318
+ FLIP_SIGN_BIT2(a, b); \
319
+ FLIP_SIGN_BIT2(c, d); \
320
+ }
321
+
322
+ // input/output is uint8_t
323
+ static WEBP_INLINE void GetNotHEV(const __m128i* const p1,
324
+ const __m128i* const p0,
325
+ const __m128i* const q0,
326
+ const __m128i* const q1,
327
+ int hev_thresh, __m128i* const not_hev) {
328
+ const __m128i zero = _mm_setzero_si128();
329
+ const __m128i t_1 = MM_ABS(*p1, *p0);
330
+ const __m128i t_2 = MM_ABS(*q1, *q0);
331
+
332
+ const __m128i h = _mm_set1_epi8(hev_thresh);
333
+ const __m128i t_3 = _mm_subs_epu8(t_1, h); // abs(p1 - p0) - hev_tresh
334
+ const __m128i t_4 = _mm_subs_epu8(t_2, h); // abs(q1 - q0) - hev_tresh
335
+
336
+ *not_hev = _mm_or_si128(t_3, t_4);
337
+ *not_hev = _mm_cmpeq_epi8(*not_hev, zero); // not_hev <= t1 && not_hev <= t2
338
+ }
339
+
340
+ // input pixels are int8_t
341
+ static WEBP_INLINE void GetBaseDelta(const __m128i* const p1,
342
+ const __m128i* const p0,
343
+ const __m128i* const q0,
344
+ const __m128i* const q1,
345
+ __m128i* const delta) {
346
+ // beware of addition order, for saturation!
347
+ const __m128i p1_q1 = _mm_subs_epi8(*p1, *q1); // p1 - q1
348
+ const __m128i q0_p0 = _mm_subs_epi8(*q0, *p0); // q0 - p0
349
+ const __m128i s1 = _mm_adds_epi8(p1_q1, q0_p0); // p1 - q1 + 1 * (q0 - p0)
350
+ const __m128i s2 = _mm_adds_epi8(q0_p0, s1); // p1 - q1 + 2 * (q0 - p0)
351
+ const __m128i s3 = _mm_adds_epi8(q0_p0, s2); // p1 - q1 + 3 * (q0 - p0)
352
+ *delta = s3;
353
+ }
354
+
355
+ // input and output are int8_t
356
+ static WEBP_INLINE void DoSimpleFilter(__m128i* const p0, __m128i* const q0,
357
+ const __m128i* const fl) {
358
+ const __m128i k3 = _mm_set1_epi8(3);
359
+ const __m128i k4 = _mm_set1_epi8(4);
360
+ __m128i v3 = _mm_adds_epi8(*fl, k3);
361
+ __m128i v4 = _mm_adds_epi8(*fl, k4);
362
+
363
+ SignedShift8b(&v4); // v4 >> 3
364
+ SignedShift8b(&v3); // v3 >> 3
365
+ *q0 = _mm_subs_epi8(*q0, v4); // q0 -= v4
366
+ *p0 = _mm_adds_epi8(*p0, v3); // p0 += v3
367
+ }
368
+
369
+ // Updates values of 2 pixels at MB edge during complex filtering.
370
+ // Update operations:
371
+ // q = q - delta and p = p + delta; where delta = [(a_hi >> 7), (a_lo >> 7)]
372
+ // Pixels 'pi' and 'qi' are int8_t on input, uint8_t on output (sign flip).
373
+ static WEBP_INLINE void Update2Pixels(__m128i* const pi, __m128i* const qi,
374
+ const __m128i* const a0_lo,
375
+ const __m128i* const a0_hi) {
376
+ const __m128i a1_lo = _mm_srai_epi16(*a0_lo, 7);
377
+ const __m128i a1_hi = _mm_srai_epi16(*a0_hi, 7);
378
+ const __m128i delta = _mm_packs_epi16(a1_lo, a1_hi);
379
+ const __m128i sign_bit = _mm_set1_epi8(0x80);
380
+ *pi = _mm_adds_epi8(*pi, delta);
381
+ *qi = _mm_subs_epi8(*qi, delta);
382
+ FLIP_SIGN_BIT2(*pi, *qi);
383
+ }
384
+
385
+ // input pixels are uint8_t
386
+ static WEBP_INLINE void NeedsFilter(const __m128i* const p1,
387
+ const __m128i* const p0,
388
+ const __m128i* const q0,
389
+ const __m128i* const q1,
390
+ int thresh, __m128i* const mask) {
391
+ const __m128i m_thresh = _mm_set1_epi8(thresh);
392
+ const __m128i t1 = MM_ABS(*p1, *q1); // abs(p1 - q1)
393
+ const __m128i kFE = _mm_set1_epi8(0xFE);
394
+ const __m128i t2 = _mm_and_si128(t1, kFE); // set lsb of each byte to zero
395
+ const __m128i t3 = _mm_srli_epi16(t2, 1); // abs(p1 - q1) / 2
396
+
397
+ const __m128i t4 = MM_ABS(*p0, *q0); // abs(p0 - q0)
398
+ const __m128i t5 = _mm_adds_epu8(t4, t4); // abs(p0 - q0) * 2
399
+ const __m128i t6 = _mm_adds_epu8(t5, t3); // abs(p0-q0)*2 + abs(p1-q1)/2
400
+
401
+ const __m128i t7 = _mm_subs_epu8(t6, m_thresh); // mask <= m_thresh
402
+ *mask = _mm_cmpeq_epi8(t7, _mm_setzero_si128());
403
+ }
404
+
405
+ //------------------------------------------------------------------------------
406
+ // Edge filtering functions
407
+
408
+ // Applies filter on 2 pixels (p0 and q0)
409
+ static WEBP_INLINE void DoFilter2(__m128i* const p1, __m128i* const p0,
410
+ __m128i* const q0, __m128i* const q1,
411
+ int thresh) {
412
+ __m128i a, mask;
413
+ const __m128i sign_bit = _mm_set1_epi8(0x80);
414
+ // convert p1/q1 to int8_t (for GetBaseDelta)
415
+ const __m128i p1s = _mm_xor_si128(*p1, sign_bit);
416
+ const __m128i q1s = _mm_xor_si128(*q1, sign_bit);
417
+
418
+ NeedsFilter(p1, p0, q0, q1, thresh, &mask);
419
+
420
+ FLIP_SIGN_BIT2(*p0, *q0);
421
+ GetBaseDelta(&p1s, p0, q0, &q1s, &a);
422
+ a = _mm_and_si128(a, mask); // mask filter values we don't care about
423
+ DoSimpleFilter(p0, q0, &a);
424
+ FLIP_SIGN_BIT2(*p0, *q0);
425
+ }
426
+
427
+ // Applies filter on 4 pixels (p1, p0, q0 and q1)
428
+ static WEBP_INLINE void DoFilter4(__m128i* const p1, __m128i* const p0,
429
+ __m128i* const q0, __m128i* const q1,
430
+ const __m128i* const mask, int hev_thresh) {
431
+ const __m128i sign_bit = _mm_set1_epi8(0x80);
432
+ const __m128i k64 = _mm_set1_epi8(0x40);
433
+ const __m128i zero = _mm_setzero_si128();
434
+ __m128i not_hev;
435
+ __m128i t1, t2, t3;
436
+
437
+ // compute hev mask
438
+ GetNotHEV(p1, p0, q0, q1, hev_thresh, &not_hev);
439
+
440
+ // convert to signed values
441
+ FLIP_SIGN_BIT4(*p1, *p0, *q0, *q1);
442
+
443
+ t1 = _mm_subs_epi8(*p1, *q1); // p1 - q1
444
+ t1 = _mm_andnot_si128(not_hev, t1); // hev(p1 - q1)
445
+ t2 = _mm_subs_epi8(*q0, *p0); // q0 - p0
446
+ t1 = _mm_adds_epi8(t1, t2); // hev(p1 - q1) + 1 * (q0 - p0)
447
+ t1 = _mm_adds_epi8(t1, t2); // hev(p1 - q1) + 2 * (q0 - p0)
448
+ t1 = _mm_adds_epi8(t1, t2); // hev(p1 - q1) + 3 * (q0 - p0)
449
+ t1 = _mm_and_si128(t1, *mask); // mask filter values we don't care about
450
+
451
+ t2 = _mm_set1_epi8(3);
452
+ t3 = _mm_set1_epi8(4);
453
+ t2 = _mm_adds_epi8(t1, t2); // 3 * (q0 - p0) + (p1 - q1) + 3
454
+ t3 = _mm_adds_epi8(t1, t3); // 3 * (q0 - p0) + (p1 - q1) + 4
455
+ SignedShift8b(&t2); // (3 * (q0 - p0) + hev(p1 - q1) + 3) >> 3
456
+ SignedShift8b(&t3); // (3 * (q0 - p0) + hev(p1 - q1) + 4) >> 3
457
+ *p0 = _mm_adds_epi8(*p0, t2); // p0 += t2
458
+ *q0 = _mm_subs_epi8(*q0, t3); // q0 -= t3
459
+ FLIP_SIGN_BIT2(*p0, *q0);
460
+
461
+ // this is equivalent to signed (a + 1) >> 1 calculation
462
+ t2 = _mm_add_epi8(t3, sign_bit);
463
+ t3 = _mm_avg_epu8(t2, zero);
464
+ t3 = _mm_sub_epi8(t3, k64);
465
+
466
+ t3 = _mm_and_si128(not_hev, t3); // if !hev
467
+ *q1 = _mm_subs_epi8(*q1, t3); // q1 -= t3
468
+ *p1 = _mm_adds_epi8(*p1, t3); // p1 += t3
469
+ FLIP_SIGN_BIT2(*p1, *q1);
470
+ }
471
+
472
+ // Applies filter on 6 pixels (p2, p1, p0, q0, q1 and q2)
473
+ static WEBP_INLINE void DoFilter6(__m128i* const p2, __m128i* const p1,
474
+ __m128i* const p0, __m128i* const q0,
475
+ __m128i* const q1, __m128i* const q2,
476
+ const __m128i* const mask, int hev_thresh) {
477
+ const __m128i zero = _mm_setzero_si128();
478
+ const __m128i sign_bit = _mm_set1_epi8(0x80);
479
+ __m128i a, not_hev;
480
+
481
+ // compute hev mask
482
+ GetNotHEV(p1, p0, q0, q1, hev_thresh, &not_hev);
483
+
484
+ FLIP_SIGN_BIT4(*p1, *p0, *q0, *q1);
485
+ FLIP_SIGN_BIT2(*p2, *q2);
486
+ GetBaseDelta(p1, p0, q0, q1, &a);
487
+
488
+ { // do simple filter on pixels with hev
489
+ const __m128i m = _mm_andnot_si128(not_hev, *mask);
490
+ const __m128i f = _mm_and_si128(a, m);
491
+ DoSimpleFilter(p0, q0, &f);
492
+ }
493
+
494
+ { // do strong filter on pixels with not hev
495
+ const __m128i k9 = _mm_set1_epi16(0x0900);
496
+ const __m128i k63 = _mm_set1_epi16(63);
497
+
498
+ const __m128i m = _mm_and_si128(not_hev, *mask);
499
+ const __m128i f = _mm_and_si128(a, m);
500
+
501
+ const __m128i f_lo = _mm_unpacklo_epi8(zero, f);
502
+ const __m128i f_hi = _mm_unpackhi_epi8(zero, f);
503
+
504
+ const __m128i f9_lo = _mm_mulhi_epi16(f_lo, k9); // Filter (lo) * 9
505
+ const __m128i f9_hi = _mm_mulhi_epi16(f_hi, k9); // Filter (hi) * 9
506
+
507
+ const __m128i a2_lo = _mm_add_epi16(f9_lo, k63); // Filter * 9 + 63
508
+ const __m128i a2_hi = _mm_add_epi16(f9_hi, k63); // Filter * 9 + 63
509
+
510
+ const __m128i a1_lo = _mm_add_epi16(a2_lo, f9_lo); // Filter * 18 + 63
511
+ const __m128i a1_hi = _mm_add_epi16(a2_hi, f9_hi); // Filter * 18 + 63
512
+
513
+ const __m128i a0_lo = _mm_add_epi16(a1_lo, f9_lo); // Filter * 27 + 63
514
+ const __m128i a0_hi = _mm_add_epi16(a1_hi, f9_hi); // Filter * 27 + 63
515
+
516
+ Update2Pixels(p2, q2, &a2_lo, &a2_hi);
517
+ Update2Pixels(p1, q1, &a1_lo, &a1_hi);
518
+ Update2Pixels(p0, q0, &a0_lo, &a0_hi);
519
+ }
520
+ }
521
+
522
+ // reads 8 rows across a vertical edge.
523
+ //
524
+ // TODO(somnath): Investigate _mm_shuffle* also see if it can be broken into
525
+ // two Load4x4() to avoid code duplication.
526
+ static WEBP_INLINE void Load8x4(const uint8_t* const b, int stride,
527
+ __m128i* const p, __m128i* const q) {
528
+ __m128i t1, t2;
529
+
530
+ // Load 0th, 1st, 4th and 5th rows
531
+ __m128i r0 = _mm_cvtsi32_si128(*(const int*)&b[0 * stride]); // 03 02 01 00
532
+ __m128i r1 = _mm_cvtsi32_si128(*(const int*)&b[1 * stride]); // 13 12 11 10
533
+ __m128i r4 = _mm_cvtsi32_si128(*(const int*)&b[4 * stride]); // 43 42 41 40
534
+ __m128i r5 = _mm_cvtsi32_si128(*(const int*)&b[5 * stride]); // 53 52 51 50
535
+
536
+ r0 = _mm_unpacklo_epi32(r0, r4); // 43 42 41 40 03 02 01 00
537
+ r1 = _mm_unpacklo_epi32(r1, r5); // 53 52 51 50 13 12 11 10
538
+
539
+ // t1 = 53 43 52 42 51 41 50 40 13 03 12 02 11 01 10 00
540
+ t1 = _mm_unpacklo_epi8(r0, r1);
541
+
542
+ // Load 2nd, 3rd, 6th and 7th rows
543
+ r0 = _mm_cvtsi32_si128(*(const int*)&b[2 * stride]); // 23 22 21 22
544
+ r1 = _mm_cvtsi32_si128(*(const int*)&b[3 * stride]); // 33 32 31 30
545
+ r4 = _mm_cvtsi32_si128(*(const int*)&b[6 * stride]); // 63 62 61 60
546
+ r5 = _mm_cvtsi32_si128(*(const int*)&b[7 * stride]); // 73 72 71 70
547
+
548
+ r0 = _mm_unpacklo_epi32(r0, r4); // 63 62 61 60 23 22 21 20
549
+ r1 = _mm_unpacklo_epi32(r1, r5); // 73 72 71 70 33 32 31 30
550
+
551
+ // t2 = 73 63 72 62 71 61 70 60 33 23 32 22 31 21 30 20
552
+ t2 = _mm_unpacklo_epi8(r0, r1);
553
+
554
+ // t1 = 33 23 13 03 32 22 12 02 31 21 11 01 30 20 10 00
555
+ // t2 = 73 63 53 43 72 62 52 42 71 61 51 41 70 60 50 40
556
+ r0 = t1;
557
+ t1 = _mm_unpacklo_epi16(t1, t2);
558
+ t2 = _mm_unpackhi_epi16(r0, t2);
559
+
560
+ // *p = 71 61 51 41 31 21 11 01 70 60 50 40 30 20 10 00
561
+ // *q = 73 63 53 43 33 23 13 03 72 62 52 42 32 22 12 02
562
+ *p = _mm_unpacklo_epi32(t1, t2);
563
+ *q = _mm_unpackhi_epi32(t1, t2);
564
+ }
565
+
566
+ static WEBP_INLINE void Load16x4(const uint8_t* const r0,
567
+ const uint8_t* const r8,
568
+ int stride,
569
+ __m128i* const p1, __m128i* const p0,
570
+ __m128i* const q0, __m128i* const q1) {
571
+ __m128i t1, t2;
572
+ // Assume the pixels around the edge (|) are numbered as follows
573
+ // 00 01 | 02 03
574
+ // 10 11 | 12 13
575
+ // ... | ...
576
+ // e0 e1 | e2 e3
577
+ // f0 f1 | f2 f3
578
+ //
579
+ // r0 is pointing to the 0th row (00)
580
+ // r8 is pointing to the 8th row (80)
581
+
582
+ // Load
583
+ // p1 = 71 61 51 41 31 21 11 01 70 60 50 40 30 20 10 00
584
+ // q0 = 73 63 53 43 33 23 13 03 72 62 52 42 32 22 12 02
585
+ // p0 = f1 e1 d1 c1 b1 a1 91 81 f0 e0 d0 c0 b0 a0 90 80
586
+ // q1 = f3 e3 d3 c3 b3 a3 93 83 f2 e2 d2 c2 b2 a2 92 82
587
+ Load8x4(r0, stride, p1, q0);
588
+ Load8x4(r8, stride, p0, q1);
589
+
590
+ t1 = *p1;
591
+ t2 = *q0;
592
+ // p1 = f0 e0 d0 c0 b0 a0 90 80 70 60 50 40 30 20 10 00
593
+ // p0 = f1 e1 d1 c1 b1 a1 91 81 71 61 51 41 31 21 11 01
594
+ // q0 = f2 e2 d2 c2 b2 a2 92 82 72 62 52 42 32 22 12 02
595
+ // q1 = f3 e3 d3 c3 b3 a3 93 83 73 63 53 43 33 23 13 03
596
+ *p1 = _mm_unpacklo_epi64(t1, *p0);
597
+ *p0 = _mm_unpackhi_epi64(t1, *p0);
598
+ *q0 = _mm_unpacklo_epi64(t2, *q1);
599
+ *q1 = _mm_unpackhi_epi64(t2, *q1);
600
+ }
601
+
602
+ static WEBP_INLINE void Store4x4(__m128i* const x, uint8_t* dst, int stride) {
603
+ int i;
604
+ for (i = 0; i < 4; ++i, dst += stride) {
605
+ *((int32_t*)dst) = _mm_cvtsi128_si32(*x);
606
+ *x = _mm_srli_si128(*x, 4);
607
+ }
608
+ }
609
+
610
+ // Transpose back and store
611
+ static WEBP_INLINE void Store16x4(const __m128i* const p1,
612
+ const __m128i* const p0,
613
+ const __m128i* const q0,
614
+ const __m128i* const q1,
615
+ uint8_t* r0, uint8_t* r8,
616
+ int stride) {
617
+ __m128i t1, p1_s, p0_s, q0_s, q1_s;
618
+
619
+ // p0 = 71 70 61 60 51 50 41 40 31 30 21 20 11 10 01 00
620
+ // p1 = f1 f0 e1 e0 d1 d0 c1 c0 b1 b0 a1 a0 91 90 81 80
621
+ t1 = *p0;
622
+ p0_s = _mm_unpacklo_epi8(*p1, t1);
623
+ p1_s = _mm_unpackhi_epi8(*p1, t1);
624
+
625
+ // q0 = 73 72 63 62 53 52 43 42 33 32 23 22 13 12 03 02
626
+ // q1 = f3 f2 e3 e2 d3 d2 c3 c2 b3 b2 a3 a2 93 92 83 82
627
+ t1 = *q0;
628
+ q0_s = _mm_unpacklo_epi8(t1, *q1);
629
+ q1_s = _mm_unpackhi_epi8(t1, *q1);
630
+
631
+ // p0 = 33 32 31 30 23 22 21 20 13 12 11 10 03 02 01 00
632
+ // q0 = 73 72 71 70 63 62 61 60 53 52 51 50 43 42 41 40
633
+ t1 = p0_s;
634
+ p0_s = _mm_unpacklo_epi16(t1, q0_s);
635
+ q0_s = _mm_unpackhi_epi16(t1, q0_s);
636
+
637
+ // p1 = b3 b2 b1 b0 a3 a2 a1 a0 93 92 91 90 83 82 81 80
638
+ // q1 = f3 f2 f1 f0 e3 e2 e1 e0 d3 d2 d1 d0 c3 c2 c1 c0
639
+ t1 = p1_s;
640
+ p1_s = _mm_unpacklo_epi16(t1, q1_s);
641
+ q1_s = _mm_unpackhi_epi16(t1, q1_s);
642
+
643
+ Store4x4(&p0_s, r0, stride);
644
+ r0 += 4 * stride;
645
+ Store4x4(&q0_s, r0, stride);
646
+
647
+ Store4x4(&p1_s, r8, stride);
648
+ r8 += 4 * stride;
649
+ Store4x4(&q1_s, r8, stride);
650
+ }
651
+
652
+ //------------------------------------------------------------------------------
653
+ // Simple In-loop filtering (Paragraph 15.2)
654
+
655
+ static void SimpleVFilter16(uint8_t* p, int stride, int thresh) {
656
+ // Load
657
+ __m128i p1 = _mm_loadu_si128((__m128i*)&p[-2 * stride]);
658
+ __m128i p0 = _mm_loadu_si128((__m128i*)&p[-stride]);
659
+ __m128i q0 = _mm_loadu_si128((__m128i*)&p[0]);
660
+ __m128i q1 = _mm_loadu_si128((__m128i*)&p[stride]);
661
+
662
+ DoFilter2(&p1, &p0, &q0, &q1, thresh);
663
+
664
+ // Store
665
+ _mm_storeu_si128((__m128i*)&p[-stride], p0);
666
+ _mm_storeu_si128((__m128i*)&p[0], q0);
667
+ }
668
+
669
+ static void SimpleHFilter16(uint8_t* p, int stride, int thresh) {
670
+ __m128i p1, p0, q0, q1;
671
+
672
+ p -= 2; // beginning of p1
673
+
674
+ Load16x4(p, p + 8 * stride, stride, &p1, &p0, &q0, &q1);
675
+ DoFilter2(&p1, &p0, &q0, &q1, thresh);
676
+ Store16x4(&p1, &p0, &q0, &q1, p, p + 8 * stride, stride);
677
+ }
678
+
679
+ static void SimpleVFilter16i(uint8_t* p, int stride, int thresh) {
680
+ int k;
681
+ for (k = 3; k > 0; --k) {
682
+ p += 4 * stride;
683
+ SimpleVFilter16(p, stride, thresh);
684
+ }
685
+ }
686
+
687
+ static void SimpleHFilter16i(uint8_t* p, int stride, int thresh) {
688
+ int k;
689
+ for (k = 3; k > 0; --k) {
690
+ p += 4;
691
+ SimpleHFilter16(p, stride, thresh);
692
+ }
693
+ }
694
+
695
+ //------------------------------------------------------------------------------
696
+ // Complex In-loop filtering (Paragraph 15.3)
697
+
698
+ #define MAX_DIFF1(p3, p2, p1, p0, m) do { \
699
+ m = MM_ABS(p1, p0); \
700
+ m = _mm_max_epu8(m, MM_ABS(p3, p2)); \
701
+ m = _mm_max_epu8(m, MM_ABS(p2, p1)); \
702
+ } while (0)
703
+
704
+ #define MAX_DIFF2(p3, p2, p1, p0, m) do { \
705
+ m = _mm_max_epu8(m, MM_ABS(p1, p0)); \
706
+ m = _mm_max_epu8(m, MM_ABS(p3, p2)); \
707
+ m = _mm_max_epu8(m, MM_ABS(p2, p1)); \
708
+ } while (0)
709
+
710
+ #define LOAD_H_EDGES4(p, stride, e1, e2, e3, e4) { \
711
+ e1 = _mm_loadu_si128((__m128i*)&(p)[0 * stride]); \
712
+ e2 = _mm_loadu_si128((__m128i*)&(p)[1 * stride]); \
713
+ e3 = _mm_loadu_si128((__m128i*)&(p)[2 * stride]); \
714
+ e4 = _mm_loadu_si128((__m128i*)&(p)[3 * stride]); \
715
+ }
716
+
717
+ #define LOADUV_H_EDGE(p, u, v, stride) do { \
718
+ const __m128i U = _mm_loadl_epi64((__m128i*)&(u)[(stride)]); \
719
+ const __m128i V = _mm_loadl_epi64((__m128i*)&(v)[(stride)]); \
720
+ p = _mm_unpacklo_epi64(U, V); \
721
+ } while (0)
722
+
723
+ #define LOADUV_H_EDGES4(u, v, stride, e1, e2, e3, e4) { \
724
+ LOADUV_H_EDGE(e1, u, v, 0 * stride); \
725
+ LOADUV_H_EDGE(e2, u, v, 1 * stride); \
726
+ LOADUV_H_EDGE(e3, u, v, 2 * stride); \
727
+ LOADUV_H_EDGE(e4, u, v, 3 * stride); \
728
+ }
729
+
730
+ #define STOREUV(p, u, v, stride) { \
731
+ _mm_storel_epi64((__m128i*)&u[(stride)], p); \
732
+ p = _mm_srli_si128(p, 8); \
733
+ _mm_storel_epi64((__m128i*)&v[(stride)], p); \
734
+ }
735
+
736
+ static WEBP_INLINE void ComplexMask(const __m128i* const p1,
737
+ const __m128i* const p0,
738
+ const __m128i* const q0,
739
+ const __m128i* const q1,
740
+ int thresh, int ithresh,
741
+ __m128i* const mask) {
742
+ const __m128i it = _mm_set1_epi8(ithresh);
743
+ const __m128i diff = _mm_subs_epu8(*mask, it);
744
+ const __m128i thresh_mask = _mm_cmpeq_epi8(diff, _mm_setzero_si128());
745
+ __m128i filter_mask;
746
+ NeedsFilter(p1, p0, q0, q1, thresh, &filter_mask);
747
+ *mask = _mm_and_si128(thresh_mask, filter_mask);
748
+ }
749
+
750
+ // on macroblock edges
751
+ static void VFilter16(uint8_t* p, int stride,
752
+ int thresh, int ithresh, int hev_thresh) {
753
+ __m128i t1;
754
+ __m128i mask;
755
+ __m128i p2, p1, p0, q0, q1, q2;
756
+
757
+ // Load p3, p2, p1, p0
758
+ LOAD_H_EDGES4(p - 4 * stride, stride, t1, p2, p1, p0);
759
+ MAX_DIFF1(t1, p2, p1, p0, mask);
760
+
761
+ // Load q0, q1, q2, q3
762
+ LOAD_H_EDGES4(p, stride, q0, q1, q2, t1);
763
+ MAX_DIFF2(t1, q2, q1, q0, mask);
764
+
765
+ ComplexMask(&p1, &p0, &q0, &q1, thresh, ithresh, &mask);
766
+ DoFilter6(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh);
767
+
768
+ // Store
769
+ _mm_storeu_si128((__m128i*)&p[-3 * stride], p2);
770
+ _mm_storeu_si128((__m128i*)&p[-2 * stride], p1);
771
+ _mm_storeu_si128((__m128i*)&p[-1 * stride], p0);
772
+ _mm_storeu_si128((__m128i*)&p[+0 * stride], q0);
773
+ _mm_storeu_si128((__m128i*)&p[+1 * stride], q1);
774
+ _mm_storeu_si128((__m128i*)&p[+2 * stride], q2);
775
+ }
776
+
777
+ static void HFilter16(uint8_t* p, int stride,
778
+ int thresh, int ithresh, int hev_thresh) {
779
+ __m128i mask;
780
+ __m128i p3, p2, p1, p0, q0, q1, q2, q3;
781
+
782
+ uint8_t* const b = p - 4;
783
+ Load16x4(b, b + 8 * stride, stride, &p3, &p2, &p1, &p0); // p3, p2, p1, p0
784
+ MAX_DIFF1(p3, p2, p1, p0, mask);
785
+
786
+ Load16x4(p, p + 8 * stride, stride, &q0, &q1, &q2, &q3); // q0, q1, q2, q3
787
+ MAX_DIFF2(q3, q2, q1, q0, mask);
788
+
789
+ ComplexMask(&p1, &p0, &q0, &q1, thresh, ithresh, &mask);
790
+ DoFilter6(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh);
791
+
792
+ Store16x4(&p3, &p2, &p1, &p0, b, b + 8 * stride, stride);
793
+ Store16x4(&q0, &q1, &q2, &q3, p, p + 8 * stride, stride);
794
+ }
795
+
796
+ // on three inner edges
797
+ static void VFilter16i(uint8_t* p, int stride,
798
+ int thresh, int ithresh, int hev_thresh) {
799
+ int k;
800
+ __m128i p3, p2, p1, p0; // loop invariants
801
+
802
+ LOAD_H_EDGES4(p, stride, p3, p2, p1, p0); // prologue
803
+
804
+ for (k = 3; k > 0; --k) {
805
+ __m128i mask, tmp1, tmp2;
806
+ uint8_t* const b = p + 2 * stride; // beginning of p1
807
+ p += 4 * stride;
808
+
809
+ MAX_DIFF1(p3, p2, p1, p0, mask); // compute partial mask
810
+ LOAD_H_EDGES4(p, stride, p3, p2, tmp1, tmp2);
811
+ MAX_DIFF2(p3, p2, tmp1, tmp2, mask);
812
+
813
+ // p3 and p2 are not just temporary variables here: they will be
814
+ // re-used for next span. And q2/q3 will become p1/p0 accordingly.
815
+ ComplexMask(&p1, &p0, &p3, &p2, thresh, ithresh, &mask);
816
+ DoFilter4(&p1, &p0, &p3, &p2, &mask, hev_thresh);
817
+
818
+ // Store
819
+ _mm_storeu_si128((__m128i*)&b[0 * stride], p1);
820
+ _mm_storeu_si128((__m128i*)&b[1 * stride], p0);
821
+ _mm_storeu_si128((__m128i*)&b[2 * stride], p3);
822
+ _mm_storeu_si128((__m128i*)&b[3 * stride], p2);
823
+
824
+ // rotate samples
825
+ p1 = tmp1;
826
+ p0 = tmp2;
827
+ }
828
+ }
829
+
830
+ static void HFilter16i(uint8_t* p, int stride,
831
+ int thresh, int ithresh, int hev_thresh) {
832
+ int k;
833
+ __m128i p3, p2, p1, p0; // loop invariants
834
+
835
+ Load16x4(p, p + 8 * stride, stride, &p3, &p2, &p1, &p0); // prologue
836
+
837
+ for (k = 3; k > 0; --k) {
838
+ __m128i mask, tmp1, tmp2;
839
+ uint8_t* const b = p + 2; // beginning of p1
840
+
841
+ p += 4; // beginning of q0 (and next span)
842
+
843
+ MAX_DIFF1(p3, p2, p1, p0, mask); // compute partial mask
844
+ Load16x4(p, p + 8 * stride, stride, &p3, &p2, &tmp1, &tmp2);
845
+ MAX_DIFF2(p3, p2, tmp1, tmp2, mask);
846
+
847
+ ComplexMask(&p1, &p0, &p3, &p2, thresh, ithresh, &mask);
848
+ DoFilter4(&p1, &p0, &p3, &p2, &mask, hev_thresh);
849
+
850
+ Store16x4(&p1, &p0, &p3, &p2, b, b + 8 * stride, stride);
851
+
852
+ // rotate samples
853
+ p1 = tmp1;
854
+ p0 = tmp2;
855
+ }
856
+ }
857
+
858
+ // 8-pixels wide variant, for chroma filtering
859
+ static void VFilter8(uint8_t* u, uint8_t* v, int stride,
860
+ int thresh, int ithresh, int hev_thresh) {
861
+ __m128i mask;
862
+ __m128i t1, p2, p1, p0, q0, q1, q2;
863
+
864
+ // Load p3, p2, p1, p0
865
+ LOADUV_H_EDGES4(u - 4 * stride, v - 4 * stride, stride, t1, p2, p1, p0);
866
+ MAX_DIFF1(t1, p2, p1, p0, mask);
867
+
868
+ // Load q0, q1, q2, q3
869
+ LOADUV_H_EDGES4(u, v, stride, q0, q1, q2, t1);
870
+ MAX_DIFF2(t1, q2, q1, q0, mask);
871
+
872
+ ComplexMask(&p1, &p0, &q0, &q1, thresh, ithresh, &mask);
873
+ DoFilter6(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh);
874
+
875
+ // Store
876
+ STOREUV(p2, u, v, -3 * stride);
877
+ STOREUV(p1, u, v, -2 * stride);
878
+ STOREUV(p0, u, v, -1 * stride);
879
+ STOREUV(q0, u, v, 0 * stride);
880
+ STOREUV(q1, u, v, 1 * stride);
881
+ STOREUV(q2, u, v, 2 * stride);
882
+ }
883
+
884
+ static void HFilter8(uint8_t* u, uint8_t* v, int stride,
885
+ int thresh, int ithresh, int hev_thresh) {
886
+ __m128i mask;
887
+ __m128i p3, p2, p1, p0, q0, q1, q2, q3;
888
+
889
+ uint8_t* const tu = u - 4;
890
+ uint8_t* const tv = v - 4;
891
+ Load16x4(tu, tv, stride, &p3, &p2, &p1, &p0); // p3, p2, p1, p0
892
+ MAX_DIFF1(p3, p2, p1, p0, mask);
893
+
894
+ Load16x4(u, v, stride, &q0, &q1, &q2, &q3); // q0, q1, q2, q3
895
+ MAX_DIFF2(q3, q2, q1, q0, mask);
896
+
897
+ ComplexMask(&p1, &p0, &q0, &q1, thresh, ithresh, &mask);
898
+ DoFilter6(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh);
899
+
900
+ Store16x4(&p3, &p2, &p1, &p0, tu, tv, stride);
901
+ Store16x4(&q0, &q1, &q2, &q3, u, v, stride);
902
+ }
903
+
904
+ static void VFilter8i(uint8_t* u, uint8_t* v, int stride,
905
+ int thresh, int ithresh, int hev_thresh) {
906
+ __m128i mask;
907
+ __m128i t1, t2, p1, p0, q0, q1;
908
+
909
+ // Load p3, p2, p1, p0
910
+ LOADUV_H_EDGES4(u, v, stride, t2, t1, p1, p0);
911
+ MAX_DIFF1(t2, t1, p1, p0, mask);
912
+
913
+ u += 4 * stride;
914
+ v += 4 * stride;
915
+
916
+ // Load q0, q1, q2, q3
917
+ LOADUV_H_EDGES4(u, v, stride, q0, q1, t1, t2);
918
+ MAX_DIFF2(t2, t1, q1, q0, mask);
919
+
920
+ ComplexMask(&p1, &p0, &q0, &q1, thresh, ithresh, &mask);
921
+ DoFilter4(&p1, &p0, &q0, &q1, &mask, hev_thresh);
922
+
923
+ // Store
924
+ STOREUV(p1, u, v, -2 * stride);
925
+ STOREUV(p0, u, v, -1 * stride);
926
+ STOREUV(q0, u, v, 0 * stride);
927
+ STOREUV(q1, u, v, 1 * stride);
928
+ }
929
+
930
+ static void HFilter8i(uint8_t* u, uint8_t* v, int stride,
931
+ int thresh, int ithresh, int hev_thresh) {
932
+ __m128i mask;
933
+ __m128i t1, t2, p1, p0, q0, q1;
934
+ Load16x4(u, v, stride, &t2, &t1, &p1, &p0); // p3, p2, p1, p0
935
+ MAX_DIFF1(t2, t1, p1, p0, mask);
936
+
937
+ u += 4; // beginning of q0
938
+ v += 4;
939
+ Load16x4(u, v, stride, &q0, &q1, &t1, &t2); // q0, q1, q2, q3
940
+ MAX_DIFF2(t2, t1, q1, q0, mask);
941
+
942
+ ComplexMask(&p1, &p0, &q0, &q1, thresh, ithresh, &mask);
943
+ DoFilter4(&p1, &p0, &q0, &q1, &mask, hev_thresh);
944
+
945
+ u -= 2; // beginning of p1
946
+ v -= 2;
947
+ Store16x4(&p1, &p0, &q0, &q1, u, v, stride);
948
+ }
949
+
950
+ //------------------------------------------------------------------------------
951
+ // 4x4 predictions
952
+
953
+ #define DST(x, y) dst[(x) + (y) * BPS]
954
+ #define AVG3(a, b, c) (((a) + 2 * (b) + (c) + 2) >> 2)
955
+
956
+ // We use the following 8b-arithmetic tricks:
957
+ // (a + 2 * b + c + 2) >> 2 = (AC + b + 1) >> 1
958
+ // where: AC = (a + c) >> 1 = [(a + c + 1) >> 1] - [(a^c) & 1]
959
+ // and:
960
+ // (a + 2 * b + c + 2) >> 2 = (AB + BC + 1) >> 1 - (ab|bc)&lsb
961
+ // where: AC = (a + b + 1) >> 1, BC = (b + c + 1) >> 1
962
+ // and ab = a ^ b, bc = b ^ c, lsb = (AC^BC)&1
963
+
964
+ static void VE4(uint8_t* dst) { // vertical
965
+ const __m128i one = _mm_set1_epi8(1);
966
+ const __m128i ABCDEFGH = _mm_loadl_epi64((__m128i*)(dst - BPS - 1));
967
+ const __m128i BCDEFGH0 = _mm_srli_si128(ABCDEFGH, 1);
968
+ const __m128i CDEFGH00 = _mm_srli_si128(ABCDEFGH, 2);
969
+ const __m128i a = _mm_avg_epu8(ABCDEFGH, CDEFGH00);
970
+ const __m128i lsb = _mm_and_si128(_mm_xor_si128(ABCDEFGH, CDEFGH00), one);
971
+ const __m128i b = _mm_subs_epu8(a, lsb);
972
+ const __m128i avg = _mm_avg_epu8(b, BCDEFGH0);
973
+ const uint32_t vals = _mm_cvtsi128_si32(avg);
974
+ int i;
975
+ for (i = 0; i < 4; ++i) {
976
+ *(uint32_t*)(dst + i * BPS) = vals;
977
+ }
978
+ }
979
+
980
+ static void LD4(uint8_t* dst) { // Down-Left
981
+ const __m128i one = _mm_set1_epi8(1);
982
+ const __m128i ABCDEFGH = _mm_loadl_epi64((__m128i*)(dst - BPS));
983
+ const __m128i BCDEFGH0 = _mm_srli_si128(ABCDEFGH, 1);
984
+ const __m128i CDEFGH00 = _mm_srli_si128(ABCDEFGH, 2);
985
+ const __m128i CDEFGHH0 = _mm_insert_epi16(CDEFGH00, dst[-BPS + 7], 3);
986
+ const __m128i avg1 = _mm_avg_epu8(ABCDEFGH, CDEFGHH0);
987
+ const __m128i lsb = _mm_and_si128(_mm_xor_si128(ABCDEFGH, CDEFGHH0), one);
988
+ const __m128i avg2 = _mm_subs_epu8(avg1, lsb);
989
+ const __m128i abcdefg = _mm_avg_epu8(avg2, BCDEFGH0);
990
+ *(uint32_t*)(dst + 0 * BPS) = _mm_cvtsi128_si32( abcdefg );
991
+ *(uint32_t*)(dst + 1 * BPS) = _mm_cvtsi128_si32(_mm_srli_si128(abcdefg, 1));
992
+ *(uint32_t*)(dst + 2 * BPS) = _mm_cvtsi128_si32(_mm_srli_si128(abcdefg, 2));
993
+ *(uint32_t*)(dst + 3 * BPS) = _mm_cvtsi128_si32(_mm_srli_si128(abcdefg, 3));
994
+ }
995
+
996
+ static void VR4(uint8_t* dst) { // Vertical-Right
997
+ const __m128i one = _mm_set1_epi8(1);
998
+ const int I = dst[-1 + 0 * BPS];
999
+ const int J = dst[-1 + 1 * BPS];
1000
+ const int K = dst[-1 + 2 * BPS];
1001
+ const int X = dst[-1 - BPS];
1002
+ const __m128i XABCD = _mm_loadl_epi64((__m128i*)(dst - BPS - 1));
1003
+ const __m128i ABCD0 = _mm_srli_si128(XABCD, 1);
1004
+ const __m128i abcd = _mm_avg_epu8(XABCD, ABCD0);
1005
+ const __m128i _XABCD = _mm_slli_si128(XABCD, 1);
1006
+ const __m128i IXABCD = _mm_insert_epi16(_XABCD, I | (X << 8), 0);
1007
+ const __m128i avg1 = _mm_avg_epu8(IXABCD, ABCD0);
1008
+ const __m128i lsb = _mm_and_si128(_mm_xor_si128(IXABCD, ABCD0), one);
1009
+ const __m128i avg2 = _mm_subs_epu8(avg1, lsb);
1010
+ const __m128i efgh = _mm_avg_epu8(avg2, XABCD);
1011
+ *(uint32_t*)(dst + 0 * BPS) = _mm_cvtsi128_si32( abcd );
1012
+ *(uint32_t*)(dst + 1 * BPS) = _mm_cvtsi128_si32( efgh );
1013
+ *(uint32_t*)(dst + 2 * BPS) = _mm_cvtsi128_si32(_mm_slli_si128(abcd, 1));
1014
+ *(uint32_t*)(dst + 3 * BPS) = _mm_cvtsi128_si32(_mm_slli_si128(efgh, 1));
1015
+
1016
+ // these two are hard to implement in SSE2, so we keep the C-version:
1017
+ DST(0, 2) = AVG3(J, I, X);
1018
+ DST(0, 3) = AVG3(K, J, I);
1019
+ }
1020
+
1021
+ static void VL4(uint8_t* dst) { // Vertical-Left
1022
+ const __m128i one = _mm_set1_epi8(1);
1023
+ const __m128i ABCDEFGH = _mm_loadl_epi64((__m128i*)(dst - BPS));
1024
+ const __m128i BCDEFGH_ = _mm_srli_si128(ABCDEFGH, 1);
1025
+ const __m128i CDEFGH__ = _mm_srli_si128(ABCDEFGH, 2);
1026
+ const __m128i avg1 = _mm_avg_epu8(ABCDEFGH, BCDEFGH_);
1027
+ const __m128i avg2 = _mm_avg_epu8(CDEFGH__, BCDEFGH_);
1028
+ const __m128i avg3 = _mm_avg_epu8(avg1, avg2);
1029
+ const __m128i lsb1 = _mm_and_si128(_mm_xor_si128(avg1, avg2), one);
1030
+ const __m128i ab = _mm_xor_si128(ABCDEFGH, BCDEFGH_);
1031
+ const __m128i bc = _mm_xor_si128(CDEFGH__, BCDEFGH_);
1032
+ const __m128i abbc = _mm_or_si128(ab, bc);
1033
+ const __m128i lsb2 = _mm_and_si128(abbc, lsb1);
1034
+ const __m128i avg4 = _mm_subs_epu8(avg3, lsb2);
1035
+ const uint32_t extra_out = _mm_cvtsi128_si32(_mm_srli_si128(avg4, 4));
1036
+ *(uint32_t*)(dst + 0 * BPS) = _mm_cvtsi128_si32( avg1 );
1037
+ *(uint32_t*)(dst + 1 * BPS) = _mm_cvtsi128_si32( avg4 );
1038
+ *(uint32_t*)(dst + 2 * BPS) = _mm_cvtsi128_si32(_mm_srli_si128(avg1, 1));
1039
+ *(uint32_t*)(dst + 3 * BPS) = _mm_cvtsi128_si32(_mm_srli_si128(avg4, 1));
1040
+
1041
+ // these two are hard to get and irregular
1042
+ DST(3, 2) = (extra_out >> 0) & 0xff;
1043
+ DST(3, 3) = (extra_out >> 8) & 0xff;
1044
+ }
1045
+
1046
+ static void RD4(uint8_t* dst) { // Down-right
1047
+ const __m128i one = _mm_set1_epi8(1);
1048
+ const __m128i XABCD = _mm_loadl_epi64((__m128i*)(dst - BPS - 1));
1049
+ const __m128i ____XABCD = _mm_slli_si128(XABCD, 4);
1050
+ const uint32_t I = dst[-1 + 0 * BPS];
1051
+ const uint32_t J = dst[-1 + 1 * BPS];
1052
+ const uint32_t K = dst[-1 + 2 * BPS];
1053
+ const uint32_t L = dst[-1 + 3 * BPS];
1054
+ const __m128i LKJI_____ =
1055
+ _mm_cvtsi32_si128(L | (K << 8) | (J << 16) | (I << 24));
1056
+ const __m128i LKJIXABCD = _mm_or_si128(LKJI_____, ____XABCD);
1057
+ const __m128i KJIXABCD_ = _mm_srli_si128(LKJIXABCD, 1);
1058
+ const __m128i JIXABCD__ = _mm_srli_si128(LKJIXABCD, 2);
1059
+ const __m128i avg1 = _mm_avg_epu8(JIXABCD__, LKJIXABCD);
1060
+ const __m128i lsb = _mm_and_si128(_mm_xor_si128(JIXABCD__, LKJIXABCD), one);
1061
+ const __m128i avg2 = _mm_subs_epu8(avg1, lsb);
1062
+ const __m128i abcdefg = _mm_avg_epu8(avg2, KJIXABCD_);
1063
+ *(uint32_t*)(dst + 3 * BPS) = _mm_cvtsi128_si32( abcdefg );
1064
+ *(uint32_t*)(dst + 2 * BPS) = _mm_cvtsi128_si32(_mm_srli_si128(abcdefg, 1));
1065
+ *(uint32_t*)(dst + 1 * BPS) = _mm_cvtsi128_si32(_mm_srli_si128(abcdefg, 2));
1066
+ *(uint32_t*)(dst + 0 * BPS) = _mm_cvtsi128_si32(_mm_srli_si128(abcdefg, 3));
1067
+ }
1068
+
1069
+ #undef DST
1070
+ #undef AVG3
1071
+
1072
+ //------------------------------------------------------------------------------
1073
+ // Luma 16x16
1074
+
1075
+ static WEBP_INLINE void TrueMotion(uint8_t* dst, int size) {
1076
+ const uint8_t* top = dst - BPS;
1077
+ const __m128i zero = _mm_setzero_si128();
1078
+ int y;
1079
+ if (size == 4) {
1080
+ const __m128i top_values = _mm_cvtsi32_si128(*(const int*)top);
1081
+ const __m128i top_base = _mm_unpacklo_epi8(top_values, zero);
1082
+ for (y = 0; y < 4; ++y, dst += BPS) {
1083
+ const int val = dst[-1] - top[-1];
1084
+ const __m128i base = _mm_set1_epi16(val);
1085
+ const __m128i out = _mm_packus_epi16(_mm_add_epi16(base, top_base), zero);
1086
+ *(int*)dst = _mm_cvtsi128_si32(out);
1087
+ }
1088
+ } else if (size == 8) {
1089
+ const __m128i top_values = _mm_loadl_epi64((const __m128i*)top);
1090
+ const __m128i top_base = _mm_unpacklo_epi8(top_values, zero);
1091
+ for (y = 0; y < 8; ++y, dst += BPS) {
1092
+ const int val = dst[-1] - top[-1];
1093
+ const __m128i base = _mm_set1_epi16(val);
1094
+ const __m128i out = _mm_packus_epi16(_mm_add_epi16(base, top_base), zero);
1095
+ _mm_storel_epi64((__m128i*)dst, out);
1096
+ }
1097
+ } else {
1098
+ const __m128i top_values = _mm_loadu_si128((const __m128i*)top);
1099
+ const __m128i top_base_0 = _mm_unpacklo_epi8(top_values, zero);
1100
+ const __m128i top_base_1 = _mm_unpackhi_epi8(top_values, zero);
1101
+ for (y = 0; y < 16; ++y, dst += BPS) {
1102
+ const int val = dst[-1] - top[-1];
1103
+ const __m128i base = _mm_set1_epi16(val);
1104
+ const __m128i out_0 = _mm_add_epi16(base, top_base_0);
1105
+ const __m128i out_1 = _mm_add_epi16(base, top_base_1);
1106
+ const __m128i out = _mm_packus_epi16(out_0, out_1);
1107
+ _mm_storeu_si128((__m128i*)dst, out);
1108
+ }
1109
+ }
1110
+ }
1111
+
1112
+ static void TM4(uint8_t* dst) { TrueMotion(dst, 4); }
1113
+ static void TM8uv(uint8_t* dst) { TrueMotion(dst, 8); }
1114
+ static void TM16(uint8_t* dst) { TrueMotion(dst, 16); }
1115
+
1116
+ static void VE16(uint8_t* dst) {
1117
+ const __m128i top = _mm_loadu_si128((const __m128i*)(dst - BPS));
1118
+ int j;
1119
+ for (j = 0; j < 16; ++j) {
1120
+ _mm_storeu_si128((__m128i*)(dst + j * BPS), top);
1121
+ }
1122
+ }
1123
+
1124
+ static void HE16(uint8_t* dst) { // horizontal
1125
+ int j;
1126
+ for (j = 16; j > 0; --j) {
1127
+ const __m128i values = _mm_set1_epi8(dst[-1]);
1128
+ _mm_storeu_si128((__m128i*)dst, values);
1129
+ dst += BPS;
1130
+ }
1131
+ }
1132
+
1133
+ static WEBP_INLINE void Put16(uint8_t v, uint8_t* dst) {
1134
+ int j;
1135
+ const __m128i values = _mm_set1_epi8(v);
1136
+ for (j = 0; j < 16; ++j) {
1137
+ _mm_storeu_si128((__m128i*)(dst + j * BPS), values);
1138
+ }
1139
+ }
1140
+
1141
+ static void DC16(uint8_t* dst) { // DC
1142
+ int DC = 16;
1143
+ int j;
1144
+ for (j = 0; j < 16; ++j) {
1145
+ DC += dst[-1 + j * BPS] + dst[j - BPS];
1146
+ }
1147
+ Put16(DC >> 5, dst);
1148
+ }
1149
+
1150
+ static void DC16NoTop(uint8_t* dst) { // DC with top samples not available
1151
+ int DC = 8;
1152
+ int j;
1153
+ for (j = 0; j < 16; ++j) {
1154
+ DC += dst[-1 + j * BPS];
1155
+ }
1156
+ Put16(DC >> 4, dst);
1157
+ }
1158
+
1159
+ static void DC16NoLeft(uint8_t* dst) { // DC with left samples not available
1160
+ int DC = 8;
1161
+ int i;
1162
+ for (i = 0; i < 16; ++i) {
1163
+ DC += dst[i - BPS];
1164
+ }
1165
+ Put16(DC >> 4, dst);
1166
+ }
1167
+
1168
+ static void DC16NoTopLeft(uint8_t* dst) { // DC with no top and left samples
1169
+ Put16(0x80, dst);
1170
+ }
1171
+
1172
+ //------------------------------------------------------------------------------
1173
+ // Chroma
1174
+
1175
+ static void VE8uv(uint8_t* dst) { // vertical
1176
+ int j;
1177
+ const __m128i top = _mm_loadl_epi64((const __m128i*)(dst - BPS));
1178
+ for (j = 0; j < 8; ++j) {
1179
+ _mm_storel_epi64((__m128i*)(dst + j * BPS), top);
1180
+ }
1181
+ }
1182
+
1183
+ static void HE8uv(uint8_t* dst) { // horizontal
1184
+ int j;
1185
+ for (j = 0; j < 8; ++j) {
1186
+ const __m128i values = _mm_set1_epi8(dst[-1]);
1187
+ _mm_storel_epi64((__m128i*)dst, values);
1188
+ dst += BPS;
1189
+ }
1190
+ }
1191
+
1192
+ // helper for chroma-DC predictions
1193
+ static WEBP_INLINE void Put8x8uv(uint8_t v, uint8_t* dst) {
1194
+ int j;
1195
+ const __m128i values = _mm_set1_epi8(v);
1196
+ for (j = 0; j < 8; ++j) {
1197
+ _mm_storel_epi64((__m128i*)(dst + j * BPS), values);
1198
+ }
1199
+ }
1200
+
1201
+ static void DC8uv(uint8_t* dst) { // DC
1202
+ int dc0 = 8;
1203
+ int i;
1204
+ for (i = 0; i < 8; ++i) {
1205
+ dc0 += dst[i - BPS] + dst[-1 + i * BPS];
1206
+ }
1207
+ Put8x8uv(dc0 >> 4, dst);
1208
+ }
1209
+
1210
+ static void DC8uvNoLeft(uint8_t* dst) { // DC with no left samples
1211
+ int dc0 = 4;
1212
+ int i;
1213
+ for (i = 0; i < 8; ++i) {
1214
+ dc0 += dst[i - BPS];
1215
+ }
1216
+ Put8x8uv(dc0 >> 3, dst);
1217
+ }
1218
+
1219
+ static void DC8uvNoTop(uint8_t* dst) { // DC with no top samples
1220
+ int dc0 = 4;
1221
+ int i;
1222
+ for (i = 0; i < 8; ++i) {
1223
+ dc0 += dst[-1 + i * BPS];
1224
+ }
1225
+ Put8x8uv(dc0 >> 3, dst);
1226
+ }
1227
+
1228
+ static void DC8uvNoTopLeft(uint8_t* dst) { // DC with nothing
1229
+ Put8x8uv(0x80, dst);
1230
+ }
1231
+
1232
+ #endif // WEBP_USE_SSE2
1233
+
1234
+ //------------------------------------------------------------------------------
1235
+ // Entry point
1236
+
1237
+ extern void VP8DspInitSSE2(void);
1238
+
1239
+ WEBP_TSAN_IGNORE_FUNCTION void VP8DspInitSSE2(void) {
1240
+ #if defined(WEBP_USE_SSE2)
1241
+ VP8Transform = Transform;
1242
+ #if defined(USE_TRANSFORM_AC3)
1243
+ VP8TransformAC3 = TransformAC3;
1244
+ #endif
1245
+
1246
+ VP8VFilter16 = VFilter16;
1247
+ VP8HFilter16 = HFilter16;
1248
+ VP8VFilter8 = VFilter8;
1249
+ VP8HFilter8 = HFilter8;
1250
+ VP8VFilter16i = VFilter16i;
1251
+ VP8HFilter16i = HFilter16i;
1252
+ VP8VFilter8i = VFilter8i;
1253
+ VP8HFilter8i = HFilter8i;
1254
+
1255
+ VP8SimpleVFilter16 = SimpleVFilter16;
1256
+ VP8SimpleHFilter16 = SimpleHFilter16;
1257
+ VP8SimpleVFilter16i = SimpleVFilter16i;
1258
+ VP8SimpleHFilter16i = SimpleHFilter16i;
1259
+
1260
+ VP8PredLuma4[1] = TM4;
1261
+ VP8PredLuma4[2] = VE4;
1262
+ VP8PredLuma4[4] = RD4;
1263
+ VP8PredLuma4[5] = VR4;
1264
+ VP8PredLuma4[6] = LD4;
1265
+ VP8PredLuma4[7] = VL4;
1266
+
1267
+ VP8PredLuma16[0] = DC16;
1268
+ VP8PredLuma16[1] = TM16;
1269
+ VP8PredLuma16[2] = VE16;
1270
+ VP8PredLuma16[3] = HE16;
1271
+ VP8PredLuma16[4] = DC16NoTop;
1272
+ VP8PredLuma16[5] = DC16NoLeft;
1273
+ VP8PredLuma16[6] = DC16NoTopLeft;
1274
+
1275
+ VP8PredChroma8[0] = DC8uv;
1276
+ VP8PredChroma8[1] = TM8uv;
1277
+ VP8PredChroma8[2] = VE8uv;
1278
+ VP8PredChroma8[3] = HE8uv;
1279
+ VP8PredChroma8[4] = DC8uvNoTop;
1280
+ VP8PredChroma8[5] = DC8uvNoLeft;
1281
+ VP8PredChroma8[6] = DC8uvNoTopLeft;
1282
+
1283
+ #endif // WEBP_USE_SSE2
1284
+ }