seal 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (421) hide show
  1. data/.yardopts +1 -0
  2. data/LICENSE +13 -0
  3. data/README.md +265 -0
  4. data/ext/seal/extconf.rb +45 -0
  5. data/include/al/al.h +724 -0
  6. data/include/al/alc.h +277 -0
  7. data/include/al/efx-presets.h +402 -0
  8. data/include/al/efx.h +758 -0
  9. data/include/mpg123/mpg123.h +1034 -0
  10. data/include/ogg/config_types.h +25 -0
  11. data/include/ogg/ogg.h +210 -0
  12. data/include/ogg/os_types.h +147 -0
  13. data/include/seal.h +23 -0
  14. data/include/seal/buf.h +143 -0
  15. data/include/seal/core.h +95 -0
  16. data/include/seal/efs.h +112 -0
  17. data/include/seal/err.h +93 -0
  18. data/include/seal/fmt.h +58 -0
  19. data/include/seal/listener.h +103 -0
  20. data/include/seal/raw.h +86 -0
  21. data/include/seal/rvb.h +520 -0
  22. data/include/seal/src.h +413 -0
  23. data/include/seal/stream.h +81 -0
  24. data/include/vorbis/codec.h +243 -0
  25. data/include/vorbis/vorbisfile.h +206 -0
  26. data/mpg123/AUTHORS +150 -0
  27. data/mpg123/COPYING +773 -0
  28. data/mpg123/ChangeLog +3 -0
  29. data/mpg123/INSTALL +111 -0
  30. data/mpg123/Makefile.am +99 -0
  31. data/mpg123/Makefile.in +1043 -0
  32. data/mpg123/NEWS +1200 -0
  33. data/mpg123/NEWS.libmpg123 +133 -0
  34. data/mpg123/README +203 -0
  35. data/mpg123/TODO +38 -0
  36. data/mpg123/aclocal.m4 +1168 -0
  37. data/mpg123/build/config.guess +1530 -0
  38. data/mpg123/build/config.sub +1782 -0
  39. data/mpg123/build/depcomp +707 -0
  40. data/mpg123/build/install-sh +527 -0
  41. data/mpg123/build/ltmain.sh +9655 -0
  42. data/mpg123/build/missing +330 -0
  43. data/mpg123/configure +20267 -0
  44. data/mpg123/configure.ac +2178 -0
  45. data/mpg123/doc/ACCURACY +2 -0
  46. data/mpg123/doc/BENCHMARKING +110 -0
  47. data/mpg123/doc/BUGS +3 -0
  48. data/mpg123/doc/CONTACT +17 -0
  49. data/mpg123/doc/LICENSE +22 -0
  50. data/mpg123/doc/Makefile.am +32 -0
  51. data/mpg123/doc/Makefile.in +490 -0
  52. data/mpg123/doc/PATENTS +39 -0
  53. data/mpg123/doc/README.3DNOW +56 -0
  54. data/mpg123/doc/README.gain +171 -0
  55. data/mpg123/doc/README.remote +218 -0
  56. data/mpg123/doc/ROAD_TO_LGPL +270 -0
  57. data/mpg123/doc/THANKS +13 -0
  58. data/mpg123/doc/TODO +63 -0
  59. data/mpg123/doc/doxy_examples.c +21 -0
  60. data/mpg123/doc/doxygen.conf +41 -0
  61. data/mpg123/doc/doxyhead.xhtml +12 -0
  62. data/mpg123/doc/examples/dump_seekindex.c +41 -0
  63. data/mpg123/doc/examples/extract_frames.c +92 -0
  64. data/mpg123/doc/examples/feedseek.c +238 -0
  65. data/mpg123/doc/examples/id3dump.c +178 -0
  66. data/mpg123/doc/examples/mpg123_to_wav.c +118 -0
  67. data/mpg123/doc/examples/mpglib.c +92 -0
  68. data/mpg123/doc/examples/scan.c +47 -0
  69. data/mpg123/doc/libmpg123_speed.txt +84 -0
  70. data/mpg123/equalize.dat +37 -0
  71. data/mpg123/libmpg123.pc.in +11 -0
  72. data/mpg123/m4/addrconfig.m4 +34 -0
  73. data/mpg123/m4/libtool.m4 +7982 -0
  74. data/mpg123/m4/ltoptions.m4 +384 -0
  75. data/mpg123/m4/ltsugar.m4 +123 -0
  76. data/mpg123/m4/ltversion.m4 +23 -0
  77. data/mpg123/m4/lt~obsolete.m4 +98 -0
  78. data/mpg123/makedll.sh +19 -0
  79. data/mpg123/man1/mpg123.1 +512 -0
  80. data/mpg123/mpg123.spec +68 -0
  81. data/mpg123/mpg123.spec.in +68 -0
  82. data/mpg123/ports/MSVC++/2005/libmpg123/libmpg123.vcproj +741 -0
  83. data/mpg123/ports/MSVC++/2008/dump_seekindex/dump_seekindex.vcproj +194 -0
  84. data/mpg123/ports/MSVC++/2008/feedseek/feedseek.vcproj +195 -0
  85. data/mpg123/ports/MSVC++/2008/libmpg123/libmpg123.vcproj +1357 -0
  86. data/mpg123/ports/MSVC++/2008/mpg123.sln +44 -0
  87. data/mpg123/ports/MSVC++/2008/mpglib/mpglib.vcproj +191 -0
  88. data/mpg123/ports/MSVC++/2008/scan/scan.vcproj +195 -0
  89. data/mpg123/ports/MSVC++/2008clr/2008clr.sln +81 -0
  90. data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Program.cs +435 -0
  91. data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Properties/AssemblyInfo.cs +36 -0
  92. data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/ReplaceReaderclr.csproj +72 -0
  93. data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/Program.cs +331 -0
  94. data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/Properties/AssemblyInfo.cs +36 -0
  95. data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/feedseekclr.csproj +71 -0
  96. data/mpg123/ports/MSVC++/2008clr/examples/scanclr/Program.cs +79 -0
  97. data/mpg123/ports/MSVC++/2008clr/examples/scanclr/Properties/AssemblyInfo.cs +36 -0
  98. data/mpg123/ports/MSVC++/2008clr/examples/scanclr/scanclr.csproj +70 -0
  99. data/mpg123/ports/MSVC++/2008clr/mpg123clr/AssemblyInfo.cpp +76 -0
  100. data/mpg123/ports/MSVC++/2008clr/mpg123clr/ReadMe.txt +165 -0
  101. data/mpg123/ports/MSVC++/2008clr/mpg123clr/advanced.cpp +91 -0
  102. data/mpg123/ports/MSVC++/2008clr/mpg123clr/advanced.h +130 -0
  103. data/mpg123/ports/MSVC++/2008clr/mpg123clr/dllmain.cpp +19 -0
  104. data/mpg123/ports/MSVC++/2008clr/mpg123clr/enum.h +218 -0
  105. data/mpg123/ports/MSVC++/2008clr/mpg123clr/error.cpp +48 -0
  106. data/mpg123/ports/MSVC++/2008clr/mpg123clr/error.h +134 -0
  107. data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v1.cpp +92 -0
  108. data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v1.h +132 -0
  109. data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v2.cpp +138 -0
  110. data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v2.h +152 -0
  111. data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.cpp +896 -0
  112. data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.h +953 -0
  113. data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.rc +102 -0
  114. data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.vcproj +328 -0
  115. data/mpg123/ports/MSVC++/2008clr/mpg123clr/resource.h +14 -0
  116. data/mpg123/ports/MSVC++/2008clr/mpg123clr/stdafx.cpp +8 -0
  117. data/mpg123/ports/MSVC++/2008clr/mpg123clr/stdafx.h +38 -0
  118. data/mpg123/ports/MSVC++/2008clr/mpg123clr/string.cpp +166 -0
  119. data/mpg123/ports/MSVC++/2008clr/mpg123clr/string.h +265 -0
  120. data/mpg123/ports/MSVC++/2008clr/mpg123clr/targetver.h +24 -0
  121. data/mpg123/ports/MSVC++/2008clr/mpg123clr/text.cpp +67 -0
  122. data/mpg123/ports/MSVC++/2008clr/mpg123clr/text.h +111 -0
  123. data/mpg123/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj +90 -0
  124. data/mpg123/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj.filters +6 -0
  125. data/mpg123/ports/MSVC++/2010/feedseek/feedseek.vcxproj +95 -0
  126. data/mpg123/ports/MSVC++/2010/feedseek/feedseek.vcxproj.filters +6 -0
  127. data/mpg123/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj +960 -0
  128. data/mpg123/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj.user +3 -0
  129. data/mpg123/ports/MSVC++/2010/libmpg123/yasm.exe +0 -0
  130. data/mpg123/ports/MSVC++/2010/mpg123.sln +38 -0
  131. data/mpg123/ports/MSVC++/2010/scan/scan.vcxproj +93 -0
  132. data/mpg123/ports/MSVC++/2010/scan/scan.vcxproj.filters +6 -0
  133. data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/CORE/CORE_FileIn.H +15 -0
  134. data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/CORE/SourceFilter_MP3.H +139 -0
  135. data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_Def.H +206 -0
  136. data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_FileIn.H +167 -0
  137. data/mpg123/ports/MSVC++/CMP3Stream/README +4 -0
  138. data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_FileIn.CPP +462 -0
  139. data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_Log.CPP +122 -0
  140. data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_Mutex.CPP +35 -0
  141. data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/SourceFilter_MP3Stream.CPP +586 -0
  142. data/mpg123/ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE +0 -0
  143. data/mpg123/ports/MSVC++/CMP3Stream/libMPG123/libMPG123.vcproj +245 -0
  144. data/mpg123/ports/MSVC++/config.h +35 -0
  145. data/mpg123/ports/MSVC++/examples/feedseek.c +240 -0
  146. data/mpg123/ports/MSVC++/examples/scan.c +47 -0
  147. data/mpg123/ports/MSVC++/mpg123.h +46 -0
  148. data/mpg123/ports/MSVC++/msvc.c +59 -0
  149. data/mpg123/ports/README +26 -0
  150. data/mpg123/ports/Sony_PSP/Makefile.psp +38 -0
  151. data/mpg123/ports/Sony_PSP/README +11 -0
  152. data/mpg123/ports/Sony_PSP/config.h +368 -0
  153. data/mpg123/ports/Sony_PSP/readers.c.patch +2 -0
  154. data/mpg123/ports/Xcode/config.h +197 -0
  155. data/mpg123/ports/Xcode/mpg123.h +17 -0
  156. data/mpg123/ports/Xcode/mpg123.xcodeproj/project.pbxproj +670 -0
  157. data/mpg123/ports/mpg123_.pas +478 -0
  158. data/mpg123/scripts/benchmark-cpu.pl +56 -0
  159. data/mpg123/scripts/tag_lyrics.py +76 -0
  160. data/mpg123/src/Makefile.am +186 -0
  161. data/mpg123/src/Makefile.in +1097 -0
  162. data/mpg123/src/audio.c +725 -0
  163. data/mpg123/src/audio.h +106 -0
  164. data/mpg123/src/buffer.c +312 -0
  165. data/mpg123/src/buffer.h +45 -0
  166. data/mpg123/src/common.c +240 -0
  167. data/mpg123/src/common.h +29 -0
  168. data/mpg123/src/config.h.in +436 -0
  169. data/mpg123/src/control_generic.c +809 -0
  170. data/mpg123/src/equalizer.c +48 -0
  171. data/mpg123/src/genre.c +271 -0
  172. data/mpg123/src/genre.h +15 -0
  173. data/mpg123/src/getlopt.c +148 -0
  174. data/mpg123/src/getlopt.h +77 -0
  175. data/mpg123/src/httpget.c +700 -0
  176. data/mpg123/src/httpget.h +66 -0
  177. data/mpg123/src/legacy_module.c +74 -0
  178. data/mpg123/src/libmpg123/Makefile.am +141 -0
  179. data/mpg123/src/libmpg123/Makefile.in +919 -0
  180. data/mpg123/src/libmpg123/compat.c +138 -0
  181. data/mpg123/src/libmpg123/compat.h +178 -0
  182. data/mpg123/src/libmpg123/dct36_3dnow.S +505 -0
  183. data/mpg123/src/libmpg123/dct36_3dnowext.S +512 -0
  184. data/mpg123/src/libmpg123/dct64.c +174 -0
  185. data/mpg123/src/libmpg123/dct64_3dnow.S +712 -0
  186. data/mpg123/src/libmpg123/dct64_3dnowext.S +714 -0
  187. data/mpg123/src/libmpg123/dct64_altivec.c +315 -0
  188. data/mpg123/src/libmpg123/dct64_i386.c +336 -0
  189. data/mpg123/src/libmpg123/dct64_i486.c +342 -0
  190. data/mpg123/src/libmpg123/dct64_mmx.S +811 -0
  191. data/mpg123/src/libmpg123/dct64_neon.S +297 -0
  192. data/mpg123/src/libmpg123/dct64_neon_float.S +270 -0
  193. data/mpg123/src/libmpg123/dct64_sse.S +454 -0
  194. data/mpg123/src/libmpg123/dct64_sse_float.S +401 -0
  195. data/mpg123/src/libmpg123/dct64_x86_64.S +464 -0
  196. data/mpg123/src/libmpg123/dct64_x86_64_float.S +426 -0
  197. data/mpg123/src/libmpg123/debug.h +171 -0
  198. data/mpg123/src/libmpg123/decode.h +268 -0
  199. data/mpg123/src/libmpg123/dither.c +119 -0
  200. data/mpg123/src/libmpg123/dither.h +23 -0
  201. data/mpg123/src/libmpg123/equalizer.c +17 -0
  202. data/mpg123/src/libmpg123/equalizer_3dnow.S +70 -0
  203. data/mpg123/src/libmpg123/feature.c +106 -0
  204. data/mpg123/src/libmpg123/format.c +521 -0
  205. data/mpg123/src/libmpg123/frame.c +1046 -0
  206. data/mpg123/src/libmpg123/frame.h +410 -0
  207. data/mpg123/src/libmpg123/gapless.h +119 -0
  208. data/mpg123/src/libmpg123/getbits.h +100 -0
  209. data/mpg123/src/libmpg123/getcpuflags.S +91 -0
  210. data/mpg123/src/libmpg123/getcpuflags.h +47 -0
  211. data/mpg123/src/libmpg123/huffman.h +340 -0
  212. data/mpg123/src/libmpg123/icy.c +32 -0
  213. data/mpg123/src/libmpg123/icy.h +38 -0
  214. data/mpg123/src/libmpg123/icy2utf8.c +438 -0
  215. data/mpg123/src/libmpg123/icy2utf8.h +10 -0
  216. data/mpg123/src/libmpg123/id3.c +999 -0
  217. data/mpg123/src/libmpg123/id3.h +43 -0
  218. data/mpg123/src/libmpg123/index.c +134 -0
  219. data/mpg123/src/libmpg123/index.h +59 -0
  220. data/mpg123/src/libmpg123/intsym.h +256 -0
  221. data/mpg123/src/libmpg123/l12_integer_tables.h +278 -0
  222. data/mpg123/src/libmpg123/l2tables.h +164 -0
  223. data/mpg123/src/libmpg123/l3_integer_tables.h +1002 -0
  224. data/mpg123/src/libmpg123/layer1.c +155 -0
  225. data/mpg123/src/libmpg123/layer2.c +371 -0
  226. data/mpg123/src/libmpg123/layer3.c +2053 -0
  227. data/mpg123/src/libmpg123/lfs_alias.c +252 -0
  228. data/mpg123/src/libmpg123/lfs_wrap.c +751 -0
  229. data/mpg123/src/libmpg123/libmpg123.c +1607 -0
  230. data/mpg123/src/libmpg123/mangle.h +74 -0
  231. data/mpg123/src/libmpg123/mpeghead.h +87 -0
  232. data/mpg123/src/libmpg123/mpg123.h.in +1075 -0
  233. data/mpg123/src/libmpg123/mpg123lib_intern.h +338 -0
  234. data/mpg123/src/libmpg123/ntom.c +148 -0
  235. data/mpg123/src/libmpg123/optimize.c +964 -0
  236. data/mpg123/src/libmpg123/optimize.h +219 -0
  237. data/mpg123/src/libmpg123/parse.c +1179 -0
  238. data/mpg123/src/libmpg123/parse.h +25 -0
  239. data/mpg123/src/libmpg123/reader.h +137 -0
  240. data/mpg123/src/libmpg123/readers.c +1235 -0
  241. data/mpg123/src/libmpg123/sample.h +152 -0
  242. data/mpg123/src/libmpg123/stringbuf.c +163 -0
  243. data/mpg123/src/libmpg123/synth.c +816 -0
  244. data/mpg123/src/libmpg123/synth.h +196 -0
  245. data/mpg123/src/libmpg123/synth_3dnow.S +318 -0
  246. data/mpg123/src/libmpg123/synth_3dnowext.S +6 -0
  247. data/mpg123/src/libmpg123/synth_8bit.c +142 -0
  248. data/mpg123/src/libmpg123/synth_8bit.h +86 -0
  249. data/mpg123/src/libmpg123/synth_altivec.c +1057 -0
  250. data/mpg123/src/libmpg123/synth_arm.S +271 -0
  251. data/mpg123/src/libmpg123/synth_arm_accurate.S +287 -0
  252. data/mpg123/src/libmpg123/synth_i486.c +252 -0
  253. data/mpg123/src/libmpg123/synth_i586.S +336 -0
  254. data/mpg123/src/libmpg123/synth_i586_dither.S +375 -0
  255. data/mpg123/src/libmpg123/synth_mmx.S +125 -0
  256. data/mpg123/src/libmpg123/synth_mono.h +64 -0
  257. data/mpg123/src/libmpg123/synth_neon.S +123 -0
  258. data/mpg123/src/libmpg123/synth_neon_accurate.S +173 -0
  259. data/mpg123/src/libmpg123/synth_neon_float.S +149 -0
  260. data/mpg123/src/libmpg123/synth_neon_s32.S +168 -0
  261. data/mpg123/src/libmpg123/synth_ntom.h +213 -0
  262. data/mpg123/src/libmpg123/synth_real.c +404 -0
  263. data/mpg123/src/libmpg123/synth_s32.c +411 -0
  264. data/mpg123/src/libmpg123/synth_sse.S +6 -0
  265. data/mpg123/src/libmpg123/synth_sse3d.h +246 -0
  266. data/mpg123/src/libmpg123/synth_sse_accurate.S +294 -0
  267. data/mpg123/src/libmpg123/synth_sse_float.S +241 -0
  268. data/mpg123/src/libmpg123/synth_sse_s32.S +306 -0
  269. data/mpg123/src/libmpg123/synth_stereo_neon.S +175 -0
  270. data/mpg123/src/libmpg123/synth_stereo_neon_accurate.S +262 -0
  271. data/mpg123/src/libmpg123/synth_stereo_neon_float.S +220 -0
  272. data/mpg123/src/libmpg123/synth_stereo_neon_s32.S +247 -0
  273. data/mpg123/src/libmpg123/synth_stereo_sse_accurate.S +508 -0
  274. data/mpg123/src/libmpg123/synth_stereo_sse_float.S +416 -0
  275. data/mpg123/src/libmpg123/synth_stereo_sse_s32.S +540 -0
  276. data/mpg123/src/libmpg123/synth_stereo_x86_64.S +335 -0
  277. data/mpg123/src/libmpg123/synth_stereo_x86_64_accurate.S +454 -0
  278. data/mpg123/src/libmpg123/synth_stereo_x86_64_float.S +396 -0
  279. data/mpg123/src/libmpg123/synth_stereo_x86_64_s32.S +473 -0
  280. data/mpg123/src/libmpg123/synth_x86_64.S +244 -0
  281. data/mpg123/src/libmpg123/synth_x86_64_accurate.S +301 -0
  282. data/mpg123/src/libmpg123/synth_x86_64_float.S +259 -0
  283. data/mpg123/src/libmpg123/synth_x86_64_s32.S +312 -0
  284. data/mpg123/src/libmpg123/synths.h +52 -0
  285. data/mpg123/src/libmpg123/tabinit.c +294 -0
  286. data/mpg123/src/libmpg123/tabinit_mmx.S +210 -0
  287. data/mpg123/src/libmpg123/testcpu.c +35 -0
  288. data/mpg123/src/libmpg123/true.h +14 -0
  289. data/mpg123/src/local.c +63 -0
  290. data/mpg123/src/local.h +21 -0
  291. data/mpg123/src/metaprint.c +373 -0
  292. data/mpg123/src/metaprint.h +17 -0
  293. data/mpg123/src/module.c +306 -0
  294. data/mpg123/src/module.h +48 -0
  295. data/mpg123/src/mpg123.c +1405 -0
  296. data/mpg123/src/mpg123app.h +171 -0
  297. data/mpg123/src/output/Makefile.am +213 -0
  298. data/mpg123/src/output/Makefile.in +1238 -0
  299. data/mpg123/src/output/aix.c +300 -0
  300. data/mpg123/src/output/alib.c +209 -0
  301. data/mpg123/src/output/alsa.c +297 -0
  302. data/mpg123/src/output/arts.c +117 -0
  303. data/mpg123/src/output/coreaudio.c +370 -0
  304. data/mpg123/src/output/dummy.c +78 -0
  305. data/mpg123/src/output/esd.c +167 -0
  306. data/mpg123/src/output/hp.c +184 -0
  307. data/mpg123/src/output/jack.c +450 -0
  308. data/mpg123/src/output/mint.c +197 -0
  309. data/mpg123/src/output/nas.c +335 -0
  310. data/mpg123/src/output/openal.c +197 -0
  311. data/mpg123/src/output/os2.c +665 -0
  312. data/mpg123/src/output/oss.c +319 -0
  313. data/mpg123/src/output/portaudio.c +255 -0
  314. data/mpg123/src/output/pulse.c +164 -0
  315. data/mpg123/src/output/sdl.c +206 -0
  316. data/mpg123/src/output/sgi.c +213 -0
  317. data/mpg123/src/output/sndio.c +161 -0
  318. data/mpg123/src/output/sun.c +281 -0
  319. data/mpg123/src/output/win32.c +229 -0
  320. data/mpg123/src/playlist.c +596 -0
  321. data/mpg123/src/playlist.h +52 -0
  322. data/mpg123/src/resolver.c +319 -0
  323. data/mpg123/src/resolver.h +25 -0
  324. data/mpg123/src/sfifo.c +146 -0
  325. data/mpg123/src/sfifo.h +95 -0
  326. data/mpg123/src/streamdump.c +74 -0
  327. data/mpg123/src/streamdump.h +20 -0
  328. data/mpg123/src/term.c +479 -0
  329. data/mpg123/src/term.h +81 -0
  330. data/mpg123/src/tests/noise.c +52 -0
  331. data/mpg123/src/tests/plain_id3.c +109 -0
  332. data/mpg123/src/tests/seek_accuracy.c +261 -0
  333. data/mpg123/src/tests/seek_whence.c +56 -0
  334. data/mpg123/src/tests/testtext.h +34 -0
  335. data/mpg123/src/tests/text.c +80 -0
  336. data/mpg123/src/wav.c +464 -0
  337. data/mpg123/src/wavhead.h +68 -0
  338. data/mpg123/src/win32_net.c +599 -0
  339. data/mpg123/src/win32_support.c +191 -0
  340. data/mpg123/src/win32_support.h +152 -0
  341. data/mpg123/src/xfermem.c +321 -0
  342. data/mpg123/src/xfermem.h +74 -0
  343. data/mpg123/windows-builds.sh +137 -0
  344. data/msvc/lib/OpenAL32.lib +0 -0
  345. data/spec/fixtures/heal.ogg +0 -0
  346. data/spec/fixtures/tone_up.wav +0 -0
  347. data/spec/seal/buffer_spec.rb +37 -0
  348. data/spec/seal/core_spec.rb +29 -0
  349. data/spec/seal/effect_slot_spec.rb +38 -0
  350. data/spec/seal/listener_spec.rb +33 -0
  351. data/spec/seal/reverb_spec.rb +51 -0
  352. data/spec/seal/source_spec.rb +370 -0
  353. data/spec/seal/stream_spec.rb +38 -0
  354. data/spec/spec_helper.rb +45 -0
  355. data/spec/support/attribute_examples.rb +75 -0
  356. data/spec/support/audio_object_with_format.rb +27 -0
  357. data/spec/support/movable_object.rb +22 -0
  358. data/src/libogg/bitwise.c +857 -0
  359. data/src/libogg/framing.c +2093 -0
  360. data/src/libvorbis/backends.h +144 -0
  361. data/src/libvorbis/bitrate.c +253 -0
  362. data/src/libvorbis/bitrate.h +59 -0
  363. data/src/libvorbis/block.c +1046 -0
  364. data/src/libvorbis/codebook.c +484 -0
  365. data/src/libvorbis/codebook.h +119 -0
  366. data/src/libvorbis/codec_internal.h +167 -0
  367. data/src/libvorbis/envelope.c +375 -0
  368. data/src/libvorbis/envelope.h +80 -0
  369. data/src/libvorbis/floor0.c +221 -0
  370. data/src/libvorbis/floor1.c +1100 -0
  371. data/src/libvorbis/highlevel.h +58 -0
  372. data/src/libvorbis/info.c +668 -0
  373. data/src/libvorbis/lookup.c +94 -0
  374. data/src/libvorbis/lookup.h +32 -0
  375. data/src/libvorbis/lookup_data.h +192 -0
  376. data/src/libvorbis/lpc.c +160 -0
  377. data/src/libvorbis/lpc.h +29 -0
  378. data/src/libvorbis/lsp.c +456 -0
  379. data/src/libvorbis/lsp.h +28 -0
  380. data/src/libvorbis/mapping0.c +816 -0
  381. data/src/libvorbis/masking.h +785 -0
  382. data/src/libvorbis/mdct.c +563 -0
  383. data/src/libvorbis/mdct.h +71 -0
  384. data/src/libvorbis/misc.h +57 -0
  385. data/src/libvorbis/os.h +186 -0
  386. data/src/libvorbis/psy.c +1206 -0
  387. data/src/libvorbis/psy.h +154 -0
  388. data/src/libvorbis/registry.c +45 -0
  389. data/src/libvorbis/registry.h +32 -0
  390. data/src/libvorbis/res0.c +889 -0
  391. data/src/libvorbis/scales.h +90 -0
  392. data/src/libvorbis/sharedbook.c +579 -0
  393. data/src/libvorbis/smallft.c +1255 -0
  394. data/src/libvorbis/smallft.h +34 -0
  395. data/src/libvorbis/synthesis.c +184 -0
  396. data/src/libvorbis/vorbisfile.c +2337 -0
  397. data/src/libvorbis/window.c +2135 -0
  398. data/src/libvorbis/window.h +26 -0
  399. data/src/rubyext.c +2329 -0
  400. data/src/seal/buf.c +124 -0
  401. data/src/seal/core.c +283 -0
  402. data/src/seal/efs.c +74 -0
  403. data/src/seal/err.c +118 -0
  404. data/src/seal/fmt.c +86 -0
  405. data/src/seal/listener.c +111 -0
  406. data/src/seal/mpg.c +174 -0
  407. data/src/seal/mpg.h +24 -0
  408. data/src/seal/ov.c +180 -0
  409. data/src/seal/ov.h +22 -0
  410. data/src/seal/raw.c +59 -0
  411. data/src/seal/reader.c +102 -0
  412. data/src/seal/reader.h +59 -0
  413. data/src/seal/rvb.c +368 -0
  414. data/src/seal/src.c +654 -0
  415. data/src/seal/stream.c +109 -0
  416. data/src/seal/threading.c +66 -0
  417. data/src/seal/threading.h +20 -0
  418. data/src/seal/wav.c +297 -0
  419. data/src/seal/wav.h +23 -0
  420. data/src/win32api.rb +29 -0
  421. metadata +563 -0
