seal 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.yardopts +1 -0
- data/LICENSE +13 -0
- data/README.md +265 -0
- data/ext/seal/extconf.rb +45 -0
- data/include/al/al.h +724 -0
- data/include/al/alc.h +277 -0
- data/include/al/efx-presets.h +402 -0
- data/include/al/efx.h +758 -0
- data/include/mpg123/mpg123.h +1034 -0
- data/include/ogg/config_types.h +25 -0
- data/include/ogg/ogg.h +210 -0
- data/include/ogg/os_types.h +147 -0
- data/include/seal.h +23 -0
- data/include/seal/buf.h +143 -0
- data/include/seal/core.h +95 -0
- data/include/seal/efs.h +112 -0
- data/include/seal/err.h +93 -0
- data/include/seal/fmt.h +58 -0
- data/include/seal/listener.h +103 -0
- data/include/seal/raw.h +86 -0
- data/include/seal/rvb.h +520 -0
- data/include/seal/src.h +413 -0
- data/include/seal/stream.h +81 -0
- data/include/vorbis/codec.h +243 -0
- data/include/vorbis/vorbisfile.h +206 -0
- data/mpg123/AUTHORS +150 -0
- data/mpg123/COPYING +773 -0
- data/mpg123/ChangeLog +3 -0
- data/mpg123/INSTALL +111 -0
- data/mpg123/Makefile.am +99 -0
- data/mpg123/Makefile.in +1043 -0
- data/mpg123/NEWS +1200 -0
- data/mpg123/NEWS.libmpg123 +133 -0
- data/mpg123/README +203 -0
- data/mpg123/TODO +38 -0
- data/mpg123/aclocal.m4 +1168 -0
- data/mpg123/build/config.guess +1530 -0
- data/mpg123/build/config.sub +1782 -0
- data/mpg123/build/depcomp +707 -0
- data/mpg123/build/install-sh +527 -0
- data/mpg123/build/ltmain.sh +9655 -0
- data/mpg123/build/missing +330 -0
- data/mpg123/configure +20267 -0
- data/mpg123/configure.ac +2178 -0
- data/mpg123/doc/ACCURACY +2 -0
- data/mpg123/doc/BENCHMARKING +110 -0
- data/mpg123/doc/BUGS +3 -0
- data/mpg123/doc/CONTACT +17 -0
- data/mpg123/doc/LICENSE +22 -0
- data/mpg123/doc/Makefile.am +32 -0
- data/mpg123/doc/Makefile.in +490 -0
- data/mpg123/doc/PATENTS +39 -0
- data/mpg123/doc/README.3DNOW +56 -0
- data/mpg123/doc/README.gain +171 -0
- data/mpg123/doc/README.remote +218 -0
- data/mpg123/doc/ROAD_TO_LGPL +270 -0
- data/mpg123/doc/THANKS +13 -0
- data/mpg123/doc/TODO +63 -0
- data/mpg123/doc/doxy_examples.c +21 -0
- data/mpg123/doc/doxygen.conf +41 -0
- data/mpg123/doc/doxyhead.xhtml +12 -0
- data/mpg123/doc/examples/dump_seekindex.c +41 -0
- data/mpg123/doc/examples/extract_frames.c +92 -0
- data/mpg123/doc/examples/feedseek.c +238 -0
- data/mpg123/doc/examples/id3dump.c +178 -0
- data/mpg123/doc/examples/mpg123_to_wav.c +118 -0
- data/mpg123/doc/examples/mpglib.c +92 -0
- data/mpg123/doc/examples/scan.c +47 -0
- data/mpg123/doc/libmpg123_speed.txt +84 -0
- data/mpg123/equalize.dat +37 -0
- data/mpg123/libmpg123.pc.in +11 -0
- data/mpg123/m4/addrconfig.m4 +34 -0
- data/mpg123/m4/libtool.m4 +7982 -0
- data/mpg123/m4/ltoptions.m4 +384 -0
- data/mpg123/m4/ltsugar.m4 +123 -0
- data/mpg123/m4/ltversion.m4 +23 -0
- data/mpg123/m4/lt~obsolete.m4 +98 -0
- data/mpg123/makedll.sh +19 -0
- data/mpg123/man1/mpg123.1 +512 -0
- data/mpg123/mpg123.spec +68 -0
- data/mpg123/mpg123.spec.in +68 -0
- data/mpg123/ports/MSVC++/2005/libmpg123/libmpg123.vcproj +741 -0
- data/mpg123/ports/MSVC++/2008/dump_seekindex/dump_seekindex.vcproj +194 -0
- data/mpg123/ports/MSVC++/2008/feedseek/feedseek.vcproj +195 -0
- data/mpg123/ports/MSVC++/2008/libmpg123/libmpg123.vcproj +1357 -0
- data/mpg123/ports/MSVC++/2008/mpg123.sln +44 -0
- data/mpg123/ports/MSVC++/2008/mpglib/mpglib.vcproj +191 -0
- data/mpg123/ports/MSVC++/2008/scan/scan.vcproj +195 -0
- data/mpg123/ports/MSVC++/2008clr/2008clr.sln +81 -0
- data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Program.cs +435 -0
- data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Properties/AssemblyInfo.cs +36 -0
- data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/ReplaceReaderclr.csproj +72 -0
- data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/Program.cs +331 -0
- data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/Properties/AssemblyInfo.cs +36 -0
- data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/feedseekclr.csproj +71 -0
- data/mpg123/ports/MSVC++/2008clr/examples/scanclr/Program.cs +79 -0
- data/mpg123/ports/MSVC++/2008clr/examples/scanclr/Properties/AssemblyInfo.cs +36 -0
- data/mpg123/ports/MSVC++/2008clr/examples/scanclr/scanclr.csproj +70 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/AssemblyInfo.cpp +76 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/ReadMe.txt +165 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/advanced.cpp +91 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/advanced.h +130 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/dllmain.cpp +19 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/enum.h +218 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/error.cpp +48 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/error.h +134 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v1.cpp +92 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v1.h +132 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v2.cpp +138 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v2.h +152 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.cpp +896 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.h +953 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.rc +102 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.vcproj +328 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/resource.h +14 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/stdafx.cpp +8 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/stdafx.h +38 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/string.cpp +166 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/string.h +265 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/targetver.h +24 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/text.cpp +67 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/text.h +111 -0
- data/mpg123/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj +90 -0
- data/mpg123/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj.filters +6 -0
- data/mpg123/ports/MSVC++/2010/feedseek/feedseek.vcxproj +95 -0
- data/mpg123/ports/MSVC++/2010/feedseek/feedseek.vcxproj.filters +6 -0
- data/mpg123/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj +960 -0
- data/mpg123/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj.user +3 -0
- data/mpg123/ports/MSVC++/2010/libmpg123/yasm.exe +0 -0
- data/mpg123/ports/MSVC++/2010/mpg123.sln +38 -0
- data/mpg123/ports/MSVC++/2010/scan/scan.vcxproj +93 -0
- data/mpg123/ports/MSVC++/2010/scan/scan.vcxproj.filters +6 -0
- data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/CORE/CORE_FileIn.H +15 -0
- data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/CORE/SourceFilter_MP3.H +139 -0
- data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_Def.H +206 -0
- data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_FileIn.H +167 -0
- data/mpg123/ports/MSVC++/CMP3Stream/README +4 -0
- data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_FileIn.CPP +462 -0
- data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_Log.CPP +122 -0
- data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_Mutex.CPP +35 -0
- data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/SourceFilter_MP3Stream.CPP +586 -0
- data/mpg123/ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE +0 -0
- data/mpg123/ports/MSVC++/CMP3Stream/libMPG123/libMPG123.vcproj +245 -0
- data/mpg123/ports/MSVC++/config.h +35 -0
- data/mpg123/ports/MSVC++/examples/feedseek.c +240 -0
- data/mpg123/ports/MSVC++/examples/scan.c +47 -0
- data/mpg123/ports/MSVC++/mpg123.h +46 -0
- data/mpg123/ports/MSVC++/msvc.c +59 -0
- data/mpg123/ports/README +26 -0
- data/mpg123/ports/Sony_PSP/Makefile.psp +38 -0
- data/mpg123/ports/Sony_PSP/README +11 -0
- data/mpg123/ports/Sony_PSP/config.h +368 -0
- data/mpg123/ports/Sony_PSP/readers.c.patch +2 -0
- data/mpg123/ports/Xcode/config.h +197 -0
- data/mpg123/ports/Xcode/mpg123.h +17 -0
- data/mpg123/ports/Xcode/mpg123.xcodeproj/project.pbxproj +670 -0
- data/mpg123/ports/mpg123_.pas +478 -0
- data/mpg123/scripts/benchmark-cpu.pl +56 -0
- data/mpg123/scripts/tag_lyrics.py +76 -0
- data/mpg123/src/Makefile.am +186 -0
- data/mpg123/src/Makefile.in +1097 -0
- data/mpg123/src/audio.c +725 -0
- data/mpg123/src/audio.h +106 -0
- data/mpg123/src/buffer.c +312 -0
- data/mpg123/src/buffer.h +45 -0
- data/mpg123/src/common.c +240 -0
- data/mpg123/src/common.h +29 -0
- data/mpg123/src/config.h.in +436 -0
- data/mpg123/src/control_generic.c +809 -0
- data/mpg123/src/equalizer.c +48 -0
- data/mpg123/src/genre.c +271 -0
- data/mpg123/src/genre.h +15 -0
- data/mpg123/src/getlopt.c +148 -0
- data/mpg123/src/getlopt.h +77 -0
- data/mpg123/src/httpget.c +700 -0
- data/mpg123/src/httpget.h +66 -0
- data/mpg123/src/legacy_module.c +74 -0
- data/mpg123/src/libmpg123/Makefile.am +141 -0
- data/mpg123/src/libmpg123/Makefile.in +919 -0
- data/mpg123/src/libmpg123/compat.c +138 -0
- data/mpg123/src/libmpg123/compat.h +178 -0
- data/mpg123/src/libmpg123/dct36_3dnow.S +505 -0
- data/mpg123/src/libmpg123/dct36_3dnowext.S +512 -0
- data/mpg123/src/libmpg123/dct64.c +174 -0
- data/mpg123/src/libmpg123/dct64_3dnow.S +712 -0
- data/mpg123/src/libmpg123/dct64_3dnowext.S +714 -0
- data/mpg123/src/libmpg123/dct64_altivec.c +315 -0
- data/mpg123/src/libmpg123/dct64_i386.c +336 -0
- data/mpg123/src/libmpg123/dct64_i486.c +342 -0
- data/mpg123/src/libmpg123/dct64_mmx.S +811 -0
- data/mpg123/src/libmpg123/dct64_neon.S +297 -0
- data/mpg123/src/libmpg123/dct64_neon_float.S +270 -0
- data/mpg123/src/libmpg123/dct64_sse.S +454 -0
- data/mpg123/src/libmpg123/dct64_sse_float.S +401 -0
- data/mpg123/src/libmpg123/dct64_x86_64.S +464 -0
- data/mpg123/src/libmpg123/dct64_x86_64_float.S +426 -0
- data/mpg123/src/libmpg123/debug.h +171 -0
- data/mpg123/src/libmpg123/decode.h +268 -0
- data/mpg123/src/libmpg123/dither.c +119 -0
- data/mpg123/src/libmpg123/dither.h +23 -0
- data/mpg123/src/libmpg123/equalizer.c +17 -0
- data/mpg123/src/libmpg123/equalizer_3dnow.S +70 -0
- data/mpg123/src/libmpg123/feature.c +106 -0
- data/mpg123/src/libmpg123/format.c +521 -0
- data/mpg123/src/libmpg123/frame.c +1046 -0
- data/mpg123/src/libmpg123/frame.h +410 -0
- data/mpg123/src/libmpg123/gapless.h +119 -0
- data/mpg123/src/libmpg123/getbits.h +100 -0
- data/mpg123/src/libmpg123/getcpuflags.S +91 -0
- data/mpg123/src/libmpg123/getcpuflags.h +47 -0
- data/mpg123/src/libmpg123/huffman.h +340 -0
- data/mpg123/src/libmpg123/icy.c +32 -0
- data/mpg123/src/libmpg123/icy.h +38 -0
- data/mpg123/src/libmpg123/icy2utf8.c +438 -0
- data/mpg123/src/libmpg123/icy2utf8.h +10 -0
- data/mpg123/src/libmpg123/id3.c +999 -0
- data/mpg123/src/libmpg123/id3.h +43 -0
- data/mpg123/src/libmpg123/index.c +134 -0
- data/mpg123/src/libmpg123/index.h +59 -0
- data/mpg123/src/libmpg123/intsym.h +256 -0
- data/mpg123/src/libmpg123/l12_integer_tables.h +278 -0
- data/mpg123/src/libmpg123/l2tables.h +164 -0
- data/mpg123/src/libmpg123/l3_integer_tables.h +1002 -0
- data/mpg123/src/libmpg123/layer1.c +155 -0
- data/mpg123/src/libmpg123/layer2.c +371 -0
- data/mpg123/src/libmpg123/layer3.c +2053 -0
- data/mpg123/src/libmpg123/lfs_alias.c +252 -0
- data/mpg123/src/libmpg123/lfs_wrap.c +751 -0
- data/mpg123/src/libmpg123/libmpg123.c +1607 -0
- data/mpg123/src/libmpg123/mangle.h +74 -0
- data/mpg123/src/libmpg123/mpeghead.h +87 -0
- data/mpg123/src/libmpg123/mpg123.h.in +1075 -0
- data/mpg123/src/libmpg123/mpg123lib_intern.h +338 -0
- data/mpg123/src/libmpg123/ntom.c +148 -0
- data/mpg123/src/libmpg123/optimize.c +964 -0
- data/mpg123/src/libmpg123/optimize.h +219 -0
- data/mpg123/src/libmpg123/parse.c +1179 -0
- data/mpg123/src/libmpg123/parse.h +25 -0
- data/mpg123/src/libmpg123/reader.h +137 -0
- data/mpg123/src/libmpg123/readers.c +1235 -0
- data/mpg123/src/libmpg123/sample.h +152 -0
- data/mpg123/src/libmpg123/stringbuf.c +163 -0
- data/mpg123/src/libmpg123/synth.c +816 -0
- data/mpg123/src/libmpg123/synth.h +196 -0
- data/mpg123/src/libmpg123/synth_3dnow.S +318 -0
- data/mpg123/src/libmpg123/synth_3dnowext.S +6 -0
- data/mpg123/src/libmpg123/synth_8bit.c +142 -0
- data/mpg123/src/libmpg123/synth_8bit.h +86 -0
- data/mpg123/src/libmpg123/synth_altivec.c +1057 -0
- data/mpg123/src/libmpg123/synth_arm.S +271 -0
- data/mpg123/src/libmpg123/synth_arm_accurate.S +287 -0
- data/mpg123/src/libmpg123/synth_i486.c +252 -0
- data/mpg123/src/libmpg123/synth_i586.S +336 -0
- data/mpg123/src/libmpg123/synth_i586_dither.S +375 -0
- data/mpg123/src/libmpg123/synth_mmx.S +125 -0
- data/mpg123/src/libmpg123/synth_mono.h +64 -0
- data/mpg123/src/libmpg123/synth_neon.S +123 -0
- data/mpg123/src/libmpg123/synth_neon_accurate.S +173 -0
- data/mpg123/src/libmpg123/synth_neon_float.S +149 -0
- data/mpg123/src/libmpg123/synth_neon_s32.S +168 -0
- data/mpg123/src/libmpg123/synth_ntom.h +213 -0
- data/mpg123/src/libmpg123/synth_real.c +404 -0
- data/mpg123/src/libmpg123/synth_s32.c +411 -0
- data/mpg123/src/libmpg123/synth_sse.S +6 -0
- data/mpg123/src/libmpg123/synth_sse3d.h +246 -0
- data/mpg123/src/libmpg123/synth_sse_accurate.S +294 -0
- data/mpg123/src/libmpg123/synth_sse_float.S +241 -0
- data/mpg123/src/libmpg123/synth_sse_s32.S +306 -0
- data/mpg123/src/libmpg123/synth_stereo_neon.S +175 -0
- data/mpg123/src/libmpg123/synth_stereo_neon_accurate.S +262 -0
- data/mpg123/src/libmpg123/synth_stereo_neon_float.S +220 -0
- data/mpg123/src/libmpg123/synth_stereo_neon_s32.S +247 -0
- data/mpg123/src/libmpg123/synth_stereo_sse_accurate.S +508 -0
- data/mpg123/src/libmpg123/synth_stereo_sse_float.S +416 -0
- data/mpg123/src/libmpg123/synth_stereo_sse_s32.S +540 -0
- data/mpg123/src/libmpg123/synth_stereo_x86_64.S +335 -0
- data/mpg123/src/libmpg123/synth_stereo_x86_64_accurate.S +454 -0
- data/mpg123/src/libmpg123/synth_stereo_x86_64_float.S +396 -0
- data/mpg123/src/libmpg123/synth_stereo_x86_64_s32.S +473 -0
- data/mpg123/src/libmpg123/synth_x86_64.S +244 -0
- data/mpg123/src/libmpg123/synth_x86_64_accurate.S +301 -0
- data/mpg123/src/libmpg123/synth_x86_64_float.S +259 -0
- data/mpg123/src/libmpg123/synth_x86_64_s32.S +312 -0
- data/mpg123/src/libmpg123/synths.h +52 -0
- data/mpg123/src/libmpg123/tabinit.c +294 -0
- data/mpg123/src/libmpg123/tabinit_mmx.S +210 -0
- data/mpg123/src/libmpg123/testcpu.c +35 -0
- data/mpg123/src/libmpg123/true.h +14 -0
- data/mpg123/src/local.c +63 -0
- data/mpg123/src/local.h +21 -0
- data/mpg123/src/metaprint.c +373 -0
- data/mpg123/src/metaprint.h +17 -0
- data/mpg123/src/module.c +306 -0
- data/mpg123/src/module.h +48 -0
- data/mpg123/src/mpg123.c +1405 -0
- data/mpg123/src/mpg123app.h +171 -0
- data/mpg123/src/output/Makefile.am +213 -0
- data/mpg123/src/output/Makefile.in +1238 -0
- data/mpg123/src/output/aix.c +300 -0
- data/mpg123/src/output/alib.c +209 -0
- data/mpg123/src/output/alsa.c +297 -0
- data/mpg123/src/output/arts.c +117 -0
- data/mpg123/src/output/coreaudio.c +370 -0
- data/mpg123/src/output/dummy.c +78 -0
- data/mpg123/src/output/esd.c +167 -0
- data/mpg123/src/output/hp.c +184 -0
- data/mpg123/src/output/jack.c +450 -0
- data/mpg123/src/output/mint.c +197 -0
- data/mpg123/src/output/nas.c +335 -0
- data/mpg123/src/output/openal.c +197 -0
- data/mpg123/src/output/os2.c +665 -0
- data/mpg123/src/output/oss.c +319 -0
- data/mpg123/src/output/portaudio.c +255 -0
- data/mpg123/src/output/pulse.c +164 -0
- data/mpg123/src/output/sdl.c +206 -0
- data/mpg123/src/output/sgi.c +213 -0
- data/mpg123/src/output/sndio.c +161 -0
- data/mpg123/src/output/sun.c +281 -0
- data/mpg123/src/output/win32.c +229 -0
- data/mpg123/src/playlist.c +596 -0
- data/mpg123/src/playlist.h +52 -0
- data/mpg123/src/resolver.c +319 -0
- data/mpg123/src/resolver.h +25 -0
- data/mpg123/src/sfifo.c +146 -0
- data/mpg123/src/sfifo.h +95 -0
- data/mpg123/src/streamdump.c +74 -0
- data/mpg123/src/streamdump.h +20 -0
- data/mpg123/src/term.c +479 -0
- data/mpg123/src/term.h +81 -0
- data/mpg123/src/tests/noise.c +52 -0
- data/mpg123/src/tests/plain_id3.c +109 -0
- data/mpg123/src/tests/seek_accuracy.c +261 -0
- data/mpg123/src/tests/seek_whence.c +56 -0
- data/mpg123/src/tests/testtext.h +34 -0
- data/mpg123/src/tests/text.c +80 -0
- data/mpg123/src/wav.c +464 -0
- data/mpg123/src/wavhead.h +68 -0
- data/mpg123/src/win32_net.c +599 -0
- data/mpg123/src/win32_support.c +191 -0
- data/mpg123/src/win32_support.h +152 -0
- data/mpg123/src/xfermem.c +321 -0
- data/mpg123/src/xfermem.h +74 -0
- data/mpg123/windows-builds.sh +137 -0
- data/msvc/lib/OpenAL32.lib +0 -0
- data/spec/fixtures/heal.ogg +0 -0
- data/spec/fixtures/tone_up.wav +0 -0
- data/spec/seal/buffer_spec.rb +37 -0
- data/spec/seal/core_spec.rb +29 -0
- data/spec/seal/effect_slot_spec.rb +38 -0
- data/spec/seal/listener_spec.rb +33 -0
- data/spec/seal/reverb_spec.rb +51 -0
- data/spec/seal/source_spec.rb +370 -0
- data/spec/seal/stream_spec.rb +38 -0
- data/spec/spec_helper.rb +45 -0
- data/spec/support/attribute_examples.rb +75 -0
- data/spec/support/audio_object_with_format.rb +27 -0
- data/spec/support/movable_object.rb +22 -0
- data/src/libogg/bitwise.c +857 -0
- data/src/libogg/framing.c +2093 -0
- data/src/libvorbis/backends.h +144 -0
- data/src/libvorbis/bitrate.c +253 -0
- data/src/libvorbis/bitrate.h +59 -0
- data/src/libvorbis/block.c +1046 -0
- data/src/libvorbis/codebook.c +484 -0
- data/src/libvorbis/codebook.h +119 -0
- data/src/libvorbis/codec_internal.h +167 -0
- data/src/libvorbis/envelope.c +375 -0
- data/src/libvorbis/envelope.h +80 -0
- data/src/libvorbis/floor0.c +221 -0
- data/src/libvorbis/floor1.c +1100 -0
- data/src/libvorbis/highlevel.h +58 -0
- data/src/libvorbis/info.c +668 -0
- data/src/libvorbis/lookup.c +94 -0
- data/src/libvorbis/lookup.h +32 -0
- data/src/libvorbis/lookup_data.h +192 -0
- data/src/libvorbis/lpc.c +160 -0
- data/src/libvorbis/lpc.h +29 -0
- data/src/libvorbis/lsp.c +456 -0
- data/src/libvorbis/lsp.h +28 -0
- data/src/libvorbis/mapping0.c +816 -0
- data/src/libvorbis/masking.h +785 -0
- data/src/libvorbis/mdct.c +563 -0
- data/src/libvorbis/mdct.h +71 -0
- data/src/libvorbis/misc.h +57 -0
- data/src/libvorbis/os.h +186 -0
- data/src/libvorbis/psy.c +1206 -0
- data/src/libvorbis/psy.h +154 -0
- data/src/libvorbis/registry.c +45 -0
- data/src/libvorbis/registry.h +32 -0
- data/src/libvorbis/res0.c +889 -0
- data/src/libvorbis/scales.h +90 -0
- data/src/libvorbis/sharedbook.c +579 -0
- data/src/libvorbis/smallft.c +1255 -0
- data/src/libvorbis/smallft.h +34 -0
- data/src/libvorbis/synthesis.c +184 -0
- data/src/libvorbis/vorbisfile.c +2337 -0
- data/src/libvorbis/window.c +2135 -0
- data/src/libvorbis/window.h +26 -0
- data/src/rubyext.c +2329 -0
- data/src/seal/buf.c +124 -0
- data/src/seal/core.c +283 -0
- data/src/seal/efs.c +74 -0
- data/src/seal/err.c +118 -0
- data/src/seal/fmt.c +86 -0
- data/src/seal/listener.c +111 -0
- data/src/seal/mpg.c +174 -0
- data/src/seal/mpg.h +24 -0
- data/src/seal/ov.c +180 -0
- data/src/seal/ov.h +22 -0
- data/src/seal/raw.c +59 -0
- data/src/seal/reader.c +102 -0
- data/src/seal/reader.h +59 -0
- data/src/seal/rvb.c +368 -0
- data/src/seal/src.c +654 -0
- data/src/seal/stream.c +109 -0
- data/src/seal/threading.c +66 -0
- data/src/seal/threading.h +20 -0
- data/src/seal/wav.c +297 -0
- data/src/seal/wav.h +23 -0
- data/src/win32api.rb +29 -0
- metadata +563 -0
data/mpg123/src/common.c
ADDED
@@ -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
|
+
}
|
data/mpg123/src/common.h
ADDED
@@ -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
|