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,1510 @@
1
+ // Copyright 2014 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
+ // MIPS version of speed-critical encoding functions.
11
+ //
12
+ // Author(s): Darko Laus (darko.laus@imgtec.com)
13
+ // Mirko Raus (mirko.raus@imgtec.com)
14
+
15
+ #include "./dsp.h"
16
+
17
+ #if defined(WEBP_USE_MIPS_DSP_R2)
18
+
19
+ #include "./mips_macro.h"
20
+ #include "../enc/cost.h"
21
+ #include "../enc/vp8enci.h"
22
+
23
+ static const int kC1 = 20091 + (1 << 16);
24
+ static const int kC2 = 35468;
25
+
26
+ // O - output
27
+ // I - input (macro doesn't change it)
28
+ #define ADD_SUB_HALVES_X4(O0, O1, O2, O3, O4, O5, O6, O7, \
29
+ I0, I1, I2, I3, I4, I5, I6, I7) \
30
+ "addq.ph %["#O0"], %["#I0"], %["#I1"] \n\t" \
31
+ "subq.ph %["#O1"], %["#I0"], %["#I1"] \n\t" \
32
+ "addq.ph %["#O2"], %["#I2"], %["#I3"] \n\t" \
33
+ "subq.ph %["#O3"], %["#I2"], %["#I3"] \n\t" \
34
+ "addq.ph %["#O4"], %["#I4"], %["#I5"] \n\t" \
35
+ "subq.ph %["#O5"], %["#I4"], %["#I5"] \n\t" \
36
+ "addq.ph %["#O6"], %["#I6"], %["#I7"] \n\t" \
37
+ "subq.ph %["#O7"], %["#I6"], %["#I7"] \n\t"
38
+
39
+ // IO - input/output
40
+ #define ABS_X8(IO0, IO1, IO2, IO3, IO4, IO5, IO6, IO7) \
41
+ "absq_s.ph %["#IO0"], %["#IO0"] \n\t" \
42
+ "absq_s.ph %["#IO1"], %["#IO1"] \n\t" \
43
+ "absq_s.ph %["#IO2"], %["#IO2"] \n\t" \
44
+ "absq_s.ph %["#IO3"], %["#IO3"] \n\t" \
45
+ "absq_s.ph %["#IO4"], %["#IO4"] \n\t" \
46
+ "absq_s.ph %["#IO5"], %["#IO5"] \n\t" \
47
+ "absq_s.ph %["#IO6"], %["#IO6"] \n\t" \
48
+ "absq_s.ph %["#IO7"], %["#IO7"] \n\t"
49
+
50
+ // dpa.w.ph $ac0 temp0 ,temp1
51
+ // $ac += temp0[31..16] * temp1[31..16] + temp0[15..0] * temp1[15..0]
52
+ // dpax.w.ph $ac0 temp0 ,temp1
53
+ // $ac += temp0[31..16] * temp1[15..0] + temp0[15..0] * temp1[31..16]
54
+ // O - output
55
+ // I - input (macro doesn't change it)
56
+ #define MUL_HALF(O0, I0, I1, I2, I3, I4, I5, I6, I7, \
57
+ I8, I9, I10, I11, I12, I13, I14, I15) \
58
+ "mult $ac0, $zero, $zero \n\t" \
59
+ "dpa.w.ph $ac0, %["#I2"], %["#I0"] \n\t" \
60
+ "dpax.w.ph $ac0, %["#I5"], %["#I6"] \n\t" \
61
+ "dpa.w.ph $ac0, %["#I8"], %["#I9"] \n\t" \
62
+ "dpax.w.ph $ac0, %["#I11"], %["#I4"] \n\t" \
63
+ "dpa.w.ph $ac0, %["#I12"], %["#I7"] \n\t" \
64
+ "dpax.w.ph $ac0, %["#I13"], %["#I1"] \n\t" \
65
+ "dpa.w.ph $ac0, %["#I14"], %["#I3"] \n\t" \
66
+ "dpax.w.ph $ac0, %["#I15"], %["#I10"] \n\t" \
67
+ "mflo %["#O0"], $ac0 \n\t"
68
+
69
+ #define OUTPUT_EARLY_CLOBBER_REGS_17() \
70
+ OUTPUT_EARLY_CLOBBER_REGS_10(), \
71
+ [temp11]"=&r"(temp11), [temp12]"=&r"(temp12), [temp13]"=&r"(temp13), \
72
+ [temp14]"=&r"(temp14), [temp15]"=&r"(temp15), [temp16]"=&r"(temp16), \
73
+ [temp17]"=&r"(temp17)
74
+
75
+ // macro for one horizontal pass in FTransform
76
+ // temp0..temp15 holds tmp[0]..tmp[15]
77
+ // A - offset in bytes to load from src and ref buffers
78
+ // TEMP0..TEMP3 - registers for corresponding tmp elements
79
+ #define HORIZONTAL_PASS(A, TEMP0, TEMP1, TEMP2, TEMP3) \
80
+ "lw %["#TEMP0"], 0(%[args]) \n\t" \
81
+ "lw %["#TEMP1"], 4(%[args]) \n\t" \
82
+ "lw %["#TEMP2"], "XSTR(BPS)"*"#A"(%["#TEMP0"]) \n\t" \
83
+ "lw %["#TEMP3"], "XSTR(BPS)"*"#A"(%["#TEMP1"]) \n\t" \
84
+ "preceu.ph.qbl %["#TEMP0"], %["#TEMP2"] \n\t" \
85
+ "preceu.ph.qbl %["#TEMP1"], %["#TEMP3"] \n\t" \
86
+ "preceu.ph.qbr %["#TEMP2"], %["#TEMP2"] \n\t" \
87
+ "preceu.ph.qbr %["#TEMP3"], %["#TEMP3"] \n\t" \
88
+ "subq.ph %["#TEMP0"], %["#TEMP0"], %["#TEMP1"] \n\t" \
89
+ "subq.ph %["#TEMP2"], %["#TEMP2"], %["#TEMP3"] \n\t" \
90
+ "rotr %["#TEMP0"], %["#TEMP0"], 16 \n\t" \
91
+ "addq.ph %["#TEMP1"], %["#TEMP2"], %["#TEMP0"] \n\t" \
92
+ "subq.ph %["#TEMP3"], %["#TEMP2"], %["#TEMP0"] \n\t" \
93
+ "seh %["#TEMP0"], %["#TEMP1"] \n\t" \
94
+ "sra %[temp16], %["#TEMP1"], 16 \n\t" \
95
+ "seh %[temp19], %["#TEMP3"] \n\t" \
96
+ "sra %["#TEMP3"], %["#TEMP3"], 16 \n\t" \
97
+ "subu %["#TEMP2"], %["#TEMP0"], %[temp16] \n\t" \
98
+ "addu %["#TEMP0"], %["#TEMP0"], %[temp16] \n\t" \
99
+ "mul %[temp17], %[temp19], %[c2217] \n\t" \
100
+ "mul %[temp18], %["#TEMP3"], %[c5352] \n\t" \
101
+ "mul %["#TEMP1"], %[temp19], %[c5352] \n\t" \
102
+ "mul %[temp16], %["#TEMP3"], %[c2217] \n\t" \
103
+ "sll %["#TEMP2"], %["#TEMP2"], 3 \n\t" \
104
+ "sll %["#TEMP0"], %["#TEMP0"], 3 \n\t" \
105
+ "subu %["#TEMP3"], %[temp17], %[temp18] \n\t" \
106
+ "addu %["#TEMP1"], %[temp16], %["#TEMP1"] \n\t" \
107
+ "addiu %["#TEMP3"], %["#TEMP3"], 937 \n\t" \
108
+ "addiu %["#TEMP1"], %["#TEMP1"], 1812 \n\t" \
109
+ "sra %["#TEMP3"], %["#TEMP3"], 9 \n\t" \
110
+ "sra %["#TEMP1"], %["#TEMP1"], 9 \n\t"
111
+
112
+ // macro for one vertical pass in FTransform
113
+ // temp0..temp15 holds tmp[0]..tmp[15]
114
+ // A..D - offsets in bytes to store to out buffer
115
+ // TEMP0, TEMP4, TEMP8 and TEMP12 - registers for corresponding tmp elements
116
+ #define VERTICAL_PASS(A, B, C, D, TEMP0, TEMP4, TEMP8, TEMP12) \
117
+ "addu %[temp16], %["#TEMP0"], %["#TEMP12"] \n\t" \
118
+ "subu %[temp19], %["#TEMP0"], %["#TEMP12"] \n\t" \
119
+ "addu %[temp17], %["#TEMP4"], %["#TEMP8"] \n\t" \
120
+ "subu %[temp18], %["#TEMP4"], %["#TEMP8"] \n\t" \
121
+ "mul %["#TEMP8"], %[temp19], %[c2217] \n\t" \
122
+ "mul %["#TEMP12"], %[temp18], %[c2217] \n\t" \
123
+ "mul %["#TEMP4"], %[temp19], %[c5352] \n\t" \
124
+ "mul %[temp18], %[temp18], %[c5352] \n\t" \
125
+ "addiu %[temp16], %[temp16], 7 \n\t" \
126
+ "addu %["#TEMP0"], %[temp16], %[temp17] \n\t" \
127
+ "sra %["#TEMP0"], %["#TEMP0"], 4 \n\t" \
128
+ "addu %["#TEMP12"], %["#TEMP12"], %["#TEMP4"] \n\t" \
129
+ "subu %["#TEMP4"], %[temp16], %[temp17] \n\t" \
130
+ "sra %["#TEMP4"], %["#TEMP4"], 4 \n\t" \
131
+ "addiu %["#TEMP8"], %["#TEMP8"], 30000 \n\t" \
132
+ "addiu %["#TEMP12"], %["#TEMP12"], 12000 \n\t" \
133
+ "addiu %["#TEMP8"], %["#TEMP8"], 21000 \n\t" \
134
+ "subu %["#TEMP8"], %["#TEMP8"], %[temp18] \n\t" \
135
+ "sra %["#TEMP12"], %["#TEMP12"], 16 \n\t" \
136
+ "sra %["#TEMP8"], %["#TEMP8"], 16 \n\t" \
137
+ "addiu %[temp16], %["#TEMP12"], 1 \n\t" \
138
+ "movn %["#TEMP12"], %[temp16], %[temp19] \n\t" \
139
+ "sh %["#TEMP0"], "#A"(%[temp20]) \n\t" \
140
+ "sh %["#TEMP4"], "#C"(%[temp20]) \n\t" \
141
+ "sh %["#TEMP8"], "#D"(%[temp20]) \n\t" \
142
+ "sh %["#TEMP12"], "#B"(%[temp20]) \n\t"
143
+
144
+ static void FTransform(const uint8_t* src, const uint8_t* ref, int16_t* out) {
145
+ const int c2217 = 2217;
146
+ const int c5352 = 5352;
147
+ int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8;
148
+ int temp9, temp10, temp11, temp12, temp13, temp14, temp15, temp16;
149
+ int temp17, temp18, temp19, temp20;
150
+ const int* const args[3] =
151
+ { (const int*)src, (const int*)ref, (const int*)out };
152
+
153
+ __asm__ volatile (
154
+ HORIZONTAL_PASS(0, temp0, temp1, temp2, temp3)
155
+ HORIZONTAL_PASS(1, temp4, temp5, temp6, temp7)
156
+ HORIZONTAL_PASS(2, temp8, temp9, temp10, temp11)
157
+ HORIZONTAL_PASS(3, temp12, temp13, temp14, temp15)
158
+ "lw %[temp20], 8(%[args]) \n\t"
159
+ VERTICAL_PASS(0, 8, 16, 24, temp0, temp4, temp8, temp12)
160
+ VERTICAL_PASS(2, 10, 18, 26, temp1, temp5, temp9, temp13)
161
+ VERTICAL_PASS(4, 12, 20, 28, temp2, temp6, temp10, temp14)
162
+ VERTICAL_PASS(6, 14, 22, 30, temp3, temp7, temp11, temp15)
163
+ OUTPUT_EARLY_CLOBBER_REGS_18(),
164
+ [temp0]"=&r"(temp0), [temp19]"=&r"(temp19), [temp20]"=&r"(temp20)
165
+ : [args]"r"(args), [c2217]"r"(c2217), [c5352]"r"(c5352)
166
+ : "memory", "hi", "lo"
167
+ );
168
+ }
169
+
170
+ #undef VERTICAL_PASS
171
+ #undef HORIZONTAL_PASS
172
+
173
+ static WEBP_INLINE void ITransformOne(const uint8_t* ref, const int16_t* in,
174
+ uint8_t* dst) {
175
+ int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9;
176
+ int temp10, temp11, temp12, temp13, temp14, temp15, temp16, temp17, temp18;
177
+
178
+ __asm__ volatile (
179
+ "ulw %[temp1], 0(%[in]) \n\t"
180
+ "ulw %[temp2], 16(%[in]) \n\t"
181
+ LOAD_IN_X2(temp5, temp6, 24, 26)
182
+ ADD_SUB_HALVES(temp3, temp4, temp1, temp2)
183
+ LOAD_IN_X2(temp1, temp2, 8, 10)
184
+ MUL_SHIFT_SUM(temp7, temp8, temp9, temp10, temp11, temp12, temp13, temp14,
185
+ temp10, temp8, temp9, temp7, temp1, temp2, temp5, temp6,
186
+ temp13, temp11, temp14, temp12)
187
+ INSERT_HALF_X2(temp8, temp7, temp10, temp9)
188
+ "ulw %[temp17], 4(%[in]) \n\t"
189
+ "ulw %[temp18], 20(%[in]) \n\t"
190
+ ADD_SUB_HALVES(temp1, temp2, temp3, temp8)
191
+ ADD_SUB_HALVES(temp5, temp6, temp4, temp7)
192
+ ADD_SUB_HALVES(temp7, temp8, temp17, temp18)
193
+ LOAD_IN_X2(temp17, temp18, 12, 14)
194
+ LOAD_IN_X2(temp9, temp10, 28, 30)
195
+ MUL_SHIFT_SUM(temp11, temp12, temp13, temp14, temp15, temp16, temp4, temp17,
196
+ temp12, temp14, temp11, temp13, temp17, temp18, temp9, temp10,
197
+ temp15, temp4, temp16, temp17)
198
+ INSERT_HALF_X2(temp11, temp12, temp13, temp14)
199
+ ADD_SUB_HALVES(temp17, temp8, temp8, temp11)
200
+ ADD_SUB_HALVES(temp3, temp4, temp7, temp12)
201
+
202
+ // horizontal
203
+ SRA_16(temp9, temp10, temp11, temp12, temp1, temp2, temp5, temp6)
204
+ INSERT_HALF_X2(temp1, temp6, temp5, temp2)
205
+ SRA_16(temp13, temp14, temp15, temp16, temp3, temp4, temp17, temp8)
206
+ "repl.ph %[temp2], 0x4 \n\t"
207
+ INSERT_HALF_X2(temp3, temp8, temp17, temp4)
208
+ "addq.ph %[temp1], %[temp1], %[temp2] \n\t"
209
+ "addq.ph %[temp6], %[temp6], %[temp2] \n\t"
210
+ ADD_SUB_HALVES(temp2, temp4, temp1, temp3)
211
+ ADD_SUB_HALVES(temp5, temp7, temp6, temp8)
212
+ MUL_SHIFT_SUM(temp1, temp3, temp6, temp8, temp9, temp13, temp17, temp18,
213
+ temp3, temp13, temp1, temp9, temp9, temp13, temp11, temp15,
214
+ temp6, temp17, temp8, temp18)
215
+ MUL_SHIFT_SUM(temp6, temp8, temp18, temp17, temp11, temp15, temp12, temp16,
216
+ temp8, temp15, temp6, temp11, temp12, temp16, temp10, temp14,
217
+ temp18, temp12, temp17, temp16)
218
+ INSERT_HALF_X2(temp1, temp3, temp9, temp13)
219
+ INSERT_HALF_X2(temp6, temp8, temp11, temp15)
220
+ SHIFT_R_SUM_X2(temp9, temp10, temp11, temp12, temp13, temp14, temp15,
221
+ temp16, temp2, temp4, temp5, temp7, temp3, temp1, temp8,
222
+ temp6)
223
+ PACK_2_HALVES_TO_WORD(temp1, temp2, temp3, temp4, temp9, temp12, temp13,
224
+ temp16, temp11, temp10, temp15, temp14)
225
+ LOAD_WITH_OFFSET_X4(temp10, temp11, temp14, temp15, ref,
226
+ 0, 0, 0, 0,
227
+ 0, 1, 2, 3,
228
+ BPS)
229
+ CONVERT_2_BYTES_TO_HALF(temp5, temp6, temp7, temp8, temp17, temp18, temp10,
230
+ temp11, temp10, temp11, temp14, temp15)
231
+ STORE_SAT_SUM_X2(temp5, temp6, temp7, temp8, temp17, temp18, temp10, temp11,
232
+ temp9, temp12, temp1, temp2, temp13, temp16, temp3, temp4,
233
+ dst, 0, 1, 2, 3, BPS)
234
+
235
+ OUTPUT_EARLY_CLOBBER_REGS_18()
236
+ : [dst]"r"(dst), [in]"r"(in), [kC1]"r"(kC1), [kC2]"r"(kC2), [ref]"r"(ref)
237
+ : "memory", "hi", "lo"
238
+ );
239
+ }
240
+
241
+ static void ITransform(const uint8_t* ref, const int16_t* in, uint8_t* dst,
242
+ int do_two) {
243
+ ITransformOne(ref, in, dst);
244
+ if (do_two) {
245
+ ITransformOne(ref + 4, in + 16, dst + 4);
246
+ }
247
+ }
248
+
249
+ static int Disto4x4(const uint8_t* const a, const uint8_t* const b,
250
+ const uint16_t* const w) {
251
+ int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9;
252
+ int temp10, temp11, temp12, temp13, temp14, temp15, temp16, temp17;
253
+
254
+ __asm__ volatile (
255
+ LOAD_WITH_OFFSET_X4(temp1, temp2, temp3, temp4, a,
256
+ 0, 0, 0, 0,
257
+ 0, 1, 2, 3,
258
+ BPS)
259
+ CONVERT_2_BYTES_TO_HALF(temp5, temp6, temp7, temp8, temp9,temp10, temp11,
260
+ temp12, temp1, temp2, temp3, temp4)
261
+ ADD_SUB_HALVES_X4(temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8,
262
+ temp5, temp6, temp7, temp8, temp9, temp10, temp11, temp12)
263
+ PACK_2_HALVES_TO_WORD(temp9, temp10, temp11, temp12, temp1, temp3, temp5,
264
+ temp7, temp2, temp4, temp6, temp8)
265
+ ADD_SUB_HALVES_X4(temp2, temp4, temp6, temp8, temp9, temp1, temp3, temp10,
266
+ temp1, temp9, temp3, temp10, temp5, temp11, temp7, temp12)
267
+ ADD_SUB_HALVES_X4(temp5, temp11, temp7, temp2, temp9, temp3, temp6, temp12,
268
+ temp2, temp9, temp6, temp3, temp4, temp1, temp8, temp10)
269
+ ADD_SUB_HALVES_X4(temp1, temp4, temp10, temp8, temp7, temp11, temp5, temp2,
270
+ temp5, temp7, temp11, temp2, temp9, temp6, temp3, temp12)
271
+ ABS_X8(temp1, temp4, temp10, temp8, temp7, temp11, temp5, temp2)
272
+ LOAD_WITH_OFFSET_X4(temp3, temp6, temp9, temp12, w,
273
+ 0, 4, 8, 12,
274
+ 0, 0, 0, 0,
275
+ 0)
276
+ LOAD_WITH_OFFSET_X4(temp13, temp14, temp15, temp16, w,
277
+ 0, 4, 8, 12,
278
+ 1, 1, 1, 1,
279
+ 16)
280
+ MUL_HALF(temp17, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8,
281
+ temp9, temp10, temp11, temp12, temp13, temp14, temp15, temp16)
282
+ LOAD_WITH_OFFSET_X4(temp1, temp2, temp3, temp4, b,
283
+ 0, 0, 0, 0,
284
+ 0, 1, 2, 3,
285
+ BPS)
286
+ CONVERT_2_BYTES_TO_HALF(temp5,temp6, temp7, temp8, temp9,temp10, temp11,
287
+ temp12, temp1, temp2, temp3, temp4)
288
+ ADD_SUB_HALVES_X4(temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8,
289
+ temp5, temp6, temp7, temp8, temp9, temp10, temp11, temp12)
290
+ PACK_2_HALVES_TO_WORD(temp9, temp10, temp11, temp12, temp1, temp3, temp5,
291
+ temp7, temp2, temp4, temp6, temp8)
292
+ ADD_SUB_HALVES_X4(temp2, temp4, temp6, temp8, temp9, temp1, temp3, temp10,
293
+ temp1, temp9, temp3, temp10, temp5, temp11, temp7, temp12)
294
+ ADD_SUB_HALVES_X4(temp5, temp11, temp7, temp2, temp9, temp3, temp6, temp12,
295
+ temp2, temp9, temp6, temp3, temp4, temp1, temp8, temp10)
296
+ ADD_SUB_HALVES_X4(temp1, temp4, temp10, temp8, temp7, temp11, temp5, temp2,
297
+ temp5, temp7, temp11, temp2, temp9, temp6, temp3, temp12)
298
+ ABS_X8(temp1, temp4, temp10, temp8, temp7, temp11, temp5, temp2)
299
+ LOAD_WITH_OFFSET_X4(temp3, temp6, temp9, temp12, w,
300
+ 0, 4, 8, 12,
301
+ 0, 0, 0, 0,
302
+ 0)
303
+ LOAD_WITH_OFFSET_X4(temp13, temp14, temp15, temp16, w,
304
+ 0, 4, 8, 12,
305
+ 1, 1, 1, 1,
306
+ 16)
307
+ MUL_HALF(temp3, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8,
308
+ temp9, temp10, temp11, temp12, temp13, temp14, temp15, temp16)
309
+ OUTPUT_EARLY_CLOBBER_REGS_17()
310
+ : [a]"r"(a), [b]"r"(b), [w]"r"(w)
311
+ : "memory", "hi", "lo"
312
+ );
313
+ return abs(temp3 - temp17) >> 5;
314
+ }
315
+
316
+ static int Disto16x16(const uint8_t* const a, const uint8_t* const b,
317
+ const uint16_t* const w) {
318
+ int D = 0;
319
+ int x, y;
320
+ for (y = 0; y < 16 * BPS; y += 4 * BPS) {
321
+ for (x = 0; x < 16; x += 4) {
322
+ D += Disto4x4(a + x + y, b + x + y, w);
323
+ }
324
+ }
325
+ return D;
326
+ }
327
+
328
+ //------------------------------------------------------------------------------
329
+ // Intra predictions
330
+
331
+ #define FILL_PART(J, SIZE) \
332
+ "usw %[value], 0+"#J"*"XSTR(BPS)"(%[dst]) \n\t" \
333
+ "usw %[value], 4+"#J"*"XSTR(BPS)"(%[dst]) \n\t" \
334
+ ".if "#SIZE" == 16 \n\t" \
335
+ "usw %[value], 8+"#J"*"XSTR(BPS)"(%[dst]) \n\t" \
336
+ "usw %[value], 12+"#J"*"XSTR(BPS)"(%[dst]) \n\t" \
337
+ ".endif \n\t"
338
+
339
+ #define FILL_8_OR_16(DST, VALUE, SIZE) do { \
340
+ int value = (VALUE); \
341
+ __asm__ volatile ( \
342
+ "replv.qb %[value], %[value] \n\t" \
343
+ FILL_PART( 0, SIZE) \
344
+ FILL_PART( 1, SIZE) \
345
+ FILL_PART( 2, SIZE) \
346
+ FILL_PART( 3, SIZE) \
347
+ FILL_PART( 4, SIZE) \
348
+ FILL_PART( 5, SIZE) \
349
+ FILL_PART( 6, SIZE) \
350
+ FILL_PART( 7, SIZE) \
351
+ ".if "#SIZE" == 16 \n\t" \
352
+ FILL_PART( 8, 16) \
353
+ FILL_PART( 9, 16) \
354
+ FILL_PART(10, 16) \
355
+ FILL_PART(11, 16) \
356
+ FILL_PART(12, 16) \
357
+ FILL_PART(13, 16) \
358
+ FILL_PART(14, 16) \
359
+ FILL_PART(15, 16) \
360
+ ".endif \n\t" \
361
+ : [value]"+&r"(value) \
362
+ : [dst]"r"((DST)) \
363
+ : "memory" \
364
+ ); \
365
+ } while (0)
366
+
367
+ #define VERTICAL_PRED(DST, TOP, SIZE) \
368
+ static WEBP_INLINE void VerticalPred##SIZE(uint8_t* (DST), \
369
+ const uint8_t* (TOP)) { \
370
+ int j; \
371
+ if ((TOP)) { \
372
+ for (j = 0; j < (SIZE); ++j) memcpy((DST) + j * BPS, (TOP), (SIZE)); \
373
+ } else { \
374
+ FILL_8_OR_16((DST), 127, (SIZE)); \
375
+ } \
376
+ }
377
+
378
+ VERTICAL_PRED(dst, top, 8)
379
+ VERTICAL_PRED(dst, top, 16)
380
+
381
+ #undef VERTICAL_PRED
382
+
383
+ #define HORIZONTAL_PRED(DST, LEFT, SIZE) \
384
+ static WEBP_INLINE void HorizontalPred##SIZE(uint8_t* (DST), \
385
+ const uint8_t* (LEFT)) { \
386
+ if (LEFT) { \
387
+ int j; \
388
+ for (j = 0; j < (SIZE); ++j) { \
389
+ memset((DST) + j * BPS, (LEFT)[j], (SIZE)); \
390
+ } \
391
+ } else { \
392
+ FILL_8_OR_16((DST), 129, (SIZE)); \
393
+ } \
394
+ }
395
+
396
+ HORIZONTAL_PRED(dst, left, 8)
397
+ HORIZONTAL_PRED(dst, left, 16)
398
+
399
+ #undef HORIZONTAL_PRED
400
+
401
+ #define CLIPPING() \
402
+ "preceu.ph.qbl %[temp2], %[temp0] \n\t" \
403
+ "preceu.ph.qbr %[temp0], %[temp0] \n\t" \
404
+ "preceu.ph.qbl %[temp3], %[temp1] \n\t" \
405
+ "preceu.ph.qbr %[temp1], %[temp1] \n\t" \
406
+ "addu.ph %[temp2], %[temp2], %[leftY_1] \n\t" \
407
+ "addu.ph %[temp0], %[temp0], %[leftY_1] \n\t" \
408
+ "addu.ph %[temp3], %[temp3], %[leftY_1] \n\t" \
409
+ "addu.ph %[temp1], %[temp1], %[leftY_1] \n\t" \
410
+ "shll_s.ph %[temp2], %[temp2], 7 \n\t" \
411
+ "shll_s.ph %[temp0], %[temp0], 7 \n\t" \
412
+ "shll_s.ph %[temp3], %[temp3], 7 \n\t" \
413
+ "shll_s.ph %[temp1], %[temp1], 7 \n\t" \
414
+ "precrqu_s.qb.ph %[temp0], %[temp2], %[temp0] \n\t" \
415
+ "precrqu_s.qb.ph %[temp1], %[temp3], %[temp1] \n\t"
416
+
417
+ #define CLIP_8B_TO_DST(DST, LEFT, TOP, SIZE) do { \
418
+ int leftY_1 = ((int)(LEFT)[y] << 16) + (LEFT)[y]; \
419
+ int temp0, temp1, temp2, temp3; \
420
+ __asm__ volatile ( \
421
+ "replv.ph %[leftY_1], %[leftY_1] \n\t" \
422
+ "ulw %[temp0], 0(%[top]) \n\t" \
423
+ "ulw %[temp1], 4(%[top]) \n\t" \
424
+ "subu.ph %[leftY_1], %[leftY_1], %[left_1] \n\t" \
425
+ CLIPPING() \
426
+ "usw %[temp0], 0(%[dst]) \n\t" \
427
+ "usw %[temp1], 4(%[dst]) \n\t" \
428
+ ".if "#SIZE" == 16 \n\t" \
429
+ "ulw %[temp0], 8(%[top]) \n\t" \
430
+ "ulw %[temp1], 12(%[top]) \n\t" \
431
+ CLIPPING() \
432
+ "usw %[temp0], 8(%[dst]) \n\t" \
433
+ "usw %[temp1], 12(%[dst]) \n\t" \
434
+ ".endif \n\t" \
435
+ : [leftY_1]"+&r"(leftY_1), [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), \
436
+ [temp2]"=&r"(temp2), [temp3]"=&r"(temp3) \
437
+ : [left_1]"r"(left_1), [top]"r"((TOP)), [dst]"r"((DST)) \
438
+ : "memory" \
439
+ ); \
440
+ } while (0)
441
+
442
+ #define CLIP_TO_DST(DST, LEFT, TOP, SIZE) do { \
443
+ int y; \
444
+ const int left_1 = ((int)(LEFT)[-1] << 16) + (LEFT)[-1]; \
445
+ for (y = 0; y < (SIZE); ++y) { \
446
+ CLIP_8B_TO_DST((DST), (LEFT), (TOP), (SIZE)); \
447
+ (DST) += BPS; \
448
+ } \
449
+ } while (0)
450
+
451
+ #define TRUE_MOTION(DST, LEFT, TOP, SIZE) \
452
+ static WEBP_INLINE void TrueMotion##SIZE(uint8_t* (DST), const uint8_t* (LEFT),\
453
+ const uint8_t* (TOP)) { \
454
+ if ((LEFT) != NULL) { \
455
+ if ((TOP) != NULL) { \
456
+ CLIP_TO_DST((DST), (LEFT), (TOP), (SIZE)); \
457
+ } else { \
458
+ HorizontalPred##SIZE((DST), (LEFT)); \
459
+ } \
460
+ } else { \
461
+ /* true motion without left samples (hence: with default 129 value) */ \
462
+ /* is equivalent to VE prediction where you just copy the top samples. */ \
463
+ /* Note that if top samples are not available, the default value is */ \
464
+ /* then 129, and not 127 as in the VerticalPred case. */ \
465
+ if ((TOP) != NULL) { \
466
+ VerticalPred##SIZE((DST), (TOP)); \
467
+ } else { \
468
+ FILL_8_OR_16((DST), 129, (SIZE)); \
469
+ } \
470
+ } \
471
+ }
472
+
473
+ TRUE_MOTION(dst, left, top, 8)
474
+ TRUE_MOTION(dst, left, top, 16)
475
+
476
+ #undef TRUE_MOTION
477
+ #undef CLIP_TO_DST
478
+ #undef CLIP_8B_TO_DST
479
+ #undef CLIPPING
480
+
481
+ static WEBP_INLINE void DCMode16(uint8_t* dst, const uint8_t* left,
482
+ const uint8_t* top) {
483
+ int DC, DC1;
484
+ int temp0, temp1, temp2, temp3;
485
+
486
+ __asm__ volatile(
487
+ "beqz %[top], 2f \n\t"
488
+ LOAD_WITH_OFFSET_X4(temp0, temp1, temp2, temp3, top,
489
+ 0, 4, 8, 12,
490
+ 0, 0, 0, 0,
491
+ 0)
492
+ "raddu.w.qb %[temp0], %[temp0] \n\t"
493
+ "raddu.w.qb %[temp1], %[temp1] \n\t"
494
+ "raddu.w.qb %[temp2], %[temp2] \n\t"
495
+ "raddu.w.qb %[temp3], %[temp3] \n\t"
496
+ "addu %[temp0], %[temp0], %[temp1] \n\t"
497
+ "addu %[temp2], %[temp2], %[temp3] \n\t"
498
+ "addu %[DC], %[temp0], %[temp2] \n\t"
499
+ "move %[DC1], %[DC] \n\t"
500
+ "beqz %[left], 1f \n\t"
501
+ LOAD_WITH_OFFSET_X4(temp0, temp1, temp2, temp3, left,
502
+ 0, 4, 8, 12,
503
+ 0, 0, 0, 0,
504
+ 0)
505
+ "raddu.w.qb %[temp0], %[temp0] \n\t"
506
+ "raddu.w.qb %[temp1], %[temp1] \n\t"
507
+ "raddu.w.qb %[temp2], %[temp2] \n\t"
508
+ "raddu.w.qb %[temp3], %[temp3] \n\t"
509
+ "addu %[temp0], %[temp0], %[temp1] \n\t"
510
+ "addu %[temp2], %[temp2], %[temp3] \n\t"
511
+ "addu %[DC1], %[temp0], %[temp2] \n\t"
512
+ "1: \n\t"
513
+ "addu %[DC], %[DC], %[DC1] \n\t"
514
+ "j 3f \n\t"
515
+ "2: \n\t"
516
+ "beqz %[left], 4f \n\t"
517
+ LOAD_WITH_OFFSET_X4(temp0, temp1, temp2, temp3, left,
518
+ 0, 4, 8, 12,
519
+ 0, 0, 0, 0,
520
+ 0)
521
+ "raddu.w.qb %[temp0], %[temp0] \n\t"
522
+ "raddu.w.qb %[temp1], %[temp1] \n\t"
523
+ "raddu.w.qb %[temp2], %[temp2] \n\t"
524
+ "raddu.w.qb %[temp3], %[temp3] \n\t"
525
+ "addu %[temp0], %[temp0], %[temp1] \n\t"
526
+ "addu %[temp2], %[temp2], %[temp3] \n\t"
527
+ "addu %[DC], %[temp0], %[temp2] \n\t"
528
+ "addu %[DC], %[DC], %[DC] \n\t"
529
+ "3: \n\t"
530
+ "shra_r.w %[DC], %[DC], 5 \n\t"
531
+ "j 5f \n\t"
532
+ "4: \n\t"
533
+ "li %[DC], 0x80 \n\t"
534
+ "5: \n\t"
535
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [DC]"=&r"(DC),
536
+ [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), [DC1]"=&r"(DC1)
537
+ : [left]"r"(left), [top]"r"(top)
538
+ : "memory"
539
+ );
540
+
541
+ FILL_8_OR_16(dst, DC, 16);
542
+ }
543
+
544
+ static WEBP_INLINE void DCMode8(uint8_t* dst, const uint8_t* left,
545
+ const uint8_t* top) {
546
+ int DC, DC1;
547
+ int temp0, temp1, temp2, temp3;
548
+
549
+ __asm__ volatile(
550
+ "beqz %[top], 2f \n\t"
551
+ "ulw %[temp0], 0(%[top]) \n\t"
552
+ "ulw %[temp1], 4(%[top]) \n\t"
553
+ "raddu.w.qb %[temp0], %[temp0] \n\t"
554
+ "raddu.w.qb %[temp1], %[temp1] \n\t"
555
+ "addu %[DC], %[temp0], %[temp1] \n\t"
556
+ "move %[DC1], %[DC] \n\t"
557
+ "beqz %[left], 1f \n\t"
558
+ "ulw %[temp2], 0(%[left]) \n\t"
559
+ "ulw %[temp3], 4(%[left]) \n\t"
560
+ "raddu.w.qb %[temp2], %[temp2] \n\t"
561
+ "raddu.w.qb %[temp3], %[temp3] \n\t"
562
+ "addu %[DC1], %[temp2], %[temp3] \n\t"
563
+ "1: \n\t"
564
+ "addu %[DC], %[DC], %[DC1] \n\t"
565
+ "j 3f \n\t"
566
+ "2: \n\t"
567
+ "beqz %[left], 4f \n\t"
568
+ "ulw %[temp2], 0(%[left]) \n\t"
569
+ "ulw %[temp3], 4(%[left]) \n\t"
570
+ "raddu.w.qb %[temp2], %[temp2] \n\t"
571
+ "raddu.w.qb %[temp3], %[temp3] \n\t"
572
+ "addu %[DC], %[temp2], %[temp3] \n\t"
573
+ "addu %[DC], %[DC], %[DC] \n\t"
574
+ "3: \n\t"
575
+ "shra_r.w %[DC], %[DC], 4 \n\t"
576
+ "j 5f \n\t"
577
+ "4: \n\t"
578
+ "li %[DC], 0x80 \n\t"
579
+ "5: \n\t"
580
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [DC]"=&r"(DC),
581
+ [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), [DC1]"=&r"(DC1)
582
+ : [left]"r"(left), [top]"r"(top)
583
+ : "memory"
584
+ );
585
+
586
+ FILL_8_OR_16(dst, DC, 8);
587
+ }
588
+
589
+ static void DC4(uint8_t* dst, const uint8_t* top) {
590
+ int temp0, temp1;
591
+ __asm__ volatile(
592
+ "ulw %[temp0], 0(%[top]) \n\t"
593
+ "ulw %[temp1], -5(%[top]) \n\t"
594
+ "raddu.w.qb %[temp0], %[temp0] \n\t"
595
+ "raddu.w.qb %[temp1], %[temp1] \n\t"
596
+ "addu %[temp0], %[temp0], %[temp1] \n\t"
597
+ "addiu %[temp0], %[temp0], 4 \n\t"
598
+ "srl %[temp0], %[temp0], 3 \n\t"
599
+ "replv.qb %[temp0], %[temp0] \n\t"
600
+ "usw %[temp0], 0*"XSTR(BPS)"(%[dst]) \n\t"
601
+ "usw %[temp0], 1*"XSTR(BPS)"(%[dst]) \n\t"
602
+ "usw %[temp0], 2*"XSTR(BPS)"(%[dst]) \n\t"
603
+ "usw %[temp0], 3*"XSTR(BPS)"(%[dst]) \n\t"
604
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1)
605
+ : [top]"r"(top), [dst]"r"(dst)
606
+ : "memory"
607
+ );
608
+ }
609
+
610
+ static void TM4(uint8_t* dst, const uint8_t* top) {
611
+ int a10, a32, temp0, temp1, temp2, temp3, temp4, temp5;
612
+ const int c35 = 0xff00ff;
613
+ __asm__ volatile (
614
+ "lbu %[temp1], 0(%[top]) \n\t"
615
+ "lbu %[a10], 1(%[top]) \n\t"
616
+ "lbu %[temp2], 2(%[top]) \n\t"
617
+ "lbu %[a32], 3(%[top]) \n\t"
618
+ "ulw %[temp0], -5(%[top]) \n\t"
619
+ "lbu %[temp4], -1(%[top]) \n\t"
620
+ "append %[a10], %[temp1], 16 \n\t"
621
+ "append %[a32], %[temp2], 16 \n\t"
622
+ "replv.ph %[temp4], %[temp4] \n\t"
623
+ "shrl.ph %[temp1], %[temp0], 8 \n\t"
624
+ "and %[temp0], %[temp0], %[c35] \n\t"
625
+ "subu.ph %[temp1], %[temp1], %[temp4] \n\t"
626
+ "subu.ph %[temp0], %[temp0], %[temp4] \n\t"
627
+ "srl %[temp2], %[temp1], 16 \n\t"
628
+ "srl %[temp3], %[temp0], 16 \n\t"
629
+ "replv.ph %[temp2], %[temp2] \n\t"
630
+ "replv.ph %[temp3], %[temp3] \n\t"
631
+ "replv.ph %[temp4], %[temp1] \n\t"
632
+ "replv.ph %[temp5], %[temp0] \n\t"
633
+ "addu.ph %[temp0], %[temp3], %[a10] \n\t"
634
+ "addu.ph %[temp1], %[temp3], %[a32] \n\t"
635
+ "addu.ph %[temp3], %[temp2], %[a10] \n\t"
636
+ "addu.ph %[temp2], %[temp2], %[a32] \n\t"
637
+ "shll_s.ph %[temp0], %[temp0], 7 \n\t"
638
+ "shll_s.ph %[temp1], %[temp1], 7 \n\t"
639
+ "shll_s.ph %[temp3], %[temp3], 7 \n\t"
640
+ "shll_s.ph %[temp2], %[temp2], 7 \n\t"
641
+ "precrqu_s.qb.ph %[temp0], %[temp1], %[temp0] \n\t"
642
+ "precrqu_s.qb.ph %[temp1], %[temp2], %[temp3] \n\t"
643
+ "addu.ph %[temp2], %[temp5], %[a10] \n\t"
644
+ "addu.ph %[temp3], %[temp5], %[a32] \n\t"
645
+ "addu.ph %[temp5], %[temp4], %[a10] \n\t"
646
+ "addu.ph %[temp4], %[temp4], %[a32] \n\t"
647
+ "shll_s.ph %[temp2], %[temp2], 7 \n\t"
648
+ "shll_s.ph %[temp3], %[temp3], 7 \n\t"
649
+ "shll_s.ph %[temp4], %[temp4], 7 \n\t"
650
+ "shll_s.ph %[temp5], %[temp5], 7 \n\t"
651
+ "precrqu_s.qb.ph %[temp2], %[temp3], %[temp2] \n\t"
652
+ "precrqu_s.qb.ph %[temp3], %[temp4], %[temp5] \n\t"
653
+ "usw %[temp1], 0*"XSTR(BPS)"(%[dst]) \n\t"
654
+ "usw %[temp0], 1*"XSTR(BPS)"(%[dst]) \n\t"
655
+ "usw %[temp3], 2*"XSTR(BPS)"(%[dst]) \n\t"
656
+ "usw %[temp2], 3*"XSTR(BPS)"(%[dst]) \n\t"
657
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
658
+ [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5),
659
+ [a10]"=&r"(a10), [a32]"=&r"(a32)
660
+ : [c35]"r"(c35), [top]"r"(top), [dst]"r"(dst)
661
+ : "memory"
662
+ );
663
+ }
664
+
665
+ static void VE4(uint8_t* dst, const uint8_t* top) {
666
+ int temp0, temp1, temp2, temp3, temp4, temp5, temp6;
667
+ __asm__ volatile(
668
+ "ulw %[temp0], -1(%[top]) \n\t"
669
+ "ulh %[temp1], 3(%[top]) \n\t"
670
+ "preceu.ph.qbr %[temp2], %[temp0] \n\t"
671
+ "preceu.ph.qbl %[temp3], %[temp0] \n\t"
672
+ "preceu.ph.qbr %[temp4], %[temp1] \n\t"
673
+ "packrl.ph %[temp5], %[temp3], %[temp2] \n\t"
674
+ "packrl.ph %[temp6], %[temp4], %[temp3] \n\t"
675
+ "shll.ph %[temp5], %[temp5], 1 \n\t"
676
+ "shll.ph %[temp6], %[temp6], 1 \n\t"
677
+ "addq.ph %[temp2], %[temp5], %[temp2] \n\t"
678
+ "addq.ph %[temp6], %[temp6], %[temp4] \n\t"
679
+ "addq.ph %[temp2], %[temp2], %[temp3] \n\t"
680
+ "addq.ph %[temp6], %[temp6], %[temp3] \n\t"
681
+ "shra_r.ph %[temp2], %[temp2], 2 \n\t"
682
+ "shra_r.ph %[temp6], %[temp6], 2 \n\t"
683
+ "precr.qb.ph %[temp4], %[temp6], %[temp2] \n\t"
684
+ "usw %[temp4], 0*"XSTR(BPS)"(%[dst]) \n\t"
685
+ "usw %[temp4], 1*"XSTR(BPS)"(%[dst]) \n\t"
686
+ "usw %[temp4], 2*"XSTR(BPS)"(%[dst]) \n\t"
687
+ "usw %[temp4], 3*"XSTR(BPS)"(%[dst]) \n\t"
688
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
689
+ [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5),
690
+ [temp6]"=&r"(temp6)
691
+ : [top]"r"(top), [dst]"r"(dst)
692
+ : "memory"
693
+ );
694
+ }
695
+
696
+ static void HE4(uint8_t* dst, const uint8_t* top) {
697
+ int temp0, temp1, temp2, temp3, temp4, temp5, temp6;
698
+ __asm__ volatile(
699
+ "ulw %[temp0], -4(%[top]) \n\t"
700
+ "lbu %[temp1], -5(%[top]) \n\t"
701
+ "preceu.ph.qbr %[temp2], %[temp0] \n\t"
702
+ "preceu.ph.qbl %[temp3], %[temp0] \n\t"
703
+ "replv.ph %[temp4], %[temp1] \n\t"
704
+ "packrl.ph %[temp5], %[temp3], %[temp2] \n\t"
705
+ "packrl.ph %[temp6], %[temp2], %[temp4] \n\t"
706
+ "shll.ph %[temp5], %[temp5], 1 \n\t"
707
+ "shll.ph %[temp6], %[temp6], 1 \n\t"
708
+ "addq.ph %[temp3], %[temp3], %[temp5] \n\t"
709
+ "addq.ph %[temp3], %[temp3], %[temp2] \n\t"
710
+ "addq.ph %[temp2], %[temp2], %[temp6] \n\t"
711
+ "addq.ph %[temp2], %[temp2], %[temp4] \n\t"
712
+ "shra_r.ph %[temp3], %[temp3], 2 \n\t"
713
+ "shra_r.ph %[temp2], %[temp2], 2 \n\t"
714
+ "replv.qb %[temp0], %[temp3] \n\t"
715
+ "replv.qb %[temp1], %[temp2] \n\t"
716
+ "srl %[temp3], %[temp3], 16 \n\t"
717
+ "srl %[temp2], %[temp2], 16 \n\t"
718
+ "replv.qb %[temp3], %[temp3] \n\t"
719
+ "replv.qb %[temp2], %[temp2] \n\t"
720
+ "usw %[temp3], 0*"XSTR(BPS)"(%[dst]) \n\t"
721
+ "usw %[temp0], 1*"XSTR(BPS)"(%[dst]) \n\t"
722
+ "usw %[temp2], 2*"XSTR(BPS)"(%[dst]) \n\t"
723
+ "usw %[temp1], 3*"XSTR(BPS)"(%[dst]) \n\t"
724
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
725
+ [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5),
726
+ [temp6]"=&r"(temp6)
727
+ : [top]"r"(top), [dst]"r"(dst)
728
+ : "memory"
729
+ );
730
+ }
731
+
732
+ static void RD4(uint8_t* dst, const uint8_t* top) {
733
+ int temp0, temp1, temp2, temp3, temp4, temp5;
734
+ int temp6, temp7, temp8, temp9, temp10, temp11;
735
+ __asm__ volatile(
736
+ "ulw %[temp0], -5(%[top]) \n\t"
737
+ "ulw %[temp1], -1(%[top]) \n\t"
738
+ "preceu.ph.qbl %[temp2], %[temp0] \n\t"
739
+ "preceu.ph.qbr %[temp3], %[temp0] \n\t"
740
+ "preceu.ph.qbr %[temp4], %[temp1] \n\t"
741
+ "preceu.ph.qbl %[temp5], %[temp1] \n\t"
742
+ "packrl.ph %[temp6], %[temp2], %[temp3] \n\t"
743
+ "packrl.ph %[temp7], %[temp4], %[temp2] \n\t"
744
+ "packrl.ph %[temp8], %[temp5], %[temp4] \n\t"
745
+ "shll.ph %[temp6], %[temp6], 1 \n\t"
746
+ "addq.ph %[temp9], %[temp2], %[temp6] \n\t"
747
+ "shll.ph %[temp7], %[temp7], 1 \n\t"
748
+ "addq.ph %[temp9], %[temp9], %[temp3] \n\t"
749
+ "shll.ph %[temp8], %[temp8], 1 \n\t"
750
+ "shra_r.ph %[temp9], %[temp9], 2 \n\t"
751
+ "addq.ph %[temp10], %[temp4], %[temp7] \n\t"
752
+ "addq.ph %[temp11], %[temp5], %[temp8] \n\t"
753
+ "addq.ph %[temp10], %[temp10], %[temp2] \n\t"
754
+ "addq.ph %[temp11], %[temp11], %[temp4] \n\t"
755
+ "shra_r.ph %[temp10], %[temp10], 2 \n\t"
756
+ "shra_r.ph %[temp11], %[temp11], 2 \n\t"
757
+ "lbu %[temp0], 3(%[top]) \n\t"
758
+ "lbu %[temp1], 2(%[top]) \n\t"
759
+ "lbu %[temp2], 1(%[top]) \n\t"
760
+ "sll %[temp1], %[temp1], 1 \n\t"
761
+ "addu %[temp0], %[temp0], %[temp1] \n\t"
762
+ "addu %[temp0], %[temp0], %[temp2] \n\t"
763
+ "precr.qb.ph %[temp9], %[temp10], %[temp9] \n\t"
764
+ "shra_r.w %[temp0], %[temp0], 2 \n\t"
765
+ "precr.qb.ph %[temp10], %[temp11], %[temp10] \n\t"
766
+ "usw %[temp9], 3*"XSTR(BPS)"(%[dst]) \n\t"
767
+ "usw %[temp10], 1*"XSTR(BPS)"(%[dst]) \n\t"
768
+ "prepend %[temp9], %[temp11], 8 \n\t"
769
+ "prepend %[temp10], %[temp0], 8 \n\t"
770
+ "usw %[temp9], 2*"XSTR(BPS)"(%[dst]) \n\t"
771
+ "usw %[temp10], 0*"XSTR(BPS)"(%[dst]) \n\t"
772
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
773
+ [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5),
774
+ [temp6]"=&r"(temp6), [temp7]"=&r"(temp7), [temp8]"=&r"(temp8),
775
+ [temp9]"=&r"(temp9), [temp10]"=&r"(temp10), [temp11]"=&r"(temp11)
776
+ : [top]"r"(top), [dst]"r"(dst)
777
+ : "memory"
778
+ );
779
+ }
780
+
781
+ static void VR4(uint8_t* dst, const uint8_t* top) {
782
+ int temp0, temp1, temp2, temp3, temp4;
783
+ int temp5, temp6, temp7, temp8, temp9;
784
+ __asm__ volatile (
785
+ "ulw %[temp0], -4(%[top]) \n\t"
786
+ "ulw %[temp1], 0(%[top]) \n\t"
787
+ "preceu.ph.qbl %[temp2], %[temp0] \n\t"
788
+ "preceu.ph.qbr %[temp0], %[temp0] \n\t"
789
+ "preceu.ph.qbla %[temp3], %[temp1] \n\t"
790
+ "preceu.ph.qbra %[temp1], %[temp1] \n\t"
791
+ "packrl.ph %[temp7], %[temp3], %[temp2] \n\t"
792
+ "addqh_r.ph %[temp4], %[temp1], %[temp3] \n\t"
793
+ "move %[temp6], %[temp1] \n\t"
794
+ "append %[temp1], %[temp2], 16 \n\t"
795
+ "shll.ph %[temp9], %[temp6], 1 \n\t"
796
+ "addqh_r.ph %[temp5], %[temp7], %[temp6] \n\t"
797
+ "shll.ph %[temp8], %[temp7], 1 \n\t"
798
+ "addu.ph %[temp3], %[temp7], %[temp3] \n\t"
799
+ "addu.ph %[temp1], %[temp1], %[temp6] \n\t"
800
+ "packrl.ph %[temp7], %[temp2], %[temp0] \n\t"
801
+ "addu.ph %[temp6], %[temp0], %[temp2] \n\t"
802
+ "addu.ph %[temp3], %[temp3], %[temp9] \n\t"
803
+ "addu.ph %[temp1], %[temp1], %[temp8] \n\t"
804
+ "shll.ph %[temp7], %[temp7], 1 \n\t"
805
+ "shra_r.ph %[temp3], %[temp3], 2 \n\t"
806
+ "shra_r.ph %[temp1], %[temp1], 2 \n\t"
807
+ "addu.ph %[temp6], %[temp6], %[temp7] \n\t"
808
+ "shra_r.ph %[temp6], %[temp6], 2 \n\t"
809
+ "precrq.ph.w %[temp8], %[temp4], %[temp5] \n\t"
810
+ "append %[temp4], %[temp5], 16 \n\t"
811
+ "precrq.ph.w %[temp2], %[temp3], %[temp1] \n\t"
812
+ "append %[temp3], %[temp1], 16 \n\t"
813
+ "precr.qb.ph %[temp8], %[temp8], %[temp4] \n\t"
814
+ "precr.qb.ph %[temp3], %[temp2], %[temp3] \n\t"
815
+ "usw %[temp8], 0*"XSTR(BPS)"(%[dst]) \n\t"
816
+ "usw %[temp3], 1*"XSTR(BPS)"(%[dst]) \n\t"
817
+ "append %[temp3], %[temp6], 8 \n\t"
818
+ "srl %[temp6], %[temp6], 16 \n\t"
819
+ "append %[temp8], %[temp6], 8 \n\t"
820
+ "usw %[temp3], 3*"XSTR(BPS)"(%[dst]) \n\t"
821
+ "usw %[temp8], 2*"XSTR(BPS)"(%[dst]) \n\t"
822
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
823
+ [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5),
824
+ [temp6]"=&r"(temp6), [temp7]"=&r"(temp7), [temp8]"=&r"(temp8),
825
+ [temp9]"=&r"(temp9)
826
+ : [top]"r"(top), [dst]"r"(dst)
827
+ : "memory"
828
+ );
829
+ }
830
+
831
+ static void LD4(uint8_t* dst, const uint8_t* top) {
832
+ int temp0, temp1, temp2, temp3, temp4, temp5;
833
+ int temp6, temp7, temp8, temp9, temp10, temp11;
834
+ __asm__ volatile(
835
+ "ulw %[temp0], 0(%[top]) \n\t"
836
+ "ulw %[temp1], 4(%[top]) \n\t"
837
+ "preceu.ph.qbl %[temp2], %[temp0] \n\t"
838
+ "preceu.ph.qbr %[temp3], %[temp0] \n\t"
839
+ "preceu.ph.qbr %[temp4], %[temp1] \n\t"
840
+ "preceu.ph.qbl %[temp5], %[temp1] \n\t"
841
+ "packrl.ph %[temp6], %[temp2], %[temp3] \n\t"
842
+ "packrl.ph %[temp7], %[temp4], %[temp2] \n\t"
843
+ "packrl.ph %[temp8], %[temp5], %[temp4] \n\t"
844
+ "shll.ph %[temp6], %[temp6], 1 \n\t"
845
+ "addq.ph %[temp9], %[temp2], %[temp6] \n\t"
846
+ "shll.ph %[temp7], %[temp7], 1 \n\t"
847
+ "addq.ph %[temp9], %[temp9], %[temp3] \n\t"
848
+ "shll.ph %[temp8], %[temp8], 1 \n\t"
849
+ "shra_r.ph %[temp9], %[temp9], 2 \n\t"
850
+ "addq.ph %[temp10], %[temp4], %[temp7] \n\t"
851
+ "addq.ph %[temp11], %[temp5], %[temp8] \n\t"
852
+ "addq.ph %[temp10], %[temp10], %[temp2] \n\t"
853
+ "addq.ph %[temp11], %[temp11], %[temp4] \n\t"
854
+ "shra_r.ph %[temp10], %[temp10], 2 \n\t"
855
+ "shra_r.ph %[temp11], %[temp11], 2 \n\t"
856
+ "srl %[temp1], %[temp1], 24 \n\t"
857
+ "sll %[temp1], %[temp1], 1 \n\t"
858
+ "raddu.w.qb %[temp5], %[temp5] \n\t"
859
+ "precr.qb.ph %[temp9], %[temp10], %[temp9] \n\t"
860
+ "precr.qb.ph %[temp10], %[temp11], %[temp10] \n\t"
861
+ "addu %[temp1], %[temp1], %[temp5] \n\t"
862
+ "shra_r.w %[temp1], %[temp1], 2 \n\t"
863
+ "usw %[temp9], 0*"XSTR(BPS)"(%[dst]) \n\t"
864
+ "usw %[temp10], 2*"XSTR(BPS)"(%[dst]) \n\t"
865
+ "prepend %[temp9], %[temp11], 8 \n\t"
866
+ "prepend %[temp10], %[temp1], 8 \n\t"
867
+ "usw %[temp9], 1*"XSTR(BPS)"(%[dst]) \n\t"
868
+ "usw %[temp10], 3*"XSTR(BPS)"(%[dst]) \n\t"
869
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
870
+ [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5),
871
+ [temp6]"=&r"(temp6), [temp7]"=&r"(temp7), [temp8]"=&r"(temp8),
872
+ [temp9]"=&r"(temp9), [temp10]"=&r"(temp10), [temp11]"=&r"(temp11)
873
+ : [top]"r"(top), [dst]"r"(dst)
874
+ : "memory"
875
+ );
876
+ }
877
+
878
+ static void VL4(uint8_t* dst, const uint8_t* top) {
879
+ int temp0, temp1, temp2, temp3, temp4;
880
+ int temp5, temp6, temp7, temp8, temp9;
881
+ __asm__ volatile (
882
+ "ulw %[temp0], 0(%[top]) \n\t"
883
+ "ulw %[temp1], 4(%[top]) \n\t"
884
+ "preceu.ph.qbla %[temp2], %[temp0] \n\t"
885
+ "preceu.ph.qbra %[temp0], %[temp0] \n\t"
886
+ "preceu.ph.qbl %[temp3], %[temp1] \n\t"
887
+ "preceu.ph.qbr %[temp1], %[temp1] \n\t"
888
+ "addqh_r.ph %[temp4], %[temp0], %[temp2] \n\t"
889
+ "packrl.ph %[temp7], %[temp1], %[temp0] \n\t"
890
+ "precrq.ph.w %[temp6], %[temp1], %[temp2] \n\t"
891
+ "shll.ph %[temp9], %[temp2], 1 \n\t"
892
+ "addqh_r.ph %[temp5], %[temp7], %[temp2] \n\t"
893
+ "shll.ph %[temp8], %[temp7], 1 \n\t"
894
+ "addu.ph %[temp2], %[temp2], %[temp6] \n\t"
895
+ "addu.ph %[temp0], %[temp0], %[temp7] \n\t"
896
+ "packrl.ph %[temp7], %[temp3], %[temp1] \n\t"
897
+ "addu.ph %[temp6], %[temp1], %[temp3] \n\t"
898
+ "addu.ph %[temp2], %[temp2], %[temp8] \n\t"
899
+ "addu.ph %[temp0], %[temp0], %[temp9] \n\t"
900
+ "shll.ph %[temp7], %[temp7], 1 \n\t"
901
+ "shra_r.ph %[temp2], %[temp2], 2 \n\t"
902
+ "shra_r.ph %[temp0], %[temp0], 2 \n\t"
903
+ "addu.ph %[temp6], %[temp6], %[temp7] \n\t"
904
+ "shra_r.ph %[temp6], %[temp6], 2 \n\t"
905
+ "precrq.ph.w %[temp8], %[temp5], %[temp4] \n\t"
906
+ "append %[temp5], %[temp4], 16 \n\t"
907
+ "precrq.ph.w %[temp3], %[temp2], %[temp0] \n\t"
908
+ "append %[temp2], %[temp0], 16 \n\t"
909
+ "precr.qb.ph %[temp8], %[temp8], %[temp5] \n\t"
910
+ "precr.qb.ph %[temp3], %[temp3], %[temp2] \n\t"
911
+ "usw %[temp8], 0*"XSTR(BPS)"(%[dst]) \n\t"
912
+ "prepend %[temp8], %[temp6], 8 \n\t"
913
+ "usw %[temp3], 1*"XSTR(BPS)"(%[dst]) \n\t"
914
+ "srl %[temp6], %[temp6], 16 \n\t"
915
+ "prepend %[temp3], %[temp6], 8 \n\t"
916
+ "usw %[temp8], 2*"XSTR(BPS)"(%[dst]) \n\t"
917
+ "usw %[temp3], 3*"XSTR(BPS)"(%[dst]) \n\t"
918
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
919
+ [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5),
920
+ [temp6]"=&r"(temp6), [temp7]"=&r"(temp7), [temp8]"=&r"(temp8),
921
+ [temp9]"=&r"(temp9)
922
+ : [top]"r"(top), [dst]"r"(dst)
923
+ : "memory"
924
+ );
925
+ }
926
+
927
+ static void HD4(uint8_t* dst, const uint8_t* top) {
928
+ int temp0, temp1, temp2, temp3, temp4;
929
+ int temp5, temp6, temp7, temp8, temp9;
930
+ __asm__ volatile (
931
+ "ulw %[temp0], -5(%[top]) \n\t"
932
+ "ulw %[temp1], -1(%[top]) \n\t"
933
+ "preceu.ph.qbla %[temp2], %[temp0] \n\t"
934
+ "preceu.ph.qbra %[temp0], %[temp0] \n\t"
935
+ "preceu.ph.qbl %[temp3], %[temp1] \n\t"
936
+ "preceu.ph.qbr %[temp1], %[temp1] \n\t"
937
+ "addqh_r.ph %[temp4], %[temp0], %[temp2] \n\t"
938
+ "packrl.ph %[temp7], %[temp1], %[temp0] \n\t"
939
+ "precrq.ph.w %[temp6], %[temp1], %[temp2] \n\t"
940
+ "shll.ph %[temp9], %[temp2], 1 \n\t"
941
+ "addqh_r.ph %[temp5], %[temp7], %[temp2] \n\t"
942
+ "shll.ph %[temp8], %[temp7], 1 \n\t"
943
+ "addu.ph %[temp2], %[temp2], %[temp6] \n\t"
944
+ "addu.ph %[temp0], %[temp0], %[temp7] \n\t"
945
+ "packrl.ph %[temp7], %[temp3], %[temp1] \n\t"
946
+ "addu.ph %[temp6], %[temp1], %[temp3] \n\t"
947
+ "addu.ph %[temp2], %[temp2], %[temp8] \n\t"
948
+ "addu.ph %[temp0], %[temp0], %[temp9] \n\t"
949
+ "shll.ph %[temp7], %[temp7], 1 \n\t"
950
+ "shra_r.ph %[temp2], %[temp2], 2 \n\t"
951
+ "shra_r.ph %[temp0], %[temp0], 2 \n\t"
952
+ "addu.ph %[temp6], %[temp6], %[temp7] \n\t"
953
+ "shra_r.ph %[temp6], %[temp6], 2 \n\t"
954
+ "precrq.ph.w %[temp1], %[temp2], %[temp5] \n\t"
955
+ "precrq.ph.w %[temp3], %[temp0], %[temp4] \n\t"
956
+ "precr.qb.ph %[temp7], %[temp6], %[temp1] \n\t"
957
+ "precr.qb.ph %[temp6], %[temp1], %[temp3] \n\t"
958
+ "usw %[temp7], 0*"XSTR(BPS)"(%[dst]) \n\t"
959
+ "usw %[temp6], 1*"XSTR(BPS)"(%[dst]) \n\t"
960
+ "append %[temp2], %[temp5], 16 \n\t"
961
+ "append %[temp0], %[temp4], 16 \n\t"
962
+ "precr.qb.ph %[temp5], %[temp3], %[temp2] \n\t"
963
+ "precr.qb.ph %[temp4], %[temp2], %[temp0] \n\t"
964
+ "usw %[temp5], 2*"XSTR(BPS)"(%[dst]) \n\t"
965
+ "usw %[temp4], 3*"XSTR(BPS)"(%[dst]) \n\t"
966
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
967
+ [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5),
968
+ [temp6]"=&r"(temp6), [temp7]"=&r"(temp7), [temp8]"=&r"(temp8),
969
+ [temp9]"=&r"(temp9)
970
+ : [top]"r"(top), [dst]"r"(dst)
971
+ : "memory"
972
+ );
973
+ }
974
+
975
+ static void HU4(uint8_t* dst, const uint8_t* top) {
976
+ int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7;
977
+ __asm__ volatile (
978
+ "ulw %[temp0], -5(%[top]) \n\t"
979
+ "preceu.ph.qbl %[temp1], %[temp0] \n\t"
980
+ "preceu.ph.qbr %[temp2], %[temp0] \n\t"
981
+ "packrl.ph %[temp3], %[temp1], %[temp2] \n\t"
982
+ "replv.qb %[temp7], %[temp2] \n\t"
983
+ "addqh_r.ph %[temp4], %[temp1], %[temp3] \n\t"
984
+ "addqh_r.ph %[temp5], %[temp3], %[temp2] \n\t"
985
+ "shll.ph %[temp6], %[temp3], 1 \n\t"
986
+ "addu.ph %[temp3], %[temp2], %[temp3] \n\t"
987
+ "addu.ph %[temp6], %[temp1], %[temp6] \n\t"
988
+ "shll.ph %[temp0], %[temp2], 1 \n\t"
989
+ "addu.ph %[temp6], %[temp6], %[temp2] \n\t"
990
+ "addu.ph %[temp0], %[temp3], %[temp0] \n\t"
991
+ "shra_r.ph %[temp6], %[temp6], 2 \n\t"
992
+ "shra_r.ph %[temp0], %[temp0], 2 \n\t"
993
+ "packrl.ph %[temp3], %[temp6], %[temp5] \n\t"
994
+ "precrq.ph.w %[temp2], %[temp6], %[temp4] \n\t"
995
+ "append %[temp0], %[temp5], 16 \n\t"
996
+ "precr.qb.ph %[temp3], %[temp3], %[temp2] \n\t"
997
+ "usw %[temp3], 0*"XSTR(BPS)"(%[dst]) \n\t"
998
+ "precr.qb.ph %[temp1], %[temp7], %[temp0] \n\t"
999
+ "usw %[temp7], 3*"XSTR(BPS)"(%[dst]) \n\t"
1000
+ "packrl.ph %[temp2], %[temp1], %[temp3] \n\t"
1001
+ "usw %[temp1], 2*"XSTR(BPS)"(%[dst]) \n\t"
1002
+ "usw %[temp2], 1*"XSTR(BPS)"(%[dst]) \n\t"
1003
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
1004
+ [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5),
1005
+ [temp6]"=&r"(temp6), [temp7]"=&r"(temp7)
1006
+ : [top]"r"(top), [dst]"r"(dst)
1007
+ : "memory"
1008
+ );
1009
+ }
1010
+
1011
+ //------------------------------------------------------------------------------
1012
+ // Chroma 8x8 prediction (paragraph 12.2)
1013
+
1014
+ static void IntraChromaPreds(uint8_t* dst, const uint8_t* left,
1015
+ const uint8_t* top) {
1016
+ // U block
1017
+ DCMode8(C8DC8 + dst, left, top);
1018
+ VerticalPred8(C8VE8 + dst, top);
1019
+ HorizontalPred8(C8HE8 + dst, left);
1020
+ TrueMotion8(C8TM8 + dst, left, top);
1021
+ // V block
1022
+ dst += 8;
1023
+ if (top) top += 8;
1024
+ if (left) left += 16;
1025
+ DCMode8(C8DC8 + dst, left, top);
1026
+ VerticalPred8(C8VE8 + dst, top);
1027
+ HorizontalPred8(C8HE8 + dst, left);
1028
+ TrueMotion8(C8TM8 + dst, left, top);
1029
+ }
1030
+
1031
+ //------------------------------------------------------------------------------
1032
+ // luma 16x16 prediction (paragraph 12.3)
1033
+
1034
+ static void Intra16Preds(uint8_t* dst,
1035
+ const uint8_t* left, const uint8_t* top) {
1036
+ DCMode16(I16DC16 + dst, left, top);
1037
+ VerticalPred16(I16VE16 + dst, top);
1038
+ HorizontalPred16(I16HE16 + dst, left);
1039
+ TrueMotion16(I16TM16 + dst, left, top);
1040
+ }
1041
+
1042
+ // Left samples are top[-5 .. -2], top_left is top[-1], top are
1043
+ // located at top[0..3], and top right is top[4..7]
1044
+ static void Intra4Preds(uint8_t* dst, const uint8_t* top) {
1045
+ DC4(I4DC4 + dst, top);
1046
+ TM4(I4TM4 + dst, top);
1047
+ VE4(I4VE4 + dst, top);
1048
+ HE4(I4HE4 + dst, top);
1049
+ RD4(I4RD4 + dst, top);
1050
+ VR4(I4VR4 + dst, top);
1051
+ LD4(I4LD4 + dst, top);
1052
+ VL4(I4VL4 + dst, top);
1053
+ HD4(I4HD4 + dst, top);
1054
+ HU4(I4HU4 + dst, top);
1055
+ }
1056
+
1057
+ //------------------------------------------------------------------------------
1058
+ // Metric
1059
+
1060
+ #if !defined(WORK_AROUND_GCC)
1061
+
1062
+ #define GET_SSE_INNER(A) \
1063
+ "lw %[temp0], "#A"(%[a]) \n\t" \
1064
+ "lw %[temp1], "#A"(%[b]) \n\t" \
1065
+ "preceu.ph.qbr %[temp2], %[temp0] \n\t" \
1066
+ "preceu.ph.qbl %[temp0], %[temp0] \n\t" \
1067
+ "preceu.ph.qbr %[temp3], %[temp1] \n\t" \
1068
+ "preceu.ph.qbl %[temp1], %[temp1] \n\t" \
1069
+ "subq.ph %[temp2], %[temp2], %[temp3] \n\t" \
1070
+ "subq.ph %[temp0], %[temp0], %[temp1] \n\t" \
1071
+ "dpa.w.ph $ac0, %[temp2], %[temp2] \n\t" \
1072
+ "dpa.w.ph $ac0, %[temp0], %[temp0] \n\t"
1073
+
1074
+ #define GET_SSE(A, B, C, D) \
1075
+ GET_SSE_INNER(A) \
1076
+ GET_SSE_INNER(B) \
1077
+ GET_SSE_INNER(C) \
1078
+ GET_SSE_INNER(D)
1079
+
1080
+ static int SSE16x16(const uint8_t* a, const uint8_t* b) {
1081
+ int count;
1082
+ int temp0, temp1, temp2, temp3;
1083
+ __asm__ volatile (
1084
+ "mult $zero, $zero \n\t"
1085
+ GET_SSE( 0 * BPS, 4 + 0 * BPS, 8 + 0 * BPS, 12 + 0 * BPS)
1086
+ GET_SSE( 1 * BPS, 4 + 1 * BPS, 8 + 1 * BPS, 12 + 1 * BPS)
1087
+ GET_SSE( 2 * BPS, 4 + 2 * BPS, 8 + 2 * BPS, 12 + 2 * BPS)
1088
+ GET_SSE( 3 * BPS, 4 + 3 * BPS, 8 + 3 * BPS, 12 + 3 * BPS)
1089
+ GET_SSE( 4 * BPS, 4 + 4 * BPS, 8 + 4 * BPS, 12 + 4 * BPS)
1090
+ GET_SSE( 5 * BPS, 4 + 5 * BPS, 8 + 5 * BPS, 12 + 5 * BPS)
1091
+ GET_SSE( 6 * BPS, 4 + 6 * BPS, 8 + 6 * BPS, 12 + 6 * BPS)
1092
+ GET_SSE( 7 * BPS, 4 + 7 * BPS, 8 + 7 * BPS, 12 + 7 * BPS)
1093
+ GET_SSE( 8 * BPS, 4 + 8 * BPS, 8 + 8 * BPS, 12 + 8 * BPS)
1094
+ GET_SSE( 9 * BPS, 4 + 9 * BPS, 8 + 9 * BPS, 12 + 9 * BPS)
1095
+ GET_SSE(10 * BPS, 4 + 10 * BPS, 8 + 10 * BPS, 12 + 10 * BPS)
1096
+ GET_SSE(11 * BPS, 4 + 11 * BPS, 8 + 11 * BPS, 12 + 11 * BPS)
1097
+ GET_SSE(12 * BPS, 4 + 12 * BPS, 8 + 12 * BPS, 12 + 12 * BPS)
1098
+ GET_SSE(13 * BPS, 4 + 13 * BPS, 8 + 13 * BPS, 12 + 13 * BPS)
1099
+ GET_SSE(14 * BPS, 4 + 14 * BPS, 8 + 14 * BPS, 12 + 14 * BPS)
1100
+ GET_SSE(15 * BPS, 4 + 15 * BPS, 8 + 15 * BPS, 12 + 15 * BPS)
1101
+ "mflo %[count] \n\t"
1102
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
1103
+ [temp3]"=&r"(temp3), [count]"=&r"(count)
1104
+ : [a]"r"(a), [b]"r"(b)
1105
+ : "memory", "hi", "lo"
1106
+ );
1107
+ return count;
1108
+ }
1109
+
1110
+ static int SSE16x8(const uint8_t* a, const uint8_t* b) {
1111
+ int count;
1112
+ int temp0, temp1, temp2, temp3;
1113
+ __asm__ volatile (
1114
+ "mult $zero, $zero \n\t"
1115
+ GET_SSE( 0 * BPS, 4 + 0 * BPS, 8 + 0 * BPS, 12 + 0 * BPS)
1116
+ GET_SSE( 1 * BPS, 4 + 1 * BPS, 8 + 1 * BPS, 12 + 1 * BPS)
1117
+ GET_SSE( 2 * BPS, 4 + 2 * BPS, 8 + 2 * BPS, 12 + 2 * BPS)
1118
+ GET_SSE( 3 * BPS, 4 + 3 * BPS, 8 + 3 * BPS, 12 + 3 * BPS)
1119
+ GET_SSE( 4 * BPS, 4 + 4 * BPS, 8 + 4 * BPS, 12 + 4 * BPS)
1120
+ GET_SSE( 5 * BPS, 4 + 5 * BPS, 8 + 5 * BPS, 12 + 5 * BPS)
1121
+ GET_SSE( 6 * BPS, 4 + 6 * BPS, 8 + 6 * BPS, 12 + 6 * BPS)
1122
+ GET_SSE( 7 * BPS, 4 + 7 * BPS, 8 + 7 * BPS, 12 + 7 * BPS)
1123
+ "mflo %[count] \n\t"
1124
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
1125
+ [temp3]"=&r"(temp3), [count]"=&r"(count)
1126
+ : [a]"r"(a), [b]"r"(b)
1127
+ : "memory", "hi", "lo"
1128
+ );
1129
+ return count;
1130
+ }
1131
+
1132
+ static int SSE8x8(const uint8_t* a, const uint8_t* b) {
1133
+ int count;
1134
+ int temp0, temp1, temp2, temp3;
1135
+ __asm__ volatile (
1136
+ "mult $zero, $zero \n\t"
1137
+ GET_SSE(0 * BPS, 4 + 0 * BPS, 1 * BPS, 4 + 1 * BPS)
1138
+ GET_SSE(2 * BPS, 4 + 2 * BPS, 3 * BPS, 4 + 3 * BPS)
1139
+ GET_SSE(4 * BPS, 4 + 4 * BPS, 5 * BPS, 4 + 5 * BPS)
1140
+ GET_SSE(6 * BPS, 4 + 6 * BPS, 7 * BPS, 4 + 7 * BPS)
1141
+ "mflo %[count] \n\t"
1142
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
1143
+ [temp3]"=&r"(temp3), [count]"=&r"(count)
1144
+ : [a]"r"(a), [b]"r"(b)
1145
+ : "memory", "hi", "lo"
1146
+ );
1147
+ return count;
1148
+ }
1149
+
1150
+ static int SSE4x4(const uint8_t* a, const uint8_t* b) {
1151
+ int count;
1152
+ int temp0, temp1, temp2, temp3;
1153
+ __asm__ volatile (
1154
+ "mult $zero, $zero \n\t"
1155
+ GET_SSE(0 * BPS, 1 * BPS, 2 * BPS, 3 * BPS)
1156
+ "mflo %[count] \n\t"
1157
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
1158
+ [temp3]"=&r"(temp3), [count]"=&r"(count)
1159
+ : [a]"r"(a), [b]"r"(b)
1160
+ : "memory", "hi", "lo"
1161
+ );
1162
+ return count;
1163
+ }
1164
+
1165
+ #undef GET_SSE
1166
+ #undef GET_SSE_INNER
1167
+
1168
+ #endif // !WORK_AROUND_GCC
1169
+
1170
+ #undef FILL_8_OR_16
1171
+ #undef FILL_PART
1172
+ #undef OUTPUT_EARLY_CLOBBER_REGS_17
1173
+ #undef MUL_HALF
1174
+ #undef ABS_X8
1175
+ #undef ADD_SUB_HALVES_X4
1176
+
1177
+ //------------------------------------------------------------------------------
1178
+ // Quantization
1179
+ //
1180
+
1181
+ // macro for one pass through for loop in QuantizeBlock reading 2 values at time
1182
+ // QUANTDIV macro inlined
1183
+ // J - offset in bytes (kZigzag[n] * 2)
1184
+ // K - offset in bytes (kZigzag[n] * 4)
1185
+ // N - offset in bytes (n * 2)
1186
+ // N1 - offset in bytes ((n + 1) * 2)
1187
+ #define QUANTIZE_ONE(J, K, N, N1) \
1188
+ "ulw %[temp1], "#J"(%[ppin]) \n\t" \
1189
+ "ulw %[temp2], "#J"(%[ppsharpen]) \n\t" \
1190
+ "lhu %[temp3], "#K"(%[ppzthresh]) \n\t" \
1191
+ "lhu %[temp6], "#K"+4(%[ppzthresh]) \n\t" \
1192
+ "absq_s.ph %[temp4], %[temp1] \n\t" \
1193
+ "ins %[temp3], %[temp6], 16, 16 \n\t" \
1194
+ "addu.ph %[coeff], %[temp4], %[temp2] \n\t" \
1195
+ "shra.ph %[sign], %[temp1], 15 \n\t" \
1196
+ "li %[level], 0x10001 \n\t" \
1197
+ "cmp.lt.ph %[temp3], %[coeff] \n\t" \
1198
+ "lhu %[temp1], "#J"(%[ppiq]) \n\t" \
1199
+ "pick.ph %[temp5], %[level], $0 \n\t" \
1200
+ "lw %[temp2], "#K"(%[ppbias]) \n\t" \
1201
+ "beqz %[temp5], 0f \n\t" \
1202
+ "lhu %[temp3], "#J"(%[ppq]) \n\t" \
1203
+ "beq %[temp5], %[level], 1f \n\t" \
1204
+ "andi %[temp5], %[temp5], 0x1 \n\t" \
1205
+ "andi %[temp4], %[coeff], 0xffff \n\t" \
1206
+ "beqz %[temp5], 2f \n\t" \
1207
+ "mul %[level], %[temp4], %[temp1] \n\t" \
1208
+ "sh $0, "#J"+2(%[ppin]) \n\t" \
1209
+ "sh $0, "#N1"(%[pout]) \n\t" \
1210
+ "addu %[level], %[level], %[temp2] \n\t" \
1211
+ "sra %[level], %[level], 17 \n\t" \
1212
+ "slt %[temp4], %[max_level], %[level] \n\t" \
1213
+ "movn %[level], %[max_level], %[temp4] \n\t" \
1214
+ "andi %[temp6], %[sign], 0xffff \n\t" \
1215
+ "xor %[level], %[level], %[temp6] \n\t" \
1216
+ "subu %[level], %[level], %[temp6] \n\t" \
1217
+ "mul %[temp5], %[level], %[temp3] \n\t" \
1218
+ "or %[ret], %[ret], %[level] \n\t" \
1219
+ "sh %[level], "#N"(%[pout]) \n\t" \
1220
+ "sh %[temp5], "#J"(%[ppin]) \n\t" \
1221
+ "j 3f \n\t" \
1222
+ "2: \n\t" \
1223
+ "lhu %[temp1], "#J"+2(%[ppiq]) \n\t" \
1224
+ "srl %[temp5], %[coeff], 16 \n\t" \
1225
+ "mul %[level], %[temp5], %[temp1] \n\t" \
1226
+ "lw %[temp2], "#K"+4(%[ppbias]) \n\t" \
1227
+ "lhu %[temp3], "#J"+2(%[ppq]) \n\t" \
1228
+ "addu %[level], %[level], %[temp2] \n\t" \
1229
+ "sra %[level], %[level], 17 \n\t" \
1230
+ "srl %[temp6], %[sign], 16 \n\t" \
1231
+ "slt %[temp4], %[max_level], %[level] \n\t" \
1232
+ "movn %[level], %[max_level], %[temp4] \n\t" \
1233
+ "xor %[level], %[level], %[temp6] \n\t" \
1234
+ "subu %[level], %[level], %[temp6] \n\t" \
1235
+ "mul %[temp5], %[level], %[temp3] \n\t" \
1236
+ "sh $0, "#J"(%[ppin]) \n\t" \
1237
+ "sh $0, "#N"(%[pout]) \n\t" \
1238
+ "or %[ret], %[ret], %[level] \n\t" \
1239
+ "sh %[temp5], "#J"+2(%[ppin]) \n\t" \
1240
+ "sh %[level], "#N1"(%[pout]) \n\t" \
1241
+ "j 3f \n\t" \
1242
+ "1: \n\t" \
1243
+ "lhu %[temp1], "#J"(%[ppiq]) \n\t" \
1244
+ "lw %[temp2], "#K"(%[ppbias]) \n\t" \
1245
+ "ulw %[temp3], "#J"(%[ppq]) \n\t" \
1246
+ "andi %[temp5], %[coeff], 0xffff \n\t" \
1247
+ "srl %[temp0], %[coeff], 16 \n\t" \
1248
+ "lhu %[temp6], "#J"+2(%[ppiq]) \n\t" \
1249
+ "lw %[coeff], "#K"+4(%[ppbias]) \n\t" \
1250
+ "mul %[level], %[temp5], %[temp1] \n\t" \
1251
+ "mul %[temp4], %[temp0], %[temp6] \n\t" \
1252
+ "addu %[level], %[level], %[temp2] \n\t" \
1253
+ "addu %[temp4], %[temp4], %[coeff] \n\t" \
1254
+ "precrq.ph.w %[level], %[temp4], %[level] \n\t" \
1255
+ "shra.ph %[level], %[level], 1 \n\t" \
1256
+ "cmp.lt.ph %[max_level1],%[level] \n\t" \
1257
+ "pick.ph %[level], %[max_level], %[level] \n\t" \
1258
+ "xor %[level], %[level], %[sign] \n\t" \
1259
+ "subu.ph %[level], %[level], %[sign] \n\t" \
1260
+ "mul.ph %[temp3], %[level], %[temp3] \n\t" \
1261
+ "or %[ret], %[ret], %[level] \n\t" \
1262
+ "sh %[level], "#N"(%[pout]) \n\t" \
1263
+ "srl %[level], %[level], 16 \n\t" \
1264
+ "sh %[level], "#N1"(%[pout]) \n\t" \
1265
+ "usw %[temp3], "#J"(%[ppin]) \n\t" \
1266
+ "j 3f \n\t" \
1267
+ "0: \n\t" \
1268
+ "sh $0, "#N"(%[pout]) \n\t" \
1269
+ "sh $0, "#N1"(%[pout]) \n\t" \
1270
+ "usw $0, "#J"(%[ppin]) \n\t" \
1271
+ "3: \n\t"
1272
+
1273
+ static int QuantizeBlock(int16_t in[16], int16_t out[16],
1274
+ const VP8Matrix* const mtx) {
1275
+ int temp0, temp1, temp2, temp3, temp4, temp5,temp6;
1276
+ int sign, coeff, level;
1277
+ int max_level = MAX_LEVEL;
1278
+ int max_level1 = max_level << 16 | max_level;
1279
+ int ret = 0;
1280
+
1281
+ int16_t* ppin = &in[0];
1282
+ int16_t* pout = &out[0];
1283
+ const uint16_t* ppsharpen = &mtx->sharpen_[0];
1284
+ const uint32_t* ppzthresh = &mtx->zthresh_[0];
1285
+ const uint16_t* ppq = &mtx->q_[0];
1286
+ const uint16_t* ppiq = &mtx->iq_[0];
1287
+ const uint32_t* ppbias = &mtx->bias_[0];
1288
+
1289
+ __asm__ volatile (
1290
+ QUANTIZE_ONE( 0, 0, 0, 2)
1291
+ QUANTIZE_ONE( 4, 8, 10, 12)
1292
+ QUANTIZE_ONE( 8, 16, 4, 8)
1293
+ QUANTIZE_ONE(12, 24, 14, 24)
1294
+ QUANTIZE_ONE(16, 32, 6, 16)
1295
+ QUANTIZE_ONE(20, 40, 22, 26)
1296
+ QUANTIZE_ONE(24, 48, 18, 20)
1297
+ QUANTIZE_ONE(28, 56, 28, 30)
1298
+
1299
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1),
1300
+ [temp2]"=&r"(temp2), [temp3]"=&r"(temp3),
1301
+ [temp4]"=&r"(temp4), [temp5]"=&r"(temp5),
1302
+ [sign]"=&r"(sign), [coeff]"=&r"(coeff),
1303
+ [level]"=&r"(level), [temp6]"=&r"(temp6), [ret]"+&r"(ret)
1304
+ : [ppin]"r"(ppin), [pout]"r"(pout), [max_level1]"r"(max_level1),
1305
+ [ppiq]"r"(ppiq), [max_level]"r"(max_level),
1306
+ [ppbias]"r"(ppbias), [ppzthresh]"r"(ppzthresh),
1307
+ [ppsharpen]"r"(ppsharpen), [ppq]"r"(ppq)
1308
+ : "memory", "hi", "lo"
1309
+ );
1310
+
1311
+ return (ret != 0);
1312
+ }
1313
+
1314
+ static int Quantize2Blocks(int16_t in[32], int16_t out[32],
1315
+ const VP8Matrix* const mtx) {
1316
+ int nz;
1317
+ nz = QuantizeBlock(in + 0 * 16, out + 0 * 16, mtx) << 0;
1318
+ nz |= QuantizeBlock(in + 1 * 16, out + 1 * 16, mtx) << 1;
1319
+ return nz;
1320
+ }
1321
+
1322
+ #undef QUANTIZE_ONE
1323
+
1324
+ // macro for one horizontal pass in FTransformWHT
1325
+ // temp0..temp7 holds tmp[0]..tmp[15]
1326
+ // A, B, C, D - offset in bytes to load from in buffer
1327
+ // TEMP0, TEMP1 - registers for corresponding tmp elements
1328
+ #define HORIZONTAL_PASS_WHT(A, B, C, D, TEMP0, TEMP1) \
1329
+ "lh %["#TEMP0"], "#A"(%[in]) \n\t" \
1330
+ "lh %["#TEMP1"], "#B"(%[in]) \n\t" \
1331
+ "lh %[temp8], "#C"(%[in]) \n\t" \
1332
+ "lh %[temp9], "#D"(%[in]) \n\t" \
1333
+ "ins %["#TEMP1"], %["#TEMP0"], 16, 16 \n\t" \
1334
+ "ins %[temp9], %[temp8], 16, 16 \n\t" \
1335
+ "subq.ph %[temp8], %["#TEMP1"], %[temp9] \n\t" \
1336
+ "addq.ph %[temp9], %["#TEMP1"], %[temp9] \n\t" \
1337
+ "precrq.ph.w %["#TEMP0"], %[temp8], %[temp9] \n\t" \
1338
+ "append %[temp8], %[temp9], 16 \n\t" \
1339
+ "subq.ph %["#TEMP1"], %["#TEMP0"], %[temp8] \n\t" \
1340
+ "addq.ph %["#TEMP0"], %["#TEMP0"], %[temp8] \n\t" \
1341
+ "rotr %["#TEMP1"], %["#TEMP1"], 16 \n\t"
1342
+
1343
+ // macro for one vertical pass in FTransformWHT
1344
+ // temp0..temp7 holds tmp[0]..tmp[15]
1345
+ // A, B, C, D - offsets in bytes to store to out buffer
1346
+ // TEMP0, TEMP2, TEMP4 and TEMP6 - registers for corresponding tmp elements
1347
+ #define VERTICAL_PASS_WHT(A, B, C, D, TEMP0, TEMP2, TEMP4, TEMP6) \
1348
+ "addq.ph %[temp8], %["#TEMP0"], %["#TEMP4"] \n\t" \
1349
+ "addq.ph %[temp9], %["#TEMP2"], %["#TEMP6"] \n\t" \
1350
+ "subq.ph %["#TEMP2"], %["#TEMP2"], %["#TEMP6"] \n\t" \
1351
+ "subq.ph %["#TEMP6"], %["#TEMP0"], %["#TEMP4"] \n\t" \
1352
+ "addqh.ph %["#TEMP0"], %[temp8], %[temp9] \n\t" \
1353
+ "subqh.ph %["#TEMP4"], %["#TEMP6"], %["#TEMP2"] \n\t" \
1354
+ "addqh.ph %["#TEMP2"], %["#TEMP2"], %["#TEMP6"] \n\t" \
1355
+ "subqh.ph %["#TEMP6"], %[temp8], %[temp9] \n\t" \
1356
+ "usw %["#TEMP0"], "#A"(%[out]) \n\t" \
1357
+ "usw %["#TEMP2"], "#B"(%[out]) \n\t" \
1358
+ "usw %["#TEMP4"], "#C"(%[out]) \n\t" \
1359
+ "usw %["#TEMP6"], "#D"(%[out]) \n\t"
1360
+
1361
+ static void FTransformWHT(const int16_t* in, int16_t* out) {
1362
+ int temp0, temp1, temp2, temp3, temp4;
1363
+ int temp5, temp6, temp7, temp8, temp9;
1364
+
1365
+ __asm__ volatile (
1366
+ HORIZONTAL_PASS_WHT( 0, 32, 64, 96, temp0, temp1)
1367
+ HORIZONTAL_PASS_WHT(128, 160, 192, 224, temp2, temp3)
1368
+ HORIZONTAL_PASS_WHT(256, 288, 320, 352, temp4, temp5)
1369
+ HORIZONTAL_PASS_WHT(384, 416, 448, 480, temp6, temp7)
1370
+ VERTICAL_PASS_WHT(0, 8, 16, 24, temp0, temp2, temp4, temp6)
1371
+ VERTICAL_PASS_WHT(4, 12, 20, 28, temp1, temp3, temp5, temp7)
1372
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
1373
+ [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5),
1374
+ [temp6]"=&r"(temp6), [temp7]"=&r"(temp7), [temp8]"=&r"(temp8),
1375
+ [temp9]"=&r"(temp9)
1376
+ : [in]"r"(in), [out]"r"(out)
1377
+ : "memory"
1378
+ );
1379
+ }
1380
+
1381
+ #undef VERTICAL_PASS_WHT
1382
+ #undef HORIZONTAL_PASS_WHT
1383
+
1384
+ // macro for converting coefficients to bin
1385
+ // convert 8 coeffs at time
1386
+ // A, B, C, D - offsets in bytes to load from out buffer
1387
+ #define CONVERT_COEFFS_TO_BIN(A, B, C, D) \
1388
+ "ulw %[temp0], "#A"(%[out]) \n\t" \
1389
+ "ulw %[temp1], "#B"(%[out]) \n\t" \
1390
+ "ulw %[temp2], "#C"(%[out]) \n\t" \
1391
+ "ulw %[temp3], "#D"(%[out]) \n\t" \
1392
+ "absq_s.ph %[temp0], %[temp0] \n\t" \
1393
+ "absq_s.ph %[temp1], %[temp1] \n\t" \
1394
+ "absq_s.ph %[temp2], %[temp2] \n\t" \
1395
+ "absq_s.ph %[temp3], %[temp3] \n\t" \
1396
+ /* TODO(skal): add rounding ? shra_r.ph : shra.ph */ \
1397
+ /* for following 4 instructions */ \
1398
+ "shra.ph %[temp0], %[temp0], 3 \n\t" \
1399
+ "shra.ph %[temp1], %[temp1], 3 \n\t" \
1400
+ "shra.ph %[temp2], %[temp2], 3 \n\t" \
1401
+ "shra.ph %[temp3], %[temp3], 3 \n\t" \
1402
+ "shll_s.ph %[temp0], %[temp0], 10 \n\t" \
1403
+ "shll_s.ph %[temp1], %[temp1], 10 \n\t" \
1404
+ "shll_s.ph %[temp2], %[temp2], 10 \n\t" \
1405
+ "shll_s.ph %[temp3], %[temp3], 10 \n\t" \
1406
+ "shrl.ph %[temp0], %[temp0], 10 \n\t" \
1407
+ "shrl.ph %[temp1], %[temp1], 10 \n\t" \
1408
+ "shrl.ph %[temp2], %[temp2], 10 \n\t" \
1409
+ "shrl.ph %[temp3], %[temp3], 10 \n\t" \
1410
+ "shll.ph %[temp0], %[temp0], 2 \n\t" \
1411
+ "shll.ph %[temp1], %[temp1], 2 \n\t" \
1412
+ "shll.ph %[temp2], %[temp2], 2 \n\t" \
1413
+ "shll.ph %[temp3], %[temp3], 2 \n\t" \
1414
+ "ext %[temp4], %[temp0], 0, 16 \n\t" \
1415
+ "ext %[temp0], %[temp0], 16, 16 \n\t" \
1416
+ "addu %[temp4], %[temp4], %[dist] \n\t" \
1417
+ "addu %[temp0], %[temp0], %[dist] \n\t" \
1418
+ "ext %[temp5], %[temp1], 0, 16 \n\t" \
1419
+ "lw %[temp8], 0(%[temp4]) \n\t" \
1420
+ "ext %[temp1], %[temp1], 16, 16 \n\t" \
1421
+ "addu %[temp5], %[temp5], %[dist] \n\t" \
1422
+ "addiu %[temp8], %[temp8], 1 \n\t" \
1423
+ "sw %[temp8], 0(%[temp4]) \n\t" \
1424
+ "lw %[temp8], 0(%[temp0]) \n\t" \
1425
+ "addu %[temp1], %[temp1], %[dist] \n\t" \
1426
+ "ext %[temp6], %[temp2], 0, 16 \n\t" \
1427
+ "addiu %[temp8], %[temp8], 1 \n\t" \
1428
+ "sw %[temp8], 0(%[temp0]) \n\t" \
1429
+ "lw %[temp8], 0(%[temp5]) \n\t" \
1430
+ "ext %[temp2], %[temp2], 16, 16 \n\t" \
1431
+ "addu %[temp6], %[temp6], %[dist] \n\t" \
1432
+ "addiu %[temp8], %[temp8], 1 \n\t" \
1433
+ "sw %[temp8], 0(%[temp5]) \n\t" \
1434
+ "lw %[temp8], 0(%[temp1]) \n\t" \
1435
+ "addu %[temp2], %[temp2], %[dist] \n\t" \
1436
+ "ext %[temp7], %[temp3], 0, 16 \n\t" \
1437
+ "addiu %[temp8], %[temp8], 1 \n\t" \
1438
+ "sw %[temp8], 0(%[temp1]) \n\t" \
1439
+ "lw %[temp8], 0(%[temp6]) \n\t" \
1440
+ "ext %[temp3], %[temp3], 16, 16 \n\t" \
1441
+ "addu %[temp7], %[temp7], %[dist] \n\t" \
1442
+ "addiu %[temp8], %[temp8], 1 \n\t" \
1443
+ "sw %[temp8], 0(%[temp6]) \n\t" \
1444
+ "lw %[temp8], 0(%[temp2]) \n\t" \
1445
+ "addu %[temp3], %[temp3], %[dist] \n\t" \
1446
+ "addiu %[temp8], %[temp8], 1 \n\t" \
1447
+ "sw %[temp8], 0(%[temp2]) \n\t" \
1448
+ "lw %[temp8], 0(%[temp7]) \n\t" \
1449
+ "addiu %[temp8], %[temp8], 1 \n\t" \
1450
+ "sw %[temp8], 0(%[temp7]) \n\t" \
1451
+ "lw %[temp8], 0(%[temp3]) \n\t" \
1452
+ "addiu %[temp8], %[temp8], 1 \n\t" \
1453
+ "sw %[temp8], 0(%[temp3]) \n\t"
1454
+
1455
+ static void CollectHistogram(const uint8_t* ref, const uint8_t* pred,
1456
+ int start_block, int end_block,
1457
+ VP8Histogram* const histo) {
1458
+ int j;
1459
+ int distribution[MAX_COEFF_THRESH + 1] = { 0 };
1460
+ const int max_coeff = (MAX_COEFF_THRESH << 16) + MAX_COEFF_THRESH;
1461
+ for (j = start_block; j < end_block; ++j) {
1462
+ int16_t out[16];
1463
+ int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8;
1464
+
1465
+ VP8FTransform(ref + VP8DspScan[j], pred + VP8DspScan[j], out);
1466
+
1467
+ // Convert coefficients to bin.
1468
+ __asm__ volatile (
1469
+ CONVERT_COEFFS_TO_BIN( 0, 4, 8, 12)
1470
+ CONVERT_COEFFS_TO_BIN(16, 20, 24, 28)
1471
+ : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
1472
+ [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5),
1473
+ [temp6]"=&r"(temp6), [temp7]"=&r"(temp7), [temp8]"=&r"(temp8)
1474
+ : [dist]"r"(distribution), [out]"r"(out), [max_coeff]"r"(max_coeff)
1475
+ : "memory"
1476
+ );
1477
+ }
1478
+ VP8LSetHistogramData(distribution, histo);
1479
+ }
1480
+
1481
+ #undef CONVERT_COEFFS_TO_BIN
1482
+
1483
+ #endif // WEBP_USE_MIPS_DSP_R2
1484
+
1485
+ //------------------------------------------------------------------------------
1486
+ // Entry point
1487
+
1488
+ extern void VP8EncDspInitMIPSdspR2(void);
1489
+
1490
+ WEBP_TSAN_IGNORE_FUNCTION void VP8EncDspInitMIPSdspR2(void) {
1491
+ #if defined(WEBP_USE_MIPS_DSP_R2)
1492
+ VP8FTransform = FTransform;
1493
+ VP8ITransform = ITransform;
1494
+ VP8TDisto4x4 = Disto4x4;
1495
+ VP8TDisto16x16 = Disto16x16;
1496
+ VP8EncPredLuma16 = Intra16Preds;
1497
+ VP8EncPredChroma8 = IntraChromaPreds;
1498
+ VP8EncPredLuma4 = Intra4Preds;
1499
+ #if !defined(WORK_AROUND_GCC)
1500
+ VP8SSE16x16 = SSE16x16;
1501
+ VP8SSE8x8 = SSE8x8;
1502
+ VP8SSE16x8 = SSE16x8;
1503
+ VP8SSE4x4 = SSE4x4;
1504
+ #endif
1505
+ VP8EncQuantizeBlock = QuantizeBlock;
1506
+ VP8EncQuantize2Blocks = Quantize2Blocks;
1507
+ VP8FTransformWHT = FTransformWHT;
1508
+ VP8CollectHistogram = CollectHistogram;
1509
+ #endif // WEBP_USE_MIPS_DSP_R2
1510
+ }