seal 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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,240 @@
1
+ /*
2
+ common: misc stuff... audio flush, status display...
3
+
4
+ copyright ?-2008 by the mpg123 project - free software under the terms of the LGPL 2.1
5
+ see COPYING and AUTHORS files in distribution or http://mpg123.org
6
+ initially written by Michael Hipp
7
+ */
8
+
9
+ #include "mpg123app.h"
10
+ #include <sys/stat.h>
11
+ #include <fcntl.h>
12
+ #include "common.h"
13
+
14
+ #include "debug.h"
15
+
16
+ const char* rva_name[3] = { "off", "mix", "album" };
17
+ static const char *modes[5] = {"Stereo", "Joint-Stereo", "Dual-Channel", "Single-Channel", "Invalid" };
18
+ static const char *smodes[5] = { "stereo", "joint-stereo", "dual-channel", "mono", "invalid" };
19
+ static const char *layers[4] = { "Unknown" , "I", "II", "III" };
20
+ static const char *versions[4] = {"1.0", "2.0", "2.5", "x.x" };
21
+ static const int samples_per_frame[4][4] =
22
+ {
23
+ { -1,384,1152,1152 }, /* MPEG 1 */
24
+ { -1,384,1152,576 }, /* MPEG 2 */
25
+ { -1,384,1152,576 }, /* MPEG 2.5 */
26
+ { -1,-1,-1,-1 }, /* Unknown */
27
+ };
28
+
29
+
30
+ #if (!defined(WIN32) || defined (__CYGWIN__)) && defined(HAVE_SIGNAL_H)
31
+ void (*catchsignal(int signum, void(*handler)()))()
32
+ {
33
+ struct sigaction new_sa;
34
+ struct sigaction old_sa;
35
+
36
+ #ifdef DONT_CATCH_SIGNALS
37
+ fprintf (stderr, "Not catching any signals.\n");
38
+ return ((void (*)()) -1);
39
+ #endif
40
+
41
+ new_sa.sa_handler = handler;
42
+ sigemptyset(&new_sa.sa_mask);
43
+ new_sa.sa_flags = 0;
44
+ if (sigaction(signum, &new_sa, &old_sa) == -1)
45
+ return ((void (*)()) -1);
46
+ return (old_sa.sa_handler);
47
+ }
48
+ #endif
49
+
50
+ /* concurring to print_rheader... here for control_generic */
51
+ const char* remote_header_help = "S <mpeg-version> <layer> <sampling freq> <mode(stereo/mono/...)> <mode_ext> <framesize> <stereo> <copyright> <error_protected> <emphasis> <bitrate> <extension> <vbr(0/1=yes/no)>";
52
+ void print_remote_header(mpg123_handle *mh)
53
+ {
54
+ struct mpg123_frameinfo i;
55
+ mpg123_info(mh, &i);
56
+ if(i.mode >= 4 || i.mode < 0) i.mode = 4;
57
+ if(i.version >= 3 || i.version < 0) i.version = 3;
58
+ generic_sendmsg("S %s %d %ld %s %d %d %d %d %d %d %d %d %d",
59
+ versions[i.version],
60
+ i.layer,
61
+ i.rate,
62
+ modes[i.mode],
63
+ i.mode_ext,
64
+ i.framesize,
65
+ i.mode == MPG123_M_MONO ? 1 : 2,
66
+ i.flags & MPG123_COPYRIGHT ? 1 : 0,
67
+ i.flags & MPG123_CRC ? 1 : 0,
68
+ i.emphasis,
69
+ i.bitrate,
70
+ i.flags & MPG123_PRIVATE ? 1 : 0,
71
+ i.vbr);
72
+ }
73
+
74
+ void print_header(mpg123_handle *mh)
75
+ {
76
+ struct mpg123_frameinfo i;
77
+ mpg123_info(mh, &i);
78
+ if(i.mode > 4 || i.mode < 0) i.mode = 4;
79
+ if(i.version > 3 || i.version < 0) i.version = 3;
80
+ if(i.layer > 3 || i.layer < 0) i.layer = 0;
81
+ fprintf(stderr,"MPEG %s, Layer: %s, Freq: %ld, mode: %s, modext: %d, BPF : %d\n",
82
+ versions[i.version],
83
+ layers[i.layer], i.rate,
84
+ modes[i.mode],i.mode_ext,i.framesize);
85
+ fprintf(stderr,"Channels: %d, copyright: %s, original: %s, CRC: %s, emphasis: %d.\n",
86
+ i.mode == MPG123_M_MONO ? 1 : 2,i.flags & MPG123_COPYRIGHT ? "Yes" : "No",
87
+ i.flags & MPG123_ORIGINAL ? "Yes" : "No", i.flags & MPG123_CRC ? "Yes" : "No",
88
+ i.emphasis);
89
+ fprintf(stderr,"Bitrate: ");
90
+ switch(i.vbr)
91
+ {
92
+ case MPG123_CBR:
93
+ if(i.bitrate) fprintf(stderr, "%d kbit/s", i.bitrate);
94
+ else fprintf(stderr, "%d kbit/s (free format)", (int)((double)(i.framesize+4)*8*i.rate*0.001/samples_per_frame[i.version][i.layer]+0.5));
95
+ break;
96
+ case MPG123_VBR: fprintf(stderr, "VBR"); break;
97
+ case MPG123_ABR: fprintf(stderr, "%d kbit/s ABR", i.abr_rate); break;
98
+ default: fprintf(stderr, "???");
99
+ }
100
+ fprintf(stderr, " Extension value: %d\n", i.flags & MPG123_PRIVATE ? 1 : 0);
101
+ }
102
+
103
+ void print_header_compact(mpg123_handle *mh)
104
+ {
105
+ struct mpg123_frameinfo i;
106
+ mpg123_info(mh, &i);
107
+ if(i.mode > 4 || i.mode < 0) i.mode = 4;
108
+ if(i.version > 3 || i.version < 0) i.version = 3;
109
+ if(i.layer > 3 || i.layer < 0) i.layer = 0;
110
+
111
+ fprintf(stderr,"MPEG %s layer %s, ", versions[i.version], layers[i.layer]);
112
+ switch(i.vbr)
113
+ {
114
+ case MPG123_CBR:
115
+ if(i.bitrate) fprintf(stderr, "%d kbit/s", i.bitrate);
116
+ else fprintf(stderr, "%d kbit/s (free format)", (int)((double)i.framesize*8*i.rate*0.001/samples_per_frame[i.version][i.layer]+0.5));
117
+ break;
118
+ case MPG123_VBR: fprintf(stderr, "VBR"); break;
119
+ case MPG123_ABR: fprintf(stderr, "%d kbit/s ABR", i.abr_rate); break;
120
+ default: fprintf(stderr, "???");
121
+ }
122
+ fprintf(stderr,", %ld Hz %s\n", i.rate, smodes[i.mode]);
123
+ }
124
+
125
+ #if 0
126
+ /* removed the strndup for better portability */
127
+ /*
128
+ * Allocate space for a new string containing the first
129
+ * "num" characters of "src". The resulting string is
130
+ * always zero-terminated. Returns NULL if malloc fails.
131
+ */
132
+ char *strndup (const char *src, int num)
133
+ {
134
+ char *dst;
135
+
136
+ if (!(dst = (char *) malloc(num+1)))
137
+ return (NULL);
138
+ dst[num] = '\0';
139
+ return (strncpy(dst, src, num));
140
+ }
141
+ #endif
142
+
143
+ /*
144
+ * Split "path" into directory and filename components.
145
+ *
146
+ * Return value is 0 if no directory was specified (i.e.
147
+ * "path" does not contain a '/'), OR if the directory
148
+ * is the same as on the previous call to this function.
149
+ *
150
+ * Return value is 1 if a directory was specified AND it
151
+ * is different from the previous one (if any).
152
+ */
153
+
154
+ int split_dir_file (const char *path, char **dname, char **fname)
155
+ {
156
+ static char *lastdir = NULL;
157
+ char *slashpos;
158
+
159
+ if ((slashpos = strrchr(path, '/'))) {
160
+ *fname = slashpos + 1;
161
+ *dname = strdup(path); /* , 1 + slashpos - path); */
162
+ if(!(*dname)) {
163
+ perror("failed to allocate memory for dir name");
164
+ return 0;
165
+ }
166
+ (*dname)[1 + slashpos - path] = 0;
167
+ if (lastdir && !strcmp(lastdir, *dname)) {
168
+ /*** same as previous directory ***/
169
+ free (*dname);
170
+ *dname = lastdir;
171
+ return 0;
172
+ }
173
+ else {
174
+ /*** different directory ***/
175
+ if (lastdir)
176
+ free (lastdir);
177
+ lastdir = *dname;
178
+ return 1;
179
+ }
180
+ }
181
+ else {
182
+ /*** no directory specified ***/
183
+ if (lastdir) {
184
+ free (lastdir);
185
+ lastdir = NULL;
186
+ };
187
+ *dname = NULL;
188
+ *fname = (char *)path;
189
+ return 0;
190
+ }
191
+ }
192
+
193
+ unsigned int roundui(double val)
194
+ {
195
+ double base = floor(val);
196
+ return (unsigned int) ((val-base) < 0.5 ? base : base + 1 );
197
+ }
198
+
199
+ void print_stat(mpg123_handle *fr, long offset, long buffsize)
200
+ {
201
+ double tim1,tim2;
202
+ off_t rno, no;
203
+ double basevol, realvol;
204
+ char *icy;
205
+ #ifndef WIN32
206
+ #ifndef GENERIC
207
+ /* Only generate new stat line when stderr is ready... don't overfill... */
208
+ {
209
+ struct timeval t;
210
+ fd_set serr;
211
+ int n,errfd = fileno(stderr);
212
+
213
+ t.tv_sec=t.tv_usec=0;
214
+
215
+ FD_ZERO(&serr);
216
+ FD_SET(errfd,&serr);
217
+ n = select(errfd+1,NULL,&serr,NULL,&t);
218
+ if(n <= 0) return;
219
+ }
220
+ #endif
221
+ #endif
222
+ if( MPG123_OK == mpg123_position(fr, offset, buffsize, &no, &rno, &tim1, &tim2)
223
+ && MPG123_OK == mpg123_getvolume(fr, &basevol, &realvol, NULL) )
224
+ {
225
+ fprintf(stderr, "\rFrame# %5"OFF_P" [%5"OFF_P"], Time: %02lu:%02u.%02u [%02u:%02u.%02u], RVA:%6s, Vol: %3u(%3u)",
226
+ (off_p)no, (off_p)rno,
227
+ (unsigned long) tim1/60, (unsigned int)tim1%60, (unsigned int)(tim1*100)%100,
228
+ (unsigned int)tim2/60, (unsigned int)tim2%60, (unsigned int)(tim2*100)%100,
229
+ rva_name[param.rva], roundui(basevol*100), roundui(realvol*100) );
230
+ if(param.usebuffer) fprintf(stderr,", [%8ld] ",(long)buffsize);
231
+ }
232
+ /* Check for changed tags here too? */
233
+ if( mpg123_meta_check(fr) & MPG123_NEW_ICY && MPG123_OK == mpg123_icy(fr, &icy) )
234
+ fprintf(stderr, "\nICY-META: %s\n", icy);
235
+ }
236
+
237
+ void clear_stat()
238
+ {
239
+ fprintf(stderr, "\r \r");
240
+ }
@@ -0,0 +1,29 @@
1
+ /*
2
+ common: anything can happen here... frame reading, output, messages
3
+
4
+ copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1
5
+ see COPYING and AUTHORS files in distribution or http://mpg123.org
6
+ initially written by Michael Hipp
7
+ */
8
+
9
+ #ifndef _MPG123_COMMON_H_
10
+ #define _MPG123_COMMON_H_
11
+
12
+ #include "mpg123app.h"
13
+
14
+ void (*catchsignal(int signum, void(*handler)()))();
15
+
16
+ void print_header(mpg123_handle *);
17
+ void print_header_compact(mpg123_handle *);
18
+ void print_stat(mpg123_handle *fr, long offset, long buffsize);
19
+ void clear_stat();
20
+ /* for control_generic */
21
+ extern const char* remote_header_help;
22
+ void print_remote_header(mpg123_handle *mh);
23
+ void generic_sendmsg (const char *fmt, ...);
24
+
25
+ int split_dir_file(const char *path, char **dname, char **fname);
26
+
27
+ extern const char* rva_name[3];
28
+ #endif
29
+
@@ -0,0 +1,436 @@
1
+ /* src/config.h.in. Generated from configure.ac by autoheader. */
2
+
3
+ /* Define if your architecture wants/needs/can use attribute_align_arg and
4
+ alignment checks. It is for 32bit x86... */
5
+ #undef ABI_ALIGN_FUN
6
+
7
+ /* Define to use proper rounding. */
8
+ #undef ACCURATE_ROUNDING
9
+
10
+ /* Define if building universal (internal helper macro) */
11
+ #undef AC_APPLE_UNIVERSAL_BUILD
12
+
13
+ /* Define if .align takes 3 for alignment of 2^3=8 bytes instead of 8. */
14
+ #undef ASMALIGN_EXP
15
+
16
+ /* Define if __attribute__((aligned(16))) shall be used */
17
+ #undef CCALIGN
18
+
19
+ /* Define if debugging is enabled. */
20
+ #undef DEBUG
21
+
22
+ /* The default audio output module(s) to use */
23
+ #undef DEFAULT_OUTPUT_MODULE
24
+
25
+ /* Define if building with dynamcally linked libmpg123 */
26
+ #undef DYNAMIC_BUILD
27
+
28
+ /* Define if FIFO support is enabled. */
29
+ #undef FIFO
30
+
31
+ /* Define if frame index should be used. */
32
+ #undef FRAME_INDEX
33
+
34
+ /* Define if gapless is enabled. */
35
+ #undef GAPLESS
36
+
37
+ /* Define to 1 if you have the <alc.h> header file. */
38
+ #undef HAVE_ALC_H
39
+
40
+ /* Define to 1 if you have the <Alib.h> header file. */
41
+ #undef HAVE_ALIB_H
42
+
43
+ /* Define to 1 if you have the <AL/alc.h> header file. */
44
+ #undef HAVE_AL_ALC_H
45
+
46
+ /* Define to 1 if you have the <AL/al.h> header file. */
47
+ #undef HAVE_AL_AL_H
48
+
49
+ /* Define to 1 if you have the <al.h> header file. */
50
+ #undef HAVE_AL_H
51
+
52
+ /* Define to 1 if you have the <arpa/inet.h> header file. */
53
+ #undef HAVE_ARPA_INET_H
54
+
55
+ /* Define to 1 if you have the <asm/audioio.h> header file. */
56
+ #undef HAVE_ASM_AUDIOIO_H
57
+
58
+ /* Define to 1 if you have the `atoll' function. */
59
+ #undef HAVE_ATOLL
60
+
61
+ /* Define to 1 if you have the <audios.h> header file. */
62
+ #undef HAVE_AUDIOS_H
63
+
64
+ /* Define to 1 if you have the <AudioToolbox/AudioToolbox.h> header file. */
65
+ #undef HAVE_AUDIOTOOLBOX_AUDIOTOOLBOX_H
66
+
67
+ /* Define to 1 if you have the <AudioUnit/AudioUnit.h> header file. */
68
+ #undef HAVE_AUDIOUNIT_AUDIOUNIT_H
69
+
70
+ /* Define to 1 if you have the <CoreServices/CoreServices.h> header file. */
71
+ #undef HAVE_CORESERVICES_CORESERVICES_H
72
+
73
+ /* Define to 1 if you have the <CUlib.h> header file. */
74
+ #undef HAVE_CULIB_H
75
+
76
+ /* Define to 1 if you have the <dlfcn.h> header file. */
77
+ #undef HAVE_DLFCN_H
78
+
79
+ /* Define if getaddrinfo accepts the AI_ADDRCONFIG flag */
80
+ #undef HAVE_GAI_ADDRCONFIG
81
+
82
+ /* Define to 1 if you have the `getaddrinfo' function. */
83
+ #undef HAVE_GETADDRINFO
84
+
85
+ /* Define to 1 if you have the `getpagesize' function. */
86
+ #undef HAVE_GETPAGESIZE
87
+
88
+ /* Define to 1 if you have the `getuid' function. */
89
+ #undef HAVE_GETUID
90
+
91
+ /* Define to 1 if you have the <inttypes.h> header file. */
92
+ #undef HAVE_INTTYPES_H
93
+
94
+ /* Define to 1 if you have the <langinfo.h> header file. */
95
+ #undef HAVE_LANGINFO_H
96
+
97
+ /* Define to 1 if you have the `m' library (-lm). */
98
+ #undef HAVE_LIBM
99
+
100
+ /* Define to 1 if you have the `mx' library (-lmx). */
101
+ #undef HAVE_LIBMX
102
+
103
+ /* Define to 1 if you have the <limits.h> header file. */
104
+ #undef HAVE_LIMITS_H
105
+
106
+ /* Define to 1 if you have the <linux/soundcard.h> header file. */
107
+ #undef HAVE_LINUX_SOUNDCARD_H
108
+
109
+ /* Define to 1 if you have the <locale.h> header file. */
110
+ #undef HAVE_LOCALE_H
111
+
112
+ /* Define if libltdl is available */
113
+ #undef HAVE_LTDL
114
+
115
+ /* Define to 1 if you have the <machine/soundcard.h> header file. */
116
+ #undef HAVE_MACHINE_SOUNDCARD_H
117
+
118
+ /* Define to 1 if you have the <memory.h> header file. */
119
+ #undef HAVE_MEMORY_H
120
+
121
+ /* Define to 1 if you have the `mkfifo' function. */
122
+ #undef HAVE_MKFIFO
123
+
124
+ /* Define to 1 if you have a working `mmap' system call. */
125
+ #undef HAVE_MMAP
126
+
127
+ /* Define to 1 if you have the <netdb.h> header file. */
128
+ #undef HAVE_NETDB_H
129
+
130
+ /* Define to 1 if you have the <netinet/in.h> header file. */
131
+ #undef HAVE_NETINET_IN_H
132
+
133
+ /* Define to 1 if you have the <netinet/tcp.h> header file. */
134
+ #undef HAVE_NETINET_TCP_H
135
+
136
+ /* Define to 1 if you have the `nl_langinfo' function. */
137
+ #undef HAVE_NL_LANGINFO
138
+
139
+ /* Define to 1 if you have the <OpenAL/alc.h> header file. */
140
+ #undef HAVE_OPENAL_ALC_H
141
+
142
+ /* Define to 1 if you have the <OpenAL/al.h> header file. */
143
+ #undef HAVE_OPENAL_AL_H
144
+
145
+ /* Define to 1 if you have the <os2me.h> header file. */
146
+ #undef HAVE_OS2ME_H
147
+
148
+ /* Define to 1 if you have the <os2.h> header file. */
149
+ #undef HAVE_OS2_H
150
+
151
+ /* Define to 1 if you have the `random' function. */
152
+ #undef HAVE_RANDOM
153
+
154
+ /* Define to 1 if you have the <sched.h> header file. */
155
+ #undef HAVE_SCHED_H
156
+
157
+ /* Define to 1 if you have the `sched_setscheduler' function. */
158
+ #undef HAVE_SCHED_SETSCHEDULER
159
+
160
+ /* Define to 1 if you have the `setlocale' function. */
161
+ #undef HAVE_SETLOCALE
162
+
163
+ /* Define to 1 if you have the `setpriority' function. */
164
+ #undef HAVE_SETPRIORITY
165
+
166
+ /* Define to 1 if you have the `setuid' function. */
167
+ #undef HAVE_SETUID
168
+
169
+ /* Define to 1 if you have the <signal.h> header file. */
170
+ #undef HAVE_SIGNAL_H
171
+
172
+ /* Define to 1 if you have the <sndio.h> header file. */
173
+ #undef HAVE_SNDIO_H
174
+
175
+ /* Define to 1 if you have the <stdint.h> header file. */
176
+ #undef HAVE_STDINT_H
177
+
178
+ /* Define to 1 if you have the <stdio.h> header file. */
179
+ #undef HAVE_STDIO_H
180
+
181
+ /* Define to 1 if you have the <stdlib.h> header file. */
182
+ #undef HAVE_STDLIB_H
183
+
184
+ /* Define to 1 if you have the `strdup' function. */
185
+ #undef HAVE_STRDUP
186
+
187
+ /* Define to 1 if you have the `strerror' function. */
188
+ #undef HAVE_STRERROR
189
+
190
+ /* Define to 1 if you have the <strings.h> header file. */
191
+ #undef HAVE_STRINGS_H
192
+
193
+ /* Define to 1 if you have the <string.h> header file. */
194
+ #undef HAVE_STRING_H
195
+
196
+ /* Define to 1 if you have the <sun/audioio.h> header file. */
197
+ #undef HAVE_SUN_AUDIOIO_H
198
+
199
+ /* Define to 1 if you have the <sys/audioio.h> header file. */
200
+ #undef HAVE_SYS_AUDIOIO_H
201
+
202
+ /* Define to 1 if you have the <sys/audio.h> header file. */
203
+ #undef HAVE_SYS_AUDIO_H
204
+
205
+ /* Define to 1 if you have the <sys/ioctl.h> header file. */
206
+ #undef HAVE_SYS_IOCTL_H
207
+
208
+ /* Define to 1 if you have the <sys/param.h> header file. */
209
+ #undef HAVE_SYS_PARAM_H
210
+
211
+ /* Define to 1 if you have the <sys/resource.h> header file. */
212
+ #undef HAVE_SYS_RESOURCE_H
213
+
214
+ /* Define to 1 if you have the <sys/signal.h> header file. */
215
+ #undef HAVE_SYS_SIGNAL_H
216
+
217
+ /* Define to 1 if you have the <sys/socket.h> header file. */
218
+ #undef HAVE_SYS_SOCKET_H
219
+
220
+ /* Define to 1 if you have the <sys/soundcard.h> header file. */
221
+ #undef HAVE_SYS_SOUNDCARD_H
222
+
223
+ /* Define to 1 if you have the <sys/stat.h> header file. */
224
+ #undef HAVE_SYS_STAT_H
225
+
226
+ /* Define to 1 if you have the <sys/time.h> header file. */
227
+ #undef HAVE_SYS_TIME_H
228
+
229
+ /* Define to 1 if you have the <sys/types.h> header file. */
230
+ #undef HAVE_SYS_TYPES_H
231
+
232
+ /* Define to 1 if you have the <sys/wait.h> header file. */
233
+ #undef HAVE_SYS_WAIT_H
234
+
235
+ /* Define this if you have the POSIX termios library */
236
+ #undef HAVE_TERMIOS
237
+
238
+ /* Define to 1 if you have the <unistd.h> header file. */
239
+ #undef HAVE_UNISTD_H
240
+
241
+ /* Define to 1 if you have the <windows.h> header file. */
242
+ #undef HAVE_WINDOWS_H
243
+
244
+ /* Define to 1 if you have the <ws2tcpip.h> header file. */
245
+ #undef HAVE_WS2TCPIP_H
246
+
247
+ /* Define to indicate that float storage follows IEEE754. */
248
+ #undef IEEE_FLOAT
249
+
250
+ /* size of the frame index seek table */
251
+ #undef INDEX_SIZE
252
+
253
+ /* Define if IPV6 support is enabled. */
254
+ #undef IPV6
255
+
256
+ /* Define this to the size of long type in bits, used for LFS small/native
257
+ alias functions. */
258
+ #undef LFS_ALIAS_BITS
259
+
260
+ /* Define to the sub-directory in which libtool stores uninstalled libraries.
261
+ */
262
+ #undef LT_OBJDIR
263
+
264
+ /* The suffix for module files. */
265
+ #undef MODULE_FILE_SUFFIX
266
+
267
+ /* Define if network support is enabled. */
268
+ #undef NETWORK
269
+
270
+ /* Define to disable 16 bit integer output. */
271
+ #undef NO_16BIT
272
+
273
+ /* Define to disable 32 bit and 24 bit integer output. */
274
+ #undef NO_32BIT
275
+
276
+ /* Define to disable 8 bit integer output. */
277
+ #undef NO_8BIT
278
+
279
+ /* Define to disable downsampled decoding. */
280
+ #undef NO_DOWNSAMPLE
281
+
282
+ /* Define to disable error messages in combination with a return value (the
283
+ return is left intact). */
284
+ #undef NO_ERETURN
285
+
286
+ /* Define to disable error messages. */
287
+ #undef NO_ERRORMSG
288
+
289
+ /* Define to disable feeder and buffered readers. */
290
+ #undef NO_FEEDER
291
+
292
+ /* Define to disable ICY handling. */
293
+ #undef NO_ICY
294
+
295
+ /* Define to disable ID3v2 parsing. */
296
+ #undef NO_ID3V2
297
+
298
+ /* Define to disable layer I. */
299
+ #undef NO_LAYER1
300
+
301
+ /* Define to disable layer II. */
302
+ #undef NO_LAYER2
303
+
304
+ /* Define to disable layer III. */
305
+ #undef NO_LAYER3
306
+
307
+ /* Define to disable ntom resampling. */
308
+ #undef NO_NTOM
309
+
310
+ /* Define to disable real output. */
311
+ #undef NO_REAL
312
+
313
+ /* Define to disable string functions. */
314
+ #undef NO_STRING
315
+
316
+ /* Define to disable warning messages. */
317
+ #undef NO_WARNING
318
+
319
+ /* Name of package */
320
+ #undef PACKAGE
321
+
322
+ /* Define to the address where bug reports for this package should be sent. */
323
+ #undef PACKAGE_BUGREPORT
324
+
325
+ /* Define to the full name of this package. */
326
+ #undef PACKAGE_NAME
327
+
328
+ /* Define to the full name and version of this package. */
329
+ #undef PACKAGE_STRING
330
+
331
+ /* Define to the one symbol short name of this package. */
332
+ #undef PACKAGE_TARNAME
333
+
334
+ /* Define to the home page for this package. */
335
+ #undef PACKAGE_URL
336
+
337
+ /* Define to the version of this package. */
338
+ #undef PACKAGE_VERSION
339
+
340
+ /* Define if portaudio v18 API is wanted. */
341
+ #undef PORTAUDIO18
342
+
343
+ /* The size of `int32_t', as computed by sizeof. */
344
+ #undef SIZEOF_INT32_T
345
+
346
+ /* The size of `long', as computed by sizeof. */
347
+ #undef SIZEOF_LONG
348
+
349
+ /* The size of `off_t', as computed by sizeof. */
350
+ #undef SIZEOF_OFF_T
351
+
352
+ /* The size of `size_t', as computed by sizeof. */
353
+ #undef SIZEOF_SIZE_T
354
+
355
+ /* The size of `ssize_t', as computed by sizeof. */
356
+ #undef SIZEOF_SSIZE_T
357
+
358
+ /* Define to 1 if you have the ANSI C header files. */
359
+ #undef STDC_HEADERS
360
+
361
+ /* Define if modules are enabled */
362
+ #undef USE_MODULES
363
+
364
+ /* Version number of package */
365
+ #undef VERSION
366
+
367
+ /* Define to use Win32 named pipes */
368
+ #undef WANT_WIN32_FIFO
369
+
370
+ /* Define to use Win32 sockets */
371
+ #undef WANT_WIN32_SOCKETS
372
+
373
+ /* Define to use Unicode for Windows */
374
+ #undef WANT_WIN32_UNICODE
375
+
376
+ /* WinXP and above for ipv6 */
377
+ #undef WINVER
378
+
379
+ /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
380
+ significant byte first (like Motorola and SPARC, unlike Intel). */
381
+ #if defined AC_APPLE_UNIVERSAL_BUILD
382
+ # if defined __BIG_ENDIAN__
383
+ # define WORDS_BIGENDIAN 1
384
+ # endif
385
+ #else
386
+ # ifndef WORDS_BIGENDIAN
387
+ # undef WORDS_BIGENDIAN
388
+ # endif
389
+ #endif
390
+
391
+ /* Enable large inode numbers on Mac OS X 10.5. */
392
+ #ifndef _DARWIN_USE_64_BIT_INODE
393
+ # define _DARWIN_USE_64_BIT_INODE 1
394
+ #endif
395
+
396
+ /* Number of bits in a file offset, on hosts where this is settable. */
397
+ #undef _FILE_OFFSET_BITS
398
+
399
+ /* Define for large files, on AIX-style hosts. */
400
+ #undef _LARGE_FILES
401
+
402
+ /* WinXP and above for ipv6 */
403
+ #undef _WIN32_WINNT
404
+
405
+ /* Define to empty if `const' does not conform to ANSI C. */
406
+ #undef const
407
+
408
+ /* Define to `__inline__' or `__inline' if that's what the C compiler
409
+ calls it, or to nothing if 'inline' is not supported under any name. */
410
+ #ifndef __cplusplus
411
+ #undef inline
412
+ #endif
413
+
414
+ /* Define to `short' if <sys/types.h> does not define. */
415
+ #undef int16_t
416
+
417
+ /* Define to `int' if <sys/types.h> does not define. */
418
+ #undef int32_t
419
+
420
+ /* Define to `long int' if <sys/types.h> does not define. */
421
+ #undef off_t
422
+
423
+ /* Define to `unsigned long' if <sys/types.h> does not define. */
424
+ #undef size_t
425
+
426
+ /* Define to `long' if <sys/types.h> does not define. */
427
+ #undef ssize_t
428
+
429
+ /* Define to `unsigned short' if <sys/types.h> does not define. */
430
+ #undef uint16_t
431
+
432
+ /* Define to `unsigned int' if <sys/types.h> does not define. */
433
+ #undef uint32_t
434
+
435
+ /* Define to `unsigned long' if <sys/types.h> does not define. */
436
+ #undef uintptr_t