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
@@ -0,0 +1,47 @@
|
|
1
|
+
/*
|
2
|
+
scan: Estimate length (sample count) of a mpeg file and compare to length from exact scan.
|
3
|
+
|
4
|
+
copyright 2007 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 Thomas Orgis
|
7
|
+
*/
|
8
|
+
|
9
|
+
/* Note the lack of error checking here.
|
10
|
+
While it would be nicer to inform the user about troubles, libmpg123 is designed _not_ to bite you on operations with invalid handles , etc.
|
11
|
+
You just jet invalid results on invalid operations... */
|
12
|
+
|
13
|
+
#include <mpg123.h>
|
14
|
+
#include <stdio.h>
|
15
|
+
|
16
|
+
int _tmain(int argc, _TCHAR* argv[])
|
17
|
+
{
|
18
|
+
mpg123_handle *m;
|
19
|
+
int i;
|
20
|
+
if(argc < 2)
|
21
|
+
{
|
22
|
+
fprintf(stderr, "\nI will give you the estimated and exact sample lengths of MPEG audio files.\n");
|
23
|
+
fprintf(stderr, "\nUsage: %s <mpeg audio file list>\n\n", argv[0]);
|
24
|
+
return -1;
|
25
|
+
}
|
26
|
+
mpg123_init();
|
27
|
+
m = mpg123_new(NULL, NULL);
|
28
|
+
mpg123_param(m, MPG123_RESYNC_LIMIT, -1, 0); /* New in library version 0.0.1 . */
|
29
|
+
for(i = 1; i < argc; ++i)
|
30
|
+
{
|
31
|
+
off_t a, b;
|
32
|
+
|
33
|
+
mpg123_topen(m, argv[i]);
|
34
|
+
|
35
|
+
a = mpg123_length(m);
|
36
|
+
mpg123_scan(m);
|
37
|
+
b = mpg123_length(m);
|
38
|
+
|
39
|
+
mpg123_tclose(m);
|
40
|
+
|
41
|
+
printf("File %i: estimated %li vs. scanned %li\n", i, (long)a, (long)b);
|
42
|
+
}
|
43
|
+
|
44
|
+
mpg123_delete(m);
|
45
|
+
mpg123_exit();
|
46
|
+
return 0;
|
47
|
+
}
|
@@ -0,0 +1,46 @@
|
|
1
|
+
/*
|
2
|
+
mpg123_msvc: MPEG Audio Decoder library wrapper header for MS VC++ 2005
|
3
|
+
|
4
|
+
copyright 2008 by the mpg123 project - free software under the terms of the LGPL 2.1
|
5
|
+
initially written by Patrick Dehne and Thomas Orgis.
|
6
|
+
*/
|
7
|
+
#ifndef MPG123_MSVC_H
|
8
|
+
#define MPG123_MSVC_H
|
9
|
+
|
10
|
+
#include <tchar.h>
|
11
|
+
#include <stdlib.h>
|
12
|
+
#include <sys/types.h>
|
13
|
+
|
14
|
+
typedef long ssize_t;
|
15
|
+
|
16
|
+
// Needed for Visual Studio versions before VS 2010.
|
17
|
+
#if (_MSC_VER < 1600)
|
18
|
+
typedef __int32 int32_t;
|
19
|
+
typedef unsigned __int32 uint32_t;
|
20
|
+
#else
|
21
|
+
#include <stdint.h>
|
22
|
+
#endif
|
23
|
+
|
24
|
+
#define PRIiMAX "I64i"
|
25
|
+
typedef __int64 intmax_t;
|
26
|
+
// ftell returns long, _ftelli64 returns __int64
|
27
|
+
// off_t is long, not __int64, use ftell
|
28
|
+
#define ftello ftell
|
29
|
+
|
30
|
+
#define MPG123_NO_CONFIGURE
|
31
|
+
#include "mpg123.h.in" /* Yes, .h.in; we include the configure template! */
|
32
|
+
|
33
|
+
#ifdef __cplusplus
|
34
|
+
extern "C" {
|
35
|
+
#endif
|
36
|
+
|
37
|
+
// Wrapper around mpg123_open that supports path names with unicode
|
38
|
+
// characters
|
39
|
+
EXPORT int mpg123_topen(mpg123_handle *fr, const _TCHAR *path);
|
40
|
+
EXPORT int mpg123_tclose(mpg123_handle *fr);
|
41
|
+
|
42
|
+
#ifdef __cplusplus
|
43
|
+
}
|
44
|
+
#endif
|
45
|
+
|
46
|
+
#endif
|
@@ -0,0 +1,59 @@
|
|
1
|
+
/*
|
2
|
+
msvc: libmpg123 add-ons for MSVC++
|
3
|
+
|
4
|
+
copyright 1995-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
|
+
|
7
|
+
originally written by Patrick Dehne (inspired by libmpg123/readers.c)
|
8
|
+
|
9
|
+
*/
|
10
|
+
|
11
|
+
#include "mpg123lib_intern.h"
|
12
|
+
|
13
|
+
#include <tchar.h>
|
14
|
+
#include <fcntl.h>
|
15
|
+
#include <io.h>
|
16
|
+
|
17
|
+
#include "debug.h"
|
18
|
+
|
19
|
+
int mpg123_topen(mpg123_handle *fr, const _TCHAR *path)
|
20
|
+
{
|
21
|
+
int ret;
|
22
|
+
int filept; /* descriptor of opened file/stream */
|
23
|
+
|
24
|
+
ret = mpg123_replace_reader(fr, _read, _lseek);
|
25
|
+
if(ret != MPG123_OK)
|
26
|
+
{
|
27
|
+
return ret;
|
28
|
+
}
|
29
|
+
|
30
|
+
if((filept = _topen(path, O_RDONLY|O_BINARY)) < 0)
|
31
|
+
{
|
32
|
+
/* Will not work with unicode path name
|
33
|
+
if(NOQUIET) error2("Cannot open file %s: %s", path, strerror(errno)); */
|
34
|
+
|
35
|
+
if(NOQUIET) error1("Cannot open file: %s", strerror(errno));
|
36
|
+
fr->err = MPG123_BAD_FILE;
|
37
|
+
return filept; /* error... */
|
38
|
+
}
|
39
|
+
|
40
|
+
if(mpg123_open_fd(fr, filept) == MPG123_OK) {
|
41
|
+
return MPG123_OK;
|
42
|
+
}
|
43
|
+
else
|
44
|
+
{
|
45
|
+
_close(filept);
|
46
|
+
return MPG123_ERR;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
int mpg123_tclose(mpg123_handle *fr)
|
51
|
+
{
|
52
|
+
int ret, filept;
|
53
|
+
|
54
|
+
filept = fr->rdat.filept;
|
55
|
+
ret = mpg123_close(fr);
|
56
|
+
_close(filept);
|
57
|
+
|
58
|
+
return ret;
|
59
|
+
}
|
data/mpg123/ports/README
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
This directory contains some (contributed) works covering usage and/or building of mpg123/libmpg123 from different programming environments.
|
2
|
+
Note that those may be a bit outdated (especially when a file is added/removed in libmpg123 sources); as the team lacks resource to test everything. But in any case, the ports can provide a good starting point on the respective platform, to get it to work with minimal fuzz.
|
3
|
+
|
4
|
+
- Delphi: mpg123_.pas
|
5
|
+
Unit for linking against libmpg123 (Win32, DLL).
|
6
|
+
...by Arthur Pires <arthurprs@gmail.com>
|
7
|
+
- Sony PSP: Sony_PSP/; building libmpg123 for the PSP (used for the MODO player).
|
8
|
+
...by Bastian Pflieger <wb@illogical.de>
|
9
|
+
- MSVC++: Microsoft Windows / Visual C++ builds
|
10
|
+
- MSVC++/CMP3Stream:
|
11
|
+
project for building libmpg123 with interface class.
|
12
|
+
...by "Gates Fan" <gatesfan@gmail.com>
|
13
|
+
- MSVC++/mpg123.h
|
14
|
+
A wrapper header over mpg123.h.in (yes, the template file in ../src/libmpg123) to use in MSVC++ projects that link to libmpg123.
|
15
|
+
- MSVC++/2005 and MSVC++/2008 contain project files for building and using libmpg123 with the corresponding versions of Microsoft Visual C++.
|
16
|
+
To use it add the project to your solution. Then add a reference to libmpg123 from the project that wants to use it.
|
17
|
+
Also add ports/MSVC++ and src/libmpg123 to the include path.
|
18
|
+
If you want to use the asm build you will need yasm (http://www.tortall.net/projects/yasm/).
|
19
|
+
Please put yasm.exe into a directory where MSVC++ can find it. Finally switch the libmpg123 project to the
|
20
|
+
Release_MMX_Dll build using the Visual Studio Configuration Manager.
|
21
|
+
- Xcode contains the project file for building and using libmpg123 with
|
22
|
+
Xcode for Mac and iOS (arm and simulator builds). Please add the
|
23
|
+
ports/Xcode folder to the header search path of your project so that
|
24
|
+
Xcode can find the right mpg123.h and config.h. Then drag the mpg123
|
25
|
+
Xcode project into your own project. Finally in your build target, build
|
26
|
+
phases, add mpg123-ios or mpg123-mac to the libraries to link.
|
@@ -0,0 +1,38 @@
|
|
1
|
+
PSPSDK = $(shell psp-config --pspsdk-path)
|
2
|
+
PSPDIR = $(shell psp-config --psp-prefix)
|
3
|
+
|
4
|
+
#DEFINES := PSP OPT_GENERIC REAL_IS_FIXED HAVE_CONFIG_H
|
5
|
+
DEFINES := PSP OPT_GENERIC REAL_IS_FLOAT HAVE_CONFIG_H
|
6
|
+
#DEFINES := PSP OPT_GENERIC FLOATOUT REAL_IS_FLOAT HAVE_CONFIG_H
|
7
|
+
DEFINEFLAGS := $(addprefix -D,$(DEFINES))
|
8
|
+
INCDIR := ../.
|
9
|
+
CFLAGS = -g -O2 -Wall -fomit-frame-pointer -funroll-all-loops -finline-functions -ffast-math $(DEFINEFLAGS)
|
10
|
+
|
11
|
+
MPG123_OBJS = compat.o parse.o frame.o format.o index.o synth.o synth_8bit.o \
|
12
|
+
ntom.o icy2utf8.o synth_real.o synth_s32.o\
|
13
|
+
equalizer.o icy.o id3.o layer1.o layer2.o layer3.o optimize.o readers.o tabinit.o stringbuf.o libmpg123.o dct64.o
|
14
|
+
|
15
|
+
MPG123_LIB_FILE = ./libmpg123.a
|
16
|
+
|
17
|
+
OBJS = $(MPG123_OBJS)
|
18
|
+
TARGET_LIB = $(MPG123_LIB_FILE)
|
19
|
+
|
20
|
+
include $(PSPSDK)/lib/build.mak
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
####################
|
25
|
+
## Makefile rules ##
|
26
|
+
####################
|
27
|
+
|
28
|
+
install: $(MPG123_LIB_FILE)
|
29
|
+
@echo ""
|
30
|
+
@echo "**********************************************************************"
|
31
|
+
@echo "Installing libstsound into $(PSPDIR)"
|
32
|
+
@mkdir -p $(PSPDIR)/include $(PSPDIR)/lib
|
33
|
+
@cp -v mpg123.h $(PSPDIR)/include
|
34
|
+
@cp -v libmpg123.a $(PSPDIR)/lib
|
35
|
+
@echo "Done"
|
36
|
+
@echo "**********************************************************************"
|
37
|
+
@echo ""
|
38
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
Hi
|
2
|
+
|
3
|
+
* Place Makefile.psp in the directory src/libmpg123.
|
4
|
+
* Patch readers.c (present in src/libmpg123) using readers.c.patch
|
5
|
+
* Place Config.h in directory src/
|
6
|
+
* cd to src/libmpg123 and do "make -f Makefile.psp install"
|
7
|
+
|
8
|
+
Tested on mpg123 1.4.x and psptoolchain rev. 2398
|
9
|
+
|
10
|
+
Regards
|
11
|
+
Bastian
|
@@ -0,0 +1,368 @@
|
|
1
|
+
/* src/config.h. Generated from config.h.in by configure. */
|
2
|
+
/* src/config.h.in. Generated from configure.ac by autoheader. */
|
3
|
+
|
4
|
+
/* Define if your architecture wants/needs/can use attribute_align_arg and
|
5
|
+
alignment checks. It's for 32bit x86... */
|
6
|
+
#define ABI_ALIGN_FUN 1
|
7
|
+
|
8
|
+
/* Define to use proper rounding. */
|
9
|
+
/* #undef ACCURATE_ROUNDING */
|
10
|
+
|
11
|
+
/* Define if .align takes 3 for alignment of 2^3=8 bytes instead of 8. */
|
12
|
+
/* #undef ASMALIGN_EXP */
|
13
|
+
|
14
|
+
/* Define if __attribute__((aligned(16))) shall be used */
|
15
|
+
/* #undef CCALIGN */
|
16
|
+
|
17
|
+
/* Define if checking of stack alignment is wanted. */
|
18
|
+
#define CHECK_ALIGN 1
|
19
|
+
|
20
|
+
/* Define if debugging is enabled. */
|
21
|
+
/* #undef DEBUG */
|
22
|
+
|
23
|
+
/* The default audio output module(s) to use */
|
24
|
+
#define DEFAULT_OUTPUT_MODULE "alsa,oss,esd,sdl,nas,arts"
|
25
|
+
|
26
|
+
/* Define if building with dynamcally linked libmpg123 */
|
27
|
+
#define DYNAMIC_BUILD 1
|
28
|
+
|
29
|
+
/* Define if FIFO support is enabled. */
|
30
|
+
#define FIFO 1
|
31
|
+
|
32
|
+
/* Define if frame index should be used. */
|
33
|
+
#define FRAME_INDEX 1
|
34
|
+
|
35
|
+
/* Define if gapless is enabled. */
|
36
|
+
#define GAPLESS 1
|
37
|
+
|
38
|
+
/* Define to 1 if you have the <Alib.h> header file. */
|
39
|
+
/* #undef HAVE_ALIB_H */
|
40
|
+
|
41
|
+
/* Define to 1 if you have the <arpa/inet.h> header file. */
|
42
|
+
#define HAVE_ARPA_INET_H 1
|
43
|
+
|
44
|
+
/* Define to 1 if you have the <asm/audioio.h> header file. */
|
45
|
+
/* #undef HAVE_ASM_AUDIOIO_H */
|
46
|
+
|
47
|
+
/* Define to 1 if you have the `atoll' function. */
|
48
|
+
#define HAVE_ATOLL 1
|
49
|
+
|
50
|
+
/* Define to 1 if you have the <audios.h> header file. */
|
51
|
+
/* #undef HAVE_AUDIOS_H */
|
52
|
+
|
53
|
+
/* Define to 1 if you have the <AudioToolbox/AudioToolbox.h> header file. */
|
54
|
+
/* #undef HAVE_AUDIOTOOLBOX_AUDIOTOOLBOX_H */
|
55
|
+
|
56
|
+
/* Define to 1 if you have the <AudioUnit/AudioUnit.h> header file. */
|
57
|
+
/* #undef HAVE_AUDIOUNIT_AUDIOUNIT_H */
|
58
|
+
|
59
|
+
/* Define to 1 if you have the <CoreServices/CoreServices.h> header file. */
|
60
|
+
/* #undef HAVE_CORESERVICES_CORESERVICES_H */
|
61
|
+
|
62
|
+
/* Define to 1 if you have the <CUlib.h> header file. */
|
63
|
+
/* #undef HAVE_CULIB_H */
|
64
|
+
|
65
|
+
/* Define to 1 if you have the <dlfcn.h> header file. */
|
66
|
+
#define HAVE_DLFCN_H 1
|
67
|
+
|
68
|
+
/* Define to 1 if you have the `getaddrinfo' function. */
|
69
|
+
#define HAVE_GETADDRINFO 1
|
70
|
+
|
71
|
+
/* Define to 1 if you have the `getpagesize' function. */
|
72
|
+
#define HAVE_GETPAGESIZE 1
|
73
|
+
|
74
|
+
/* Define to 1 if you have the `getuid' function. */
|
75
|
+
#define HAVE_GETUID 1
|
76
|
+
|
77
|
+
/* Define to 1 if you have the <inttypes.h> header file. */
|
78
|
+
#define HAVE_INTTYPES_H 1
|
79
|
+
|
80
|
+
/* Define to 1 if you have the <langinfo.h> header file. */
|
81
|
+
#define HAVE_LANGINFO_H 1
|
82
|
+
|
83
|
+
/* Define to 1 if you have the `m' library (-lm). */
|
84
|
+
#define HAVE_LIBM 1
|
85
|
+
|
86
|
+
/* Define to 1 if you have the `mx' library (-lmx). */
|
87
|
+
/* #undef HAVE_LIBMX */
|
88
|
+
|
89
|
+
/* Define to 1 if you have the <limits.h> header file. */
|
90
|
+
#define HAVE_LIMITS_H 1
|
91
|
+
|
92
|
+
/* Define to 1 if you have the <linux/soundcard.h> header file. */
|
93
|
+
#define HAVE_LINUX_SOUNDCARD_H 1
|
94
|
+
|
95
|
+
/* Define to 1 if you have the <locale.h> header file. */
|
96
|
+
#define HAVE_LOCALE_H 1
|
97
|
+
|
98
|
+
/* Define if libltdl is available */
|
99
|
+
#define HAVE_LTDL 1
|
100
|
+
|
101
|
+
/* Define to 1 if you have the <machine/soundcard.h> header file. */
|
102
|
+
/* #undef HAVE_MACHINE_SOUNDCARD_H */
|
103
|
+
|
104
|
+
/* Define to 1 if you have the <memory.h> header file. */
|
105
|
+
#define HAVE_MEMORY_H 1
|
106
|
+
|
107
|
+
/* Define to 1 if you have the `mkfifo' function. */
|
108
|
+
#define HAVE_MKFIFO 1
|
109
|
+
|
110
|
+
/* Define to 1 if you have a working `mmap' system call. */
|
111
|
+
#define HAVE_MMAP 1
|
112
|
+
|
113
|
+
/* Define to 1 if you have the <netdb.h> header file. */
|
114
|
+
#define HAVE_NETDB_H 1
|
115
|
+
|
116
|
+
/* Define to 1 if you have the <netinet/in.h> header file. */
|
117
|
+
#define HAVE_NETINET_IN_H 1
|
118
|
+
|
119
|
+
/* Define to 1 if you have the <netinet/tcp.h> header file. */
|
120
|
+
/* #undef HAVE_NETINET_TCP_H */
|
121
|
+
|
122
|
+
/* Define to 1 if you have the `nl_langinfo' function. */
|
123
|
+
#define HAVE_NL_LANGINFO 1
|
124
|
+
|
125
|
+
/* Define to 1 if you have the <os2me.h> header file. */
|
126
|
+
/* #undef HAVE_OS2ME_H */
|
127
|
+
|
128
|
+
/* Define to 1 if you have the <os2.h> header file. */
|
129
|
+
/* #undef HAVE_OS2_H */
|
130
|
+
|
131
|
+
/* Define to 1 if you have the `random' function. */
|
132
|
+
#define HAVE_RANDOM 1
|
133
|
+
|
134
|
+
/* Define to 1 if you have the <sched.h> header file. */
|
135
|
+
#define HAVE_SCHED_H 1
|
136
|
+
|
137
|
+
/* Define to 1 if you have the `sched_setscheduler' function. */
|
138
|
+
#define HAVE_SCHED_SETSCHEDULER 1
|
139
|
+
|
140
|
+
/* Define to 1 if you have the `setlocale' function. */
|
141
|
+
#define HAVE_SETLOCALE 1
|
142
|
+
|
143
|
+
/* Define to 1 if you have the `setpriority' function. */
|
144
|
+
#define HAVE_SETPRIORITY 1
|
145
|
+
|
146
|
+
/* Define to 1 if you have the `setuid' function. */
|
147
|
+
#define HAVE_SETUID 1
|
148
|
+
|
149
|
+
/* Define to 1 if you have the <signal.h> header file. */
|
150
|
+
#define HAVE_SIGNAL_H 1
|
151
|
+
|
152
|
+
/* Define to 1 if you have the <sndio.h> header file. */
|
153
|
+
/* #undef HAVE_SNDIO_H */
|
154
|
+
|
155
|
+
/* Define to 1 if you have the <stdint.h> header file. */
|
156
|
+
#define HAVE_STDINT_H 1
|
157
|
+
|
158
|
+
/* Define to 1 if you have the <stdio.h> header file. */
|
159
|
+
#define HAVE_STDIO_H 1
|
160
|
+
|
161
|
+
/* Define to 1 if you have the <stdlib.h> header file. */
|
162
|
+
#define HAVE_STDLIB_H 1
|
163
|
+
|
164
|
+
/* Define to 1 if you have the `strdup' function. */
|
165
|
+
#define HAVE_STRDUP 1
|
166
|
+
|
167
|
+
/* Define to 1 if you have the `strerror' function. */
|
168
|
+
#define HAVE_STRERROR 1
|
169
|
+
|
170
|
+
/* Define to 1 if you have the <strings.h> header file. */
|
171
|
+
#define HAVE_STRINGS_H 1
|
172
|
+
|
173
|
+
/* Define to 1 if you have the <string.h> header file. */
|
174
|
+
#define HAVE_STRING_H 1
|
175
|
+
|
176
|
+
/* Define to 1 if you have the <sun/audioio.h> header file. */
|
177
|
+
/* #undef HAVE_SUN_AUDIOIO_H */
|
178
|
+
|
179
|
+
/* Define to 1 if you have the <sys/audioio.h> header file. */
|
180
|
+
/* #undef HAVE_SYS_AUDIOIO_H */
|
181
|
+
|
182
|
+
/* Define to 1 if you have the <sys/audio.h> header file. */
|
183
|
+
/* #undef HAVE_SYS_AUDIO_H */
|
184
|
+
|
185
|
+
/* Define to 1 if you have the <sys/ioctl.h> header file. */
|
186
|
+
#define HAVE_SYS_IOCTL_H 1
|
187
|
+
|
188
|
+
/* Define to 1 if you have the <sys/param.h> header file. */
|
189
|
+
#define HAVE_SYS_PARAM_H 1
|
190
|
+
|
191
|
+
/* Define to 1 if you have the <sys/resource.h> header file. */
|
192
|
+
#define HAVE_SYS_RESOURCE_H 1
|
193
|
+
|
194
|
+
/* Define to 1 if you have the <sys/signal.h> header file. */
|
195
|
+
#define HAVE_SYS_SIGNAL_H 1
|
196
|
+
|
197
|
+
/* Define to 1 if you have the <sys/socket.h> header file. */
|
198
|
+
#define HAVE_SYS_SOCKET_H 1
|
199
|
+
|
200
|
+
/* Define to 1 if you have the <sys/soundcard.h> header file. */
|
201
|
+
#define HAVE_SYS_SOUNDCARD_H 1
|
202
|
+
|
203
|
+
/* Define to 1 if you have the <sys/stat.h> header file. */
|
204
|
+
#define HAVE_SYS_STAT_H 1
|
205
|
+
|
206
|
+
/* Define to 1 if you have the <sys/time.h> header file. */
|
207
|
+
#define HAVE_SYS_TIME_H 1
|
208
|
+
|
209
|
+
/* Define to 1 if you have the <sys/types.h> header file. */
|
210
|
+
#define HAVE_SYS_TYPES_H 1
|
211
|
+
|
212
|
+
/* Define to 1 if you have the <sys/wait.h> header file. */
|
213
|
+
#define HAVE_SYS_WAIT_H 1
|
214
|
+
|
215
|
+
/* Define this if you have the POSIX termios library */
|
216
|
+
#define HAVE_TERMIOS 1
|
217
|
+
|
218
|
+
/* Define to 1 if you have the <unistd.h> header file. */
|
219
|
+
#define HAVE_UNISTD_H 1
|
220
|
+
|
221
|
+
/* Define to 1 if you have the <windows.h> header file. */
|
222
|
+
/* #undef HAVE_WINDOWS_H */
|
223
|
+
|
224
|
+
/* Define to indicate that float storage follows IEEE754. */
|
225
|
+
#define IEEE_FLOAT 1
|
226
|
+
|
227
|
+
/* size of the frame index seek table */
|
228
|
+
#define INDEX_SIZE 1000
|
229
|
+
|
230
|
+
/* Define if IPV6 support is enabled. */
|
231
|
+
#define IPV6 1
|
232
|
+
|
233
|
+
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
234
|
+
*/
|
235
|
+
#define LT_OBJDIR ".libs/"
|
236
|
+
|
237
|
+
/* Define if network support is enabled. */
|
238
|
+
/* #define NETWORK 1 */
|
239
|
+
|
240
|
+
/* Define to disable 16 bit integer output. */
|
241
|
+
/* #undef NO_16BIT */
|
242
|
+
|
243
|
+
/* Define to disable 32 bit integer output. */
|
244
|
+
/* define NO_32BIT 1 */
|
245
|
+
|
246
|
+
/* Define to disable 8 bit integer output. */
|
247
|
+
/* #undef NO_8BIT */
|
248
|
+
|
249
|
+
/* Define to disable downsampled decoding. */
|
250
|
+
/* #undef NO_DOWNSAMPLE */
|
251
|
+
|
252
|
+
/* Define to disable error messages in combination with a return value (the
|
253
|
+
return is left intact). */
|
254
|
+
/* #undef NO_ERETURN */
|
255
|
+
|
256
|
+
/* Define to disable error messages. */
|
257
|
+
/* #undef NO_ERRORMSG */
|
258
|
+
|
259
|
+
/* Define to disable feeder and buffered readers. */
|
260
|
+
/* #undef NO_FEEDER */
|
261
|
+
|
262
|
+
/* Define to disable ICY handling. */
|
263
|
+
/* #undef NO_ICY */
|
264
|
+
|
265
|
+
/* Define to disable ID3v2 parsing. */
|
266
|
+
/* #undef NO_ID3V2 */
|
267
|
+
|
268
|
+
/* Define to disable layer I. */
|
269
|
+
/* #undef NO_LAYER1 */
|
270
|
+
|
271
|
+
/* Define to disable layer II. */
|
272
|
+
/* #undef NO_LAYER2 */
|
273
|
+
|
274
|
+
/* Define to disable layer III. */
|
275
|
+
/* #undef NO_LAYER3 */
|
276
|
+
|
277
|
+
/* Define to disable ntom resampling. */
|
278
|
+
/* #undef NO_NTOM */
|
279
|
+
|
280
|
+
/* Define to disable real output. */
|
281
|
+
/* define NO_REAL 1 */
|
282
|
+
|
283
|
+
/* Define to disable string functions. */
|
284
|
+
/* #undef NO_STRING */
|
285
|
+
|
286
|
+
/* Define to disable warning messages. */
|
287
|
+
/* #undef NO_WARNING */
|
288
|
+
|
289
|
+
/* Name of package */
|
290
|
+
#define PACKAGE "mpg123"
|
291
|
+
|
292
|
+
/* Define to the address where bug reports for this package should be sent. */
|
293
|
+
#define PACKAGE_BUGREPORT "mpg123-devel@lists.sourceforge.net"
|
294
|
+
|
295
|
+
/* Define to the full name of this package. */
|
296
|
+
#define PACKAGE_NAME "mpg123"
|
297
|
+
|
298
|
+
/* Define to the full name and version of this package. */
|
299
|
+
#define PACKAGE_STRING "mpg123 1.8rc5"
|
300
|
+
|
301
|
+
/* Define to the one symbol short name of this package. */
|
302
|
+
#define PACKAGE_TARNAME "mpg123"
|
303
|
+
|
304
|
+
/* Define to the version of this package. */
|
305
|
+
#define PACKAGE_VERSION "1.8rc5"
|
306
|
+
|
307
|
+
/* Define if portaudio v18 API is wanted. */
|
308
|
+
/* #undef PORTAUDIO18 */
|
309
|
+
|
310
|
+
/* The size of `int32_t', as computed by sizeof. */
|
311
|
+
#define SIZEOF_INT32_T 4
|
312
|
+
|
313
|
+
/* The size of `long', as computed by sizeof. */
|
314
|
+
#define SIZEOF_LONG 4
|
315
|
+
|
316
|
+
/* The size of `off_t', as computed by sizeof. */
|
317
|
+
#define SIZEOF_OFF_T 4
|
318
|
+
|
319
|
+
/* The size of `size_t', as computed by sizeof. */
|
320
|
+
#define SIZEOF_SIZE_T 4
|
321
|
+
|
322
|
+
/* The size of `ssize_t', as computed by sizeof. */
|
323
|
+
#define SIZEOF_SSIZE_T 4
|
324
|
+
|
325
|
+
/* Define to 1 if you have the ANSI C header files. */
|
326
|
+
#define STDC_HEADERS 1
|
327
|
+
|
328
|
+
/* Define if modules are enabled */
|
329
|
+
#define USE_MODULES 1
|
330
|
+
|
331
|
+
/* Version number of package */
|
332
|
+
#define VERSION "1.8rc5"
|
333
|
+
|
334
|
+
/* Number of bits in a file offset, on hosts where this is settable. */
|
335
|
+
/* #undef _FILE_OFFSET_BITS */
|
336
|
+
|
337
|
+
/* Define for large files, on AIX-style hosts. */
|
338
|
+
/* #undef _LARGE_FILES */
|
339
|
+
|
340
|
+
/* Define to empty if `const' does not conform to ANSI C. */
|
341
|
+
/* #undef const */
|
342
|
+
|
343
|
+
/* Define to `__inline__' or `__inline' if that's what the C compiler
|
344
|
+
calls it, or to nothing if 'inline' is not supported under any name. */
|
345
|
+
#ifndef __cplusplus
|
346
|
+
/* #undef inline */
|
347
|
+
#endif
|
348
|
+
|
349
|
+
/* Define to `short' if <sys/types.h> does not define. */
|
350
|
+
/* #undef int16_t */
|
351
|
+
|
352
|
+
/* Define to `int' if <sys/types.h> does not define. */
|
353
|
+
/* #undef int32_t */
|
354
|
+
|
355
|
+
/* Define to `long int' if <sys/types.h> does not define. */
|
356
|
+
/* #undef off_t */
|
357
|
+
|
358
|
+
/* Define to `unsigned long' if <sys/types.h> does not define. */
|
359
|
+
/* #undef size_t */
|
360
|
+
|
361
|
+
/* Define to `long' if <sys/types.h> does not define. */
|
362
|
+
/* #undef ssize_t */
|
363
|
+
|
364
|
+
/* Define to `unsigned short' if <sys/types.h> does not define. */
|
365
|
+
/* #undef uint16_t */
|
366
|
+
|
367
|
+
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
368
|
+
/* #undef uint32_t */
|