@@ -0,0 +1,90 @@
1
+ /********************************************************************
2
+ * *
3
+ * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
4
+ * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5
+ * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6
+ * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
7
+ * *
8
+ * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2009 *
9
+ * by the Xiph.Org Foundation http://www.xiph.org/ *
10
+ * *
11
+ ********************************************************************
12
+
13
+ function: linear scale -> dB, Bark and Mel scales
14
+ last mod: $Id: scales.h 16227 2009-07-08 06:58:46Z xiphmont $
15
+
16
+ ********************************************************************/
17
+
18
+ #ifndef _V_SCALES_H_
19
+ #define _V_SCALES_H_
20
+
21
+ #include <math.h>
22
+ #include "os.h"
23
+
24
+ #ifdef _MSC_VER
25
+ /* MS Visual Studio doesn't have C99 inline keyword. */
26
+ #define inline __inline
27
+ #endif
28
+
29
+ /* 20log10(x) */
30
+ #define VORBIS_IEEE_FLOAT32 1
31
+ #ifdef VORBIS_IEEE_FLOAT32
32
+
33
+ static inline float unitnorm(float x){
34
+ union {
35
+ ogg_uint32_t i;
36
+ float f;
37
+ } ix;
38
+ ix.f = x;
39
+ ix.i = (ix.i & 0x80000000U) | (0x3f800000U);
40
+ return ix.f;
41
+ }
42
+
43
+ /* Segher was off (too high) by ~ .3 decibel. Center the conversion correctly. */
44
+ static inline float todB(const float *x){
45
+ union {
46
+ ogg_uint32_t i;
47
+ float f;
48
+ } ix;
49
+ ix.f = *x;
50
+ ix.i = ix.i&0x7fffffff;
51
+ return (float)(ix.i * 7.17711438e-7f -764.6161886f);
52
+ }
53
+
54
+ #define todB_nn(x) todB(x)
55
+
56
+ #else
57
+
58
+ static float unitnorm(float x){
59
+ if(x<0)return(-1.f);
60
+ return(1.f);
61
+ }
62
+
63
+ #define todB(x) (*(x)==0?-400.f:log(*(x)**(x))*4.34294480f)
64
+ #define todB_nn(x) (*(x)==0.f?-400.f:log(*(x))*8.6858896f)
65
+
66
+ #endif
67
+
68
+ #define fromdB(x) (exp((x)*.11512925f))
69
+
70
+ /* The bark scale equations are approximations, since the original
71
+ table was somewhat hand rolled. The below are chosen to have the
72
+ best possible fit to the rolled tables, thus their somewhat odd
73
+ appearance (these are more accurate and over a longer range than
74
+ the oft-quoted bark equations found in the texts I have). The
75
+ approximations are valid from 0 - 30kHz (nyquist) or so.
76
+
77
+ all f in Hz, z in Bark */
78
+
79
+ #define toBARK(n) (13.1f*atan(.00074f*(n))+2.24f*atan((n)*(n)*1.85e-8f)+1e-4f*(n))
80
+ #define fromBARK(z) (102.f*(z)-2.f*pow(z,2.f)+.4f*pow(z,3.f)+pow(1.46f,z)-1.f)
81
+ #define toMEL(n) (log(1.f+(n)*.001f)*1442.695f)
82
+ #define fromMEL(m) (1000.f*exp((m)/1442.695f)-1000.f)
83
+
84
+ /* Frequency to octave. We arbitrarily declare 63.5 Hz to be octave
85
+ 0.0 */
86
+
87
+ #define toOC(n) (log(n)*1.442695f-5.965784f)
88
+ #define fromOC(o) (exp(((o)+5.965784f)*.693147f))
89
+
90
+ #endif
@@ -0,0 +1,579 @@
1
+ /********************************************************************
2
+ * *
3
+ * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
4
+ * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5
+ * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6
+ * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
7
+ * *
8
+ * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2009 *
9
+ * by the Xiph.Org Foundation http://www.xiph.org/ *
10
+ * *
11
+ ********************************************************************
12
+
13
+ function: basic shared codebook operations
14
+ last mod: $Id: sharedbook.c 17030 2010-03-25 06:52:55Z xiphmont $
15
+
16
+ ********************************************************************/
17
+
18
+ #include <stdlib.h>
19
+ #include <math.h>
20
+ #include <string.h>
21
+ #include <ogg/ogg.h>
22
+ #include "os.h"
23
+ #include "misc.h"
24
+ #include "vorbis/codec.h"
25
+ #include "codebook.h"
26
+ #include "scales.h"
27
+
28
+ /**** pack/unpack helpers ******************************************/
29
+ int _ilog(unsigned int v){
30
+ int ret=0;
31
+ while(v){
32
+ ret++;
33
+ v>>=1;
34
+ }
35
+ return(ret);
36
+ }
37
+
38
+ /* 32 bit float (not IEEE; nonnormalized mantissa +
39
+ biased exponent) : neeeeeee eeemmmmm mmmmmmmm mmmmmmmm
40
+ Why not IEEE? It's just not that important here. */
41
+
42
+ #define VQ_FEXP 10
43
+ #define VQ_FMAN 21
44
+ #define VQ_FEXP_BIAS 768 /* bias toward values smaller than 1. */
45
+
46
+ /* doesn't currently guard under/overflow */
47
+ long _float32_pack(float val){
48
+ int sign=0;
49
+ long exp;
50
+ long mant;
51
+ if(val<0){
52
+ sign=0x80000000;
53
+ val= -val;
54
+ }
55
+ exp= floor(log(val)/log(2.f)+.001); //+epsilon
56
+ mant=rint(ldexp(val,(VQ_FMAN-1)-exp));
57
+ exp=(exp+VQ_FEXP_BIAS)<<VQ_FMAN;
58
+
59
+ return(sign|exp|mant);
60
+ }
61
+
62
+ float _float32_unpack(long val){
63
+ double mant=val&0x1fffff;
64
+ int sign=val&0x80000000;
65
+ long exp =(val&0x7fe00000L)>>VQ_FMAN;
66
+ if(sign)mant= -mant;
67
+ return(ldexp(mant,exp-(VQ_FMAN-1)-VQ_FEXP_BIAS));
68
+ }
69
+
70
+ /* given a list of word lengths, generate a list of codewords. Works
71
+ for length ordered or unordered, always assigns the lowest valued
72
+ codewords first. Extended to handle unused entries (length 0) */
73
+ ogg_uint32_t *_make_words(long *l,long n,long sparsecount){
74
+ long i,j,count=0;
75
+ ogg_uint32_t marker[33];
76
+ ogg_uint32_t *r=_ogg_malloc((sparsecount?sparsecount:n)*sizeof(*r));
77
+ memset(marker,0,sizeof(marker));
78
+
79
+ for(i=0;i<n;i++){
80
+ long length=l[i];
81
+ if(length>0){
82
+ ogg_uint32_t entry=marker[length];
83
+
84
+ /* when we claim a node for an entry, we also claim the nodes
85
+ below it (pruning off the imagined tree that may have dangled
86
+ from it) as well as blocking the use of any nodes directly
87
+ above for leaves */
88
+
89
+ /* update ourself */
90
+ if(length<32 && (entry>>length)){
91
+ /* error condition; the lengths must specify an overpopulated tree */
92
+ _ogg_free(r);
93
+ return(NULL);
94
+ }
95
+ r[count++]=entry;
96
+
97
+ /* Look to see if the next shorter marker points to the node
98
+ above. if so, update it and repeat. */
99
+ {
100
+ for(j=length;j>0;j--){
101
+
102
+ if(marker[j]&1){
103
+ /* have to jump branches */
104
+ if(j==1)
105
+ marker[1]++;
106
+ else
107
+ marker[j]=marker[j-1]<<1;
108
+ break; /* invariant says next upper marker would already
109
+ have been moved if it was on the same path */
110
+ }
111
+ marker[j]++;
112
+ }
113
+ }
114
+
115
+ /* prune the tree; the implicit invariant says all the longer
116
+ markers were dangling from our just-taken node. Dangle them
117
+ from our *new* node. */
118
+ for(j=length+1;j<33;j++)
119
+ if((marker[j]>>1) == entry){
120
+ entry=marker[j];
121
+ marker[j]=marker[j-1]<<1;
122
+ }else
123
+ break;
124
+ }else
125
+ if(sparsecount==0)count++;
126
+ }
127
+
128
+ /* sanity check the huffman tree; an underpopulated tree must be
129
+ rejected. The only exception is the one-node pseudo-nil tree,
130
+ which appears to be underpopulated because the tree doesn't
131
+ really exist; there's only one possible 'codeword' or zero bits,
132
+ but the above tree-gen code doesn't mark that. */
133
+ if(sparsecount != 1){
134
+ for(i=1;i<33;i++)
135
+ if(marker[i] & (0xffffffffUL>>(32-i))){
136
+ _ogg_free(r);
137
+ return(NULL);
138
+ }
139
+ }
140
+
141
+ /* bitreverse the words because our bitwise packer/unpacker is LSb
142
+ endian */
143
+ for(i=0,count=0;i<n;i++){
144
+ ogg_uint32_t temp=0;
145
+ for(j=0;j<l[i];j++){
146
+ temp<<=1;
147
+ temp|=(r[count]>>j)&1;
148
+ }
149
+
150
+ if(sparsecount){
151
+ if(l[i])
152
+ r[count++]=temp;
153
+ }else
154
+ r[count++]=temp;
155
+ }
156
+
157
+ return(r);
158
+ }
159
+
160
+ /* there might be a straightforward one-line way to do the below
161
+ that's portable and totally safe against roundoff, but I haven't
162
+ thought of it. Therefore, we opt on the side of caution */
163
+ long _book_maptype1_quantvals(const static_codebook *b){
164
+ long vals=floor(pow((float)b->entries,1.f/b->dim));
165
+
166
+ /* the above *should* be reliable, but we'll not assume that FP is
167
+ ever reliable when bitstream sync is at stake; verify via integer
168
+ means that vals really is the greatest value of dim for which
169
+ vals^b->bim <= b->entries */
170
+ /* treat the above as an initial guess */
171
+ while(1){
172
+ long acc=1;
173
+ long acc1=1;
174
+ int i;
175
+ for(i=0;i<b->dim;i++){
176
+ acc*=vals;
177
+ acc1*=vals+1;
178
+ }
179
+ if(acc<=b->entries && acc1>b->entries){
180
+ return(vals);
181
+ }else{
182
+ if(acc>b->entries){
183
+ vals--;
184
+ }else{
185
+ vals++;
186
+ }
187
+ }
188
+ }
189
+ }
190
+
191
+ /* unpack the quantized list of values for encode/decode ***********/
192
+ /* we need to deal with two map types: in map type 1, the values are
193
+ generated algorithmically (each column of the vector counts through
194
+ the values in the quant vector). in map type 2, all the values came
195
+ in in an explicit list. Both value lists must be unpacked */
196
+ float *_book_unquantize(const static_codebook *b,int n,int *sparsemap){
197
+ long j,k,count=0;
198
+ if(b->maptype==1 || b->maptype==2){
199
+ int quantvals;
200
+ float mindel=_float32_unpack(b->q_min);
201
+ float delta=_float32_unpack(b->q_delta);
202
+ float *r=_ogg_calloc(n*b->dim,sizeof(*r));
203
+
204
+ /* maptype 1 and 2 both use a quantized value vector, but
205
+ different sizes */
206
+ switch(b->maptype){
207
+ case 1:
208
+ /* most of the time, entries%dimensions == 0, but we need to be
209
+ well defined. We define that the possible vales at each
210
+ scalar is values == entries/dim. If entries%dim != 0, we'll
211
+ have 'too few' values (values*dim<entries), which means that
212
+ we'll have 'left over' entries; left over entries use zeroed
213
+ values (and are wasted). So don't generate codebooks like
214
+ that */
215
+ quantvals=_book_maptype1_quantvals(b);
216
+ for(j=0;j<b->entries;j++){
217
+ if((sparsemap && b->lengthlist[j]) || !sparsemap){
218
+ float last=0.f;
219
+ int indexdiv=1;
220
+ for(k=0;k<b->dim;k++){
221
+ int index= (j/indexdiv)%quantvals;
222
+ float val=b->quantlist[index];
223
+ val=fabs(val)*delta+mindel+last;
224
+ if(b->q_sequencep)last=val;
225
+ if(sparsemap)
226
+ r[sparsemap[count]*b->dim+k]=val;
227
+ else
228
+ r[count*b->dim+k]=val;
229
+ indexdiv*=quantvals;
230
+ }
231
+ count++;
232
+ }
233
+
234
+ }
235
+ break;
236
+ case 2:
237
+ for(j=0;j<b->entries;j++){
238
+ if((sparsemap && b->lengthlist[j]) || !sparsemap){
239
+ float last=0.f;
240
+
241
+ for(k=0;k<b->dim;k++){
242
+ float val=b->quantlist[j*b->dim+k];
243
+ val=fabs(val)*delta+mindel+last;
244
+ if(b->q_sequencep)last=val;
245
+ if(sparsemap)
246
+ r[sparsemap[count]*b->dim+k]=val;
247
+ else
248
+ r[count*b->dim+k]=val;
249
+ }
250
+ count++;
251
+ }
252
+ }
253
+ break;
254
+ }
255
+
256
+ return(r);
257
+ }
258
+ return(NULL);
259
+ }
260
+
261
+ void vorbis_staticbook_destroy(static_codebook *b){
262
+ if(b->allocedp){
263
+ if(b->quantlist)_ogg_free(b->quantlist);
264
+ if(b->lengthlist)_ogg_free(b->lengthlist);
265
+ memset(b,0,sizeof(*b));
266
+ _ogg_free(b);
267
+ } /* otherwise, it is in static memory */
268
+ }
269
+
270
+ void vorbis_book_clear(codebook *b){
271
+ /* static book is not cleared; we're likely called on the lookup and
272
+ the static codebook belongs to the info struct */
273
+ if(b->valuelist)_ogg_free(b->valuelist);
274
+ if(b->codelist)_ogg_free(b->codelist);
275
+
276
+ if(b->dec_index)_ogg_free(b->dec_index);
277
+ if(b->dec_codelengths)_ogg_free(b->dec_codelengths);
278
+ if(b->dec_firsttable)_ogg_free(b->dec_firsttable);
279
+
280
+ memset(b,0,sizeof(*b));
281
+ }
282
+
283
+ int vorbis_book_init_encode(codebook *c,const static_codebook *s){
284
+
285
+ memset(c,0,sizeof(*c));
286
+ c->c=s;
287
+ c->entries=s->entries;
288
+ c->used_entries=s->entries;
289
+ c->dim=s->dim;
290
+ c->codelist=_make_words(s->lengthlist,s->entries,0);
291
+ //c->valuelist=_book_unquantize(s,s->entries,NULL);
292
+ c->quantvals=_book_maptype1_quantvals(s);
293
+ c->minval=(int)rint(_float32_unpack(s->q_min));
294
+ c->delta=(int)rint(_float32_unpack(s->q_delta));
295
+
296
+ return(0);
297
+ }
298
+
299
+ static ogg_uint32_t bitreverse(ogg_uint32_t x){
300
+ x= ((x>>16)&0x0000ffffUL) | ((x<<16)&0xffff0000UL);
301
+ x= ((x>> 8)&0x00ff00ffUL) | ((x<< 8)&0xff00ff00UL);
302
+ x= ((x>> 4)&0x0f0f0f0fUL) | ((x<< 4)&0xf0f0f0f0UL);
303
+ x= ((x>> 2)&0x33333333UL) | ((x<< 2)&0xccccccccUL);
304
+ return((x>> 1)&0x55555555UL) | ((x<< 1)&0xaaaaaaaaUL);
305
+ }
306
+
307
+ static int sort32a(const void *a,const void *b){
308
+ return ( **(ogg_uint32_t **)a>**(ogg_uint32_t **)b)-
309
+ ( **(ogg_uint32_t **)a<**(ogg_uint32_t **)b);
310
+ }
311
+
312
+ /* decode codebook arrangement is more heavily optimized than encode */
313
+ int vorbis_book_init_decode(codebook *c,const static_codebook *s){
314
+ int i,j,n=0,tabn;
315
+ int *sortindex;
316
+ memset(c,0,sizeof(*c));
317
+
318
+ /* count actually used entries */
319
+ for(i=0;i<s->entries;i++)
320
+ if(s->lengthlist[i]>0)
321
+ n++;
322
+
323
+ c->entries=s->entries;
324
+ c->used_entries=n;
325
+ c->dim=s->dim;
326
+
327
+ if(n>0){
328
+
329
+ /* two different remappings go on here.
330
+
331
+ First, we collapse the likely sparse codebook down only to
332
+ actually represented values/words. This collapsing needs to be
333
+ indexed as map-valueless books are used to encode original entry
334
+ positions as integers.
335
+
336
+ Second, we reorder all vectors, including the entry index above,
337
+ by sorted bitreversed codeword to allow treeless decode. */
338
+
339
+ /* perform sort */
340
+ ogg_uint32_t *codes=_make_words(s->lengthlist,s->entries,c->used_entries);
341
+ ogg_uint32_t **codep=alloca(sizeof(*codep)*n);
342
+
343
+ if(codes==NULL)goto err_out;
344
+
345
+ for(i=0;i<n;i++){
346
+ codes[i]=bitreverse(codes[i]);
347
+ codep[i]=codes+i;
348
+ }
349
+
350
+ qsort(codep,n,sizeof(*codep),sort32a);
351
+
352
+ sortindex=alloca(n*sizeof(*sortindex));
353
+ c->codelist=_ogg_malloc(n*sizeof(*c->codelist));
354
+ /* the index is a reverse index */
355
+ for(i=0;i<n;i++){
356
+ int position=codep[i]-codes;
357
+ sortindex[position]=i;
358
+ }
359
+
360
+ for(i=0;i<n;i++)
361
+ c->codelist[sortindex[i]]=codes[i];
362
+ _ogg_free(codes);
363
+
364
+
365
+ c->valuelist=_book_unquantize(s,n,sortindex);
366
+ c->dec_index=_ogg_malloc(n*sizeof(*c->dec_index));
367
+
368
+ for(n=0,i=0;i<s->entries;i++)
369
+ if(s->lengthlist[i]>0)
370
+ c->dec_index[sortindex[n++]]=i;
371
+
372
+ c->dec_codelengths=_ogg_malloc(n*sizeof(*c->dec_codelengths));
373
+ for(n=0,i=0;i<s->entries;i++)
374
+ if(s->lengthlist[i]>0)
375
+ c->dec_codelengths[sortindex[n++]]=s->lengthlist[i];
376
+
377
+ c->dec_firsttablen=_ilog(c->used_entries)-4; /* this is magic */
378
+ if(c->dec_firsttablen<5)c->dec_firsttablen=5;
379
+ if(c->dec_firsttablen>8)c->dec_firsttablen=8;
380
+
381
+ tabn=1<<c->dec_firsttablen;
382
+ c->dec_firsttable=_ogg_calloc(tabn,sizeof(*c->dec_firsttable));
383
+ c->dec_maxlength=0;
384
+
385
+ for(i=0;i<n;i++){
386
+ if(c->dec_maxlength<c->dec_codelengths[i])
387
+ c->dec_maxlength=c->dec_codelengths[i];
388
+ if(c->dec_codelengths[i]<=c->dec_firsttablen){
389
+ ogg_uint32_t orig=bitreverse(c->codelist[i]);
390
+ for(j=0;j<(1<<(c->dec_firsttablen-c->dec_codelengths[i]));j++)
391
+ c->dec_firsttable[orig|(j<<c->dec_codelengths[i])]=i+1;
392
+ }
393
+ }
394
+
395
+ /* now fill in 'unused' entries in the firsttable with hi/lo search
396
+ hints for the non-direct-hits */
397
+ {
398
+ ogg_uint32_t mask=0xfffffffeUL<<(31-c->dec_firsttablen);
399
+ long lo=0,hi=0;
400
+
401
+ for(i=0;i<tabn;i++){
402
+ ogg_uint32_t word=i<<(32-c->dec_firsttablen);
403
+ if(c->dec_firsttable[bitreverse(word)]==0){
404
+ while((lo+1)<n && c->codelist[lo+1]<=word)lo++;
405
+ while( hi<n && word>=(c->codelist[hi]&mask))hi++;
406
+
407
+ /* we only actually have 15 bits per hint to play with here.
408
+ In order to overflow gracefully (nothing breaks, efficiency
409
+ just drops), encode as the difference from the extremes. */
410
+ {
411
+ unsigned long loval=lo;
412
+ unsigned long hival=n-hi;
413
+
414
+ if(loval>0x7fff)loval=0x7fff;
415
+ if(hival>0x7fff)hival=0x7fff;
416
+ c->dec_firsttable[bitreverse(word)]=
417
+ 0x80000000UL | (loval<<15) | hival;
418
+ }
419
+ }
420
+ }
421
+ }
422
+ }
423
+
424
+ return(0);
425
+ err_out:
426
+ vorbis_book_clear(c);
427
+ return(-1);
428
+ }
429
+
430
+ long vorbis_book_codeword(codebook *book,int entry){
431
+ if(book->c) /* only use with encode; decode optimizations are
432
+ allowed to break this */
433
+ return book->codelist[entry];
434
+ return -1;
435
+ }
436
+
437
+ long vorbis_book_codelen(codebook *book,int entry){
438
+ if(book->c) /* only use with encode; decode optimizations are
439
+ allowed to break this */
440
+ return book->c->lengthlist[entry];
441
+ return -1;
442
+ }
443
+
444
+ #ifdef _V_SELFTEST
445
+
446
+ /* Unit tests of the dequantizer; this stuff will be OK
447
+ cross-platform, I simply want to be sure that special mapping cases
448
+ actually work properly; a bug could go unnoticed for a while */
449
+
450
+ #include <stdio.h>
451
+
452
+ /* cases:
453
+
454
+ no mapping
455
+ full, explicit mapping
456
+ algorithmic mapping
457
+
458
+ nonsequential
459
+ sequential
460
+ */
461
+
462
+ static long full_quantlist1[]={0,1,2,3, 4,5,6,7, 8,3,6,1};
463
+ static long partial_quantlist1[]={0,7,2};
464
+
465
+ /* no mapping */
466
+ static_codebook test1={
467
+ 4,16,
468
+ NULL,
469
+ 0,
470
+ 0,0,0,0,
471
+ NULL,
472
+ 0
473
+ };
474
+ static float *test1_result=NULL;
475
+
476
+ /* linear, full mapping, nonsequential */
477
+ static_codebook test2={
478
+ 4,3,
479
+ NULL,
480
+ 2,
481
+ -533200896,1611661312,4,0,
482
+ full_quantlist1,
483
+ 0
484
+ };
485
+ static float test2_result[]={-3,-2,-1,0, 1,2,3,4, 5,0,3,-2};
486
+
487
+ /* linear, full mapping, sequential */
488
+ static_codebook test3={
489
+ 4,3,
490
+ NULL,
491
+ 2,
492
+ -533200896,1611661312,4,1,
493
+ full_quantlist1,
494
+ 0
495
+ };
496
+ static float test3_result[]={-3,-5,-6,-6, 1,3,6,10, 5,5,8,6};
497
+
498
+ /* linear, algorithmic mapping, nonsequential */
499
+ static_codebook test4={
500
+ 3,27,
501
+ NULL,
502
+ 1,
503
+ -533200896,1611661312,4,0,
504
+ partial_quantlist1,
505
+ 0
506
+ };
507
+ static float test4_result[]={-3,-3,-3, 4,-3,-3, -1,-3,-3,
508
+ -3, 4,-3, 4, 4,-3, -1, 4,-3,
509
+ -3,-1,-3, 4,-1,-3, -1,-1,-3,
510
+ -3,-3, 4, 4,-3, 4, -1,-3, 4,
511
+ -3, 4, 4, 4, 4, 4, -1, 4, 4,
512
+ -3,-1, 4, 4,-1, 4, -1,-1, 4,
513
+ -3,-3,-1, 4,-3,-1, -1,-3,-1,
514
+ -3, 4,-1, 4, 4,-1, -1, 4,-1,
515
+ -3,-1,-1, 4,-1,-1, -1,-1,-1};
516
+
517
+ /* linear, algorithmic mapping, sequential */
518
+ static_codebook test5={
519
+ 3,27,
520
+ NULL,
521
+ 1,
522
+ -533200896,1611661312,4,1,
523
+ partial_quantlist1,
524
+ 0
525
+ };
526
+ static float test5_result[]={-3,-6,-9, 4, 1,-2, -1,-4,-7,
527
+ -3, 1,-2, 4, 8, 5, -1, 3, 0,
528
+ -3,-4,-7, 4, 3, 0, -1,-2,-5,
529
+ -3,-6,-2, 4, 1, 5, -1,-4, 0,
530
+ -3, 1, 5, 4, 8,12, -1, 3, 7,
531
+ -3,-4, 0, 4, 3, 7, -1,-2, 2,
532
+ -3,-6,-7, 4, 1, 0, -1,-4,-5,
533
+ -3, 1, 0, 4, 8, 7, -1, 3, 2,
534
+ -3,-4,-5, 4, 3, 2, -1,-2,-3};
535
+
536
+ void run_test(static_codebook *b,float *comp){
537
+ float *out=_book_unquantize(b,b->entries,NULL);
538
+ int i;
539
+
540
+ if(comp){
541
+ if(!out){
542
+ fprintf(stderr,"_book_unquantize incorrectly returned NULL\n");
543
+ exit(1);
544
+ }
545
+
546
+ for(i=0;i<b->entries*b->dim;i++)
547
+ if(fabs(out[i]-comp[i])>.0001){
548
+ fprintf(stderr,"disagreement in unquantized and reference data:\n"
549
+ "position %d, %g != %g\n",i,out[i],comp[i]);
550
+ exit(1);
551
+ }
552
+
553
+ }else{
554
+ if(out){
555
+ fprintf(stderr,"_book_unquantize returned a value array: \n"
556
+ " correct result should have been NULL\n");
557
+ exit(1);
558
+ }
559
+ }
560
+ }
561
+
562
+ int main(){
563
+ /* run the nine dequant tests, and compare to the hand-rolled results */
564
+ fprintf(stderr,"Dequant test 1... ");
565
+ run_test(&test1,test1_result);
566
+ fprintf(stderr,"OK\nDequant test 2... ");
567
+ run_test(&test2,test2_result);
568
+ fprintf(stderr,"OK\nDequant test 3... ");
569
+ run_test(&test3,test3_result);
570
+ fprintf(stderr,"OK\nDequant test 4... ");
571
+ run_test(&test4,test4_result);
572
+ fprintf(stderr,"OK\nDequant test 5... ");
573
+ run_test(&test5,test5_result);
574
+ fprintf(stderr,"OK\n\n");
575
+
576
+ return(0);
577
+ }
578
+
579
+ #endif