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/doc/ACCURACY
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
O-tone Michael Hipp: The mp3 benchmarking lie?
|
2
|
+
----------------------------------------------
|
3
|
+
|
4
|
+
Let's write a few notes about benchmarking the different mp3 decoders,
|
5
|
+
which are available. 'top' is NOT a benchmark, it's a simple check
|
6
|
+
how a program performs. The sad thing with 'top' is, that it has some
|
7
|
+
problems with the measurement of threaded programs of programs only
|
8
|
+
requesting short chunks of processor time. So, the only real test is
|
9
|
+
probably decoding a stream without threads with 100% CPU time and
|
10
|
+
measure the time how long your machine needs for it.
|
11
|
+
You can do this with mpg123 by doing a
|
12
|
+
time mpg123 -t mp3stream.mp3
|
13
|
+
or
|
14
|
+
time mpg123 -s mp3stream.mp3 > /dev/null
|
15
|
+
if you additionally want to measure the I/O time.
|
16
|
+
|
17
|
+
If you find a player, which claims to be 10 or even more times faster than the
|
18
|
+
current players: just don't believe it. A factor of 2 MAY BE possible.
|
19
|
+
|
20
|
+
|
21
|
+
Thomas's mpg123 decision process
|
22
|
+
--------------------------------
|
23
|
+
|
24
|
+
I made some tests back then when I wondered if there is a point in using another "modern" mp3 decoder for my mixing daemon. This was around Dec. 2004 till Feb. 2005 with current versions (0.59r-thorX in the case of mpg123). What follows is a copy of the DECODERS file in the dermixd distribution:
|
25
|
+
|
26
|
+
What decoder should one use?
|
27
|
+
|
28
|
+
-----
|
29
|
+
MP3
|
30
|
+
-----
|
31
|
+
|
32
|
+
mpg123 is the old-fashioned way, uncertain license, may have some problems with extraordinary files (huge id3v2 tags, other specialities?), but fast. Has EQ control; interactive frontend interface (in parts hacked by me...).
|
33
|
+
|
34
|
+
mpg321: is popular these days... interface? speed?
|
35
|
+
|
36
|
+
madplay: is becoming popular these days, handles RVA2 by itself... can't provide an interface nor EQ
|
37
|
+
|
38
|
+
|
39
|
+
speed:
|
40
|
+
|
41
|
+
decoding Dirty Guitar with NULL output, pentium-optimized (not more):
|
42
|
+
|
43
|
+
decoder user time/s
|
44
|
+
mpg123 23
|
45
|
+
madplay(hq) 46
|
46
|
+
madplay(speed) 34
|
47
|
+
mpg321(hq) 62
|
48
|
+
mpg321(speed) 49
|
49
|
+
|
50
|
+
|
51
|
+
So, there is still a strong technical point in using mpg123... even when my 366MHz-Laptop can easily handle several decoders at once with either of the programs, every percent cpu usage drags on the battery... and takes the cpu time from the real work
|
52
|
+
|
53
|
+
-----
|
54
|
+
OGG
|
55
|
+
-----
|
56
|
+
|
57
|
+
7,9M /tmp/dirty_guitar-q3.ogg
|
58
|
+
11M /tmp/dirty_guitar-q5.ogg
|
59
|
+
13M /tmp/dirty_guitar-q6.ogg
|
60
|
+
15M /tmp/dirty_guitar-q7.ogg
|
61
|
+
22M /tmp/dirty_guitar-q9.ogg
|
62
|
+
29M /tmp/dirty_guitar-q10.ogg
|
63
|
+
14M /tmp/dirty_guitar-std.mp3
|
64
|
+
101M /tmp/dirty_guitar.wav
|
65
|
+
|
66
|
+
speed of ogg123:
|
67
|
+
|
68
|
+
quality user time/s
|
69
|
+
3 31
|
70
|
+
5 36
|
71
|
+
6 38
|
72
|
+
7 39
|
73
|
+
10 55
|
74
|
+
|
75
|
+
So, with similar care as mpg123 concerning some (assembler?) optimization, ogg could well come close to "fast" mp3 decoding.
|
76
|
+
Does ist sound better, then?
|
77
|
+
|
78
|
+
|
79
|
+
A review from the new maintainer
|
80
|
+
--------------------------------
|
81
|
+
|
82
|
+
Now it's 2006, 23th of July. Still the same laptop, still the same mp3 file.
|
83
|
+
I just want to update the number for current mpg123 with the mmx optimization.
|
84
|
+
I should also see if competition (well, ogg, at least?) improved in the year that passed... but looking only at mp3, that reduces to the question if mpg123 got faster or slower.
|
85
|
+
Neither on the mpg321 site or the MAD site (ftp dir) did I find any new version. MAD is still 0.15.1b (0.15.2b for madplay), mpg321 still 0.2.10 .
|
86
|
+
Well, I can look at mplayer's mpg123 spawn called mp3lib that has been taken care for over the time.
|
87
|
+
But apart from that, will mpg123 stand alone on the field of console mp3 engines that are actively maintained???
|
88
|
+
To have at least some twist, I now measured the output of raw data to stdout (to /dev/null) instead of decoding alone. The hardware and largely the software is still the same (now kernel 2.6.11 instead of 2.6.?).
|
89
|
+
I've only used the "high quality" mad players - the earlier measurements give a hint about the difference to the "speed" variant.
|
90
|
+
|
91
|
+
mpg123-0.60-beta1, underworld_@_dirty_guitar.mp3
|
92
|
+
|
93
|
+
gcc-3.3.3
|
94
|
+
CFLAGS=-O2 -finline-functions -march=pentium2
|
95
|
+
built with the new autoconf/make system
|
96
|
+
machine in X11 running fluxbox, no active load (like a year ago)
|
97
|
+
measuring second run (with cached file)
|
98
|
+
|
99
|
+
time for -s > /dev/null decode...
|
100
|
+
pentium: 24s
|
101
|
+
pentium, MMX: 19s
|
102
|
+
pentium, MMX, gapless (runtime-disabled): 19s
|
103
|
+
pentium, MMX, gapless (also runtime-enabled): 19s
|
104
|
+
mpg321 0.2.10, high quality: 64s
|
105
|
+
madplay 0.15.2b, high quality: 56s
|
106
|
+
|
107
|
+
With the file length being m:s 9:58 (598s), for mpg123 that makes theoretical realtime cpu 3-4% for the PII-366.
|
108
|
+
Incidentally, `top` agrees there: it shows 3.0-3.3% CPU usage for the MMX/gapless binary during normal OSS playback.
|
109
|
+
|
110
|
+
I feel unable to benchmark the mp3 playback of mplayer - I don't see an option to make it decode audio as fast as possible (I only know -benhcmark and -noaudio; with esp. the latter not helping me there).
|
data/mpg123/doc/BUGS
ADDED
data/mpg123/doc/CONTACT
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
If you have a problem with some mp3 file or with your platform that should be supported by mpg123, please post on the mpg123 user mailing list
|
2
|
+
|
3
|
+
mpg123-users@lists.sourceforge.net
|
4
|
+
|
5
|
+
Any ideas for feature improvements or any other suggestions concerning development may be better placed at
|
6
|
+
|
7
|
+
mpg123-devel@lists.sourceforge.net
|
8
|
+
|
9
|
+
If you don't want to subscribe to these, you can also drop a note to
|
10
|
+
|
11
|
+
maintainer@mpg123.org
|
12
|
+
|
13
|
+
But if you want to subscribe and participate in the open discussion or just browse the mailing list archives, see
|
14
|
+
|
15
|
+
http://sourceforge.net/mail/?group_id=135704
|
16
|
+
|
17
|
+
(or just http://sourceforge.net/projects/mpg123 and click through).
|
data/mpg123/doc/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
GNU says that the license terms go into a file called COPYING.
|
2
|
+
Go over to COPYING to read the license, then.
|
3
|
+
|
4
|
+
Or...
|
5
|
+
|
6
|
+
You stay a bit with me here and read some not really important text.
|
7
|
+
You could imagine that there was some important text here, though.
|
8
|
+
You could also imagine that you were not sitting
|
9
|
+
in your office / living room / bathroom
|
10
|
+
in front of one of these evil electronic brains
|
11
|
+
(you didn't _print_ this file, did you?)
|
12
|
+
but being at some happy place, far, far away.
|
13
|
+
You could also imagine being at some unhappy place.
|
14
|
+
If you indeed are at such an unhappy place, imagine you were sitting
|
15
|
+
in your office / living room / bathroom
|
16
|
+
in front of this shiny, though evil, electronic brain.
|
17
|
+
Reading this pointless text.
|
18
|
+
Wondering about what you could have achieved in the past moments
|
19
|
+
if you wouldn't have continued reading this pointless text.
|
20
|
+
Wondering if anything is worth being achieved at all.
|
21
|
+
Or if it all is just...
|
22
|
+
pointless.
|
@@ -0,0 +1,32 @@
|
|
1
|
+
## Makefile.am: produce Makefile.in from this
|
2
|
+
|
3
|
+
## copyright by the mpg123 project - free software under the terms of the LGPL 2.1
|
4
|
+
## see COPYING and AUTHORS files in distribution or http://mpg123.org
|
5
|
+
## initially written by Nicholas J. Humfrey
|
6
|
+
|
7
|
+
|
8
|
+
EXTRA_DIST = \
|
9
|
+
BENCHMARKING \
|
10
|
+
BUGS \
|
11
|
+
CONTACT \
|
12
|
+
PATENTS \
|
13
|
+
README.3DNOW \
|
14
|
+
README.gain \
|
15
|
+
README.remote \
|
16
|
+
ROAD_TO_LGPL \
|
17
|
+
TODO \
|
18
|
+
LICENSE \
|
19
|
+
THANKS \
|
20
|
+
ACCURACY \
|
21
|
+
libmpg123_speed.txt \
|
22
|
+
doxyhead.xhtml \
|
23
|
+
doxy_examples.c \
|
24
|
+
doxygen.conf \
|
25
|
+
examples/mpg123_to_wav.c \
|
26
|
+
examples/scan.c \
|
27
|
+
examples/mpglib.c \
|
28
|
+
examples/id3dump.c \
|
29
|
+
examples/feedseek.c \
|
30
|
+
examples/dump_seekindex.c \
|
31
|
+
examples/extract_frames.c \
|
32
|
+
examples/Makefile
|
@@ -0,0 +1,490 @@
|
|
1
|
+
# Makefile.in generated by automake 1.12.2 from Makefile.am.
|
2
|
+
# @configure_input@
|
3
|
+
|
4
|
+
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
|
5
|
+
|
6
|
+
# This Makefile.in is free software; the Free Software Foundation
|
7
|
+
# gives unlimited permission to copy and/or distribute it,
|
8
|
+
# with or without modifications, as long as this notice is preserved.
|
9
|
+
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
12
|
+
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
13
|
+
# PARTICULAR PURPOSE.
|
14
|
+
|
15
|
+
@SET_MAKE@
|
16
|
+
VPATH = @srcdir@
|
17
|
+
am__make_dryrun = \
|
18
|
+
{ \
|
19
|
+
am__dry=no; \
|
20
|
+
case $$MAKEFLAGS in \
|
21
|
+
*\\[\ \ ]*) \
|
22
|
+
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
|
23
|
+
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
|
24
|
+
*) \
|
25
|
+
for am__flg in $$MAKEFLAGS; do \
|
26
|
+
case $$am__flg in \
|
27
|
+
*=*|--*) ;; \
|
28
|
+
*n*) am__dry=yes; break;; \
|
29
|
+
esac; \
|
30
|
+
done;; \
|
31
|
+
esac; \
|
32
|
+
test $$am__dry = yes; \
|
33
|
+
}
|
34
|
+
pkgdatadir = $(datadir)/@PACKAGE@
|
35
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
36
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
37
|
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
38
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
39
|
+
install_sh_DATA = $(install_sh) -c -m 644
|
40
|
+
install_sh_PROGRAM = $(install_sh) -c
|
41
|
+
install_sh_SCRIPT = $(install_sh) -c
|
42
|
+
INSTALL_HEADER = $(INSTALL_DATA)
|
43
|
+
transform = $(program_transform_name)
|
44
|
+
NORMAL_INSTALL = :
|
45
|
+
PRE_INSTALL = :
|
46
|
+
POST_INSTALL = :
|
47
|
+
NORMAL_UNINSTALL = :
|
48
|
+
PRE_UNINSTALL = :
|
49
|
+
POST_UNINSTALL = :
|
50
|
+
build_triplet = @build@
|
51
|
+
host_triplet = @host@
|
52
|
+
subdir = doc
|
53
|
+
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in THANKS TODO
|
54
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
55
|
+
am__aclocal_m4_deps = $(top_srcdir)/m4/addrconfig.m4 \
|
56
|
+
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
|
57
|
+
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
|
58
|
+
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
|
59
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
60
|
+
$(ACLOCAL_M4)
|
61
|
+
mkinstalldirs = $(install_sh) -d
|
62
|
+
CONFIG_HEADER = $(top_builddir)/src/config.h
|
63
|
+
CONFIG_CLEAN_FILES =
|
64
|
+
CONFIG_CLEAN_VPATH_FILES =
|
65
|
+
SOURCES =
|
66
|
+
DIST_SOURCES =
|
67
|
+
am__can_run_installinfo = \
|
68
|
+
case $$AM_UPDATE_INFO_DIR in \
|
69
|
+
n|no|NO) false;; \
|
70
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
71
|
+
esac
|
72
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
73
|
+
ACLOCAL = @ACLOCAL@
|
74
|
+
AIX_CFLAGS = @AIX_CFLAGS@
|
75
|
+
AIX_LDFLAGS = @AIX_LDFLAGS@
|
76
|
+
AIX_LIBS = @AIX_LIBS@
|
77
|
+
ALIB_CFLAGS = @ALIB_CFLAGS@
|
78
|
+
ALIB_LDFLAGS = @ALIB_LDFLAGS@
|
79
|
+
ALIB_LIBS = @ALIB_LIBS@
|
80
|
+
ALSA_CFLAGS = @ALSA_CFLAGS@
|
81
|
+
ALSA_LDFLAGS = @ALSA_LDFLAGS@
|
82
|
+
ALSA_LIBS = @ALSA_LIBS@
|
83
|
+
AMTAR = @AMTAR@
|
84
|
+
API_VERSION = @API_VERSION@
|
85
|
+
AR = @AR@
|
86
|
+
ARTS_CFLAGS = @ARTS_CFLAGS@
|
87
|
+
ARTS_LDFLAGS = @ARTS_LDFLAGS@
|
88
|
+
ARTS_LIBS = @ARTS_LIBS@
|
89
|
+
AS = @AS@
|
90
|
+
AUTOCONF = @AUTOCONF@
|
91
|
+
AUTOHEADER = @AUTOHEADER@
|
92
|
+
AUTOMAKE = @AUTOMAKE@
|
93
|
+
AWK = @AWK@
|
94
|
+
CC = @CC@
|
95
|
+
CCAS = @CCAS@
|
96
|
+
CCASDEPMODE = @CCASDEPMODE@
|
97
|
+
CCASFLAGS = @CCASFLAGS@
|
98
|
+
CCDEPMODE = @CCDEPMODE@
|
99
|
+
CFLAGS = @CFLAGS@
|
100
|
+
COREAUDIO_CFLAGS = @COREAUDIO_CFLAGS@
|
101
|
+
COREAUDIO_LDFLAGS = @COREAUDIO_LDFLAGS@
|
102
|
+
COREAUDIO_LIBS = @COREAUDIO_LIBS@
|
103
|
+
CPP = @CPP@
|
104
|
+
CPPFLAGS = @CPPFLAGS@
|
105
|
+
CYGPATH_W = @CYGPATH_W@
|
106
|
+
DECODER_LOBJ = @DECODER_LOBJ@
|
107
|
+
DECODER_OBJ = @DECODER_OBJ@
|
108
|
+
DEFS = @DEFS@
|
109
|
+
DEPDIR = @DEPDIR@
|
110
|
+
DLLTOOL = @DLLTOOL@
|
111
|
+
DSYMUTIL = @DSYMUTIL@
|
112
|
+
DUMMY_CFLAGS = @DUMMY_CFLAGS@
|
113
|
+
DUMMY_LDFLAGS = @DUMMY_LDFLAGS@
|
114
|
+
DUMMY_LIBS = @DUMMY_LIBS@
|
115
|
+
DUMPBIN = @DUMPBIN@
|
116
|
+
ECHO_C = @ECHO_C@
|
117
|
+
ECHO_N = @ECHO_N@
|
118
|
+
ECHO_T = @ECHO_T@
|
119
|
+
EGREP = @EGREP@
|
120
|
+
ESD_CFLAGS = @ESD_CFLAGS@
|
121
|
+
ESD_LDFLAGS = @ESD_LDFLAGS@
|
122
|
+
ESD_LIBS = @ESD_LIBS@
|
123
|
+
EXEC_LT_LDFLAGS = @EXEC_LT_LDFLAGS@
|
124
|
+
EXEEXT = @EXEEXT@
|
125
|
+
FGREP = @FGREP@
|
126
|
+
GREP = @GREP@
|
127
|
+
HP_CFLAGS = @HP_CFLAGS@
|
128
|
+
HP_LDFLAGS = @HP_LDFLAGS@
|
129
|
+
HP_LIBS = @HP_LIBS@
|
130
|
+
INCLUDE_STDIO_H = @INCLUDE_STDIO_H@
|
131
|
+
INCLUDE_STDLIB_H = @INCLUDE_STDLIB_H@
|
132
|
+
INCLUDE_SYS_TYPE_H = @INCLUDE_SYS_TYPE_H@
|
133
|
+
INSTALL = @INSTALL@
|
134
|
+
INSTALL_DATA = @INSTALL_DATA@
|
135
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
136
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
137
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
138
|
+
JACK_CFLAGS = @JACK_CFLAGS@
|
139
|
+
JACK_LDFLAGS = @JACK_LDFLAGS@
|
140
|
+
JACK_LIBS = @JACK_LIBS@
|
141
|
+
LD = @LD@
|
142
|
+
LDFLAGS = @LDFLAGS@
|
143
|
+
LFS_LOBJ = @LFS_LOBJ@
|
144
|
+
LIBMPG123_VERSION = @LIBMPG123_VERSION@
|
145
|
+
LIBOBJS = @LIBOBJS@
|
146
|
+
LIBS = @LIBS@
|
147
|
+
LIBTOOL = @LIBTOOL@
|
148
|
+
LIPO = @LIPO@
|
149
|
+
LN_S = @LN_S@
|
150
|
+
LTLIBOBJS = @LTLIBOBJS@
|
151
|
+
LT_LDFLAGS = @LT_LDFLAGS@
|
152
|
+
MAKEINFO = @MAKEINFO@
|
153
|
+
MANIFEST_TOOL = @MANIFEST_TOOL@
|
154
|
+
MINT_CFLAGS = @MINT_CFLAGS@
|
155
|
+
MINT_LDFLAGS = @MINT_LDFLAGS@
|
156
|
+
MINT_LIBS = @MINT_LIBS@
|
157
|
+
MKDIR_P = @MKDIR_P@
|
158
|
+
MODULE_OBJ = @MODULE_OBJ@
|
159
|
+
NAS_CFLAGS = @NAS_CFLAGS@
|
160
|
+
NAS_LDFLAGS = @NAS_LDFLAGS@
|
161
|
+
NAS_LIBS = @NAS_LIBS@
|
162
|
+
NM = @NM@
|
163
|
+
NMEDIT = @NMEDIT@
|
164
|
+
OBJDUMP = @OBJDUMP@
|
165
|
+
OBJEXT = @OBJEXT@
|
166
|
+
OPENAL_CFLAGS = @OPENAL_CFLAGS@
|
167
|
+
OPENAL_LDFLAGS = @OPENAL_LDFLAGS@
|
168
|
+
OPENAL_LIBS = @OPENAL_LIBS@
|
169
|
+
OS2_CFLAGS = @OS2_CFLAGS@
|
170
|
+
OS2_LDFLAGS = @OS2_LDFLAGS@
|
171
|
+
OS2_LIBS = @OS2_LIBS@
|
172
|
+
OSS_CFLAGS = @OSS_CFLAGS@
|
173
|
+
OSS_LDFLAGS = @OSS_LDFLAGS@
|
174
|
+
OSS_LIBS = @OSS_LIBS@
|
175
|
+
OTOOL = @OTOOL@
|
176
|
+
OTOOL64 = @OTOOL64@
|
177
|
+
OUTPUT_CFLAGS = @OUTPUT_CFLAGS@
|
178
|
+
OUTPUT_LDFLAGS = @OUTPUT_LDFLAGS@
|
179
|
+
OUTPUT_LIBS = @OUTPUT_LIBS@
|
180
|
+
OUTPUT_MOD = @OUTPUT_MOD@
|
181
|
+
OUTPUT_OBJ = @OUTPUT_OBJ@
|
182
|
+
PACKAGE = @PACKAGE@
|
183
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
184
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
185
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
186
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
187
|
+
PACKAGE_URL = @PACKAGE_URL@
|
188
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
189
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
190
|
+
PKG_CONFIG = @PKG_CONFIG@
|
191
|
+
PORTAUDIO_CFLAGS = @PORTAUDIO_CFLAGS@
|
192
|
+
PORTAUDIO_LDFLAGS = @PORTAUDIO_LDFLAGS@
|
193
|
+
PORTAUDIO_LIBS = @PORTAUDIO_LIBS@
|
194
|
+
PULSE_CFLAGS = @PULSE_CFLAGS@
|
195
|
+
PULSE_LDFLAGS = @PULSE_LDFLAGS@
|
196
|
+
PULSE_LIBS = @PULSE_LIBS@
|
197
|
+
RANLIB = @RANLIB@
|
198
|
+
SDL_CFLAGS = @SDL_CFLAGS@
|
199
|
+
SDL_LDFLAGS = @SDL_LDFLAGS@
|
200
|
+
SDL_LIBS = @SDL_LIBS@
|
201
|
+
SED = @SED@
|
202
|
+
SET_MAKE = @SET_MAKE@
|
203
|
+
SGI_CFLAGS = @SGI_CFLAGS@
|
204
|
+
SGI_LDFLAGS = @SGI_LDFLAGS@
|
205
|
+
SGI_LIBS = @SGI_LIBS@
|
206
|
+
SHELL = @SHELL@
|
207
|
+
SNDIO_CFLAGS = @SNDIO_CFLAGS@
|
208
|
+
SNDIO_LDFLAGS = @SNDIO_LDFLAGS@
|
209
|
+
SNDIO_LIBS = @SNDIO_LIBS@
|
210
|
+
STRIP = @STRIP@
|
211
|
+
SUN_CFLAGS = @SUN_CFLAGS@
|
212
|
+
SUN_LDFLAGS = @SUN_LDFLAGS@
|
213
|
+
SUN_LIBS = @SUN_LIBS@
|
214
|
+
VERSION = @VERSION@
|
215
|
+
WIN32_CFLAGS = @WIN32_CFLAGS@
|
216
|
+
WIN32_LDFLAGS = @WIN32_LDFLAGS@
|
217
|
+
WIN32_LIBS = @WIN32_LIBS@
|
218
|
+
abs_builddir = @abs_builddir@
|
219
|
+
abs_srcdir = @abs_srcdir@
|
220
|
+
abs_top_builddir = @abs_top_builddir@
|
221
|
+
abs_top_srcdir = @abs_top_srcdir@
|
222
|
+
ac_ct_AR = @ac_ct_AR@
|
223
|
+
ac_ct_CC = @ac_ct_CC@
|
224
|
+
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
225
|
+
am__include = @am__include@
|
226
|
+
am__leading_dot = @am__leading_dot@
|
227
|
+
am__quote = @am__quote@
|
228
|
+
am__tar = @am__tar@
|
229
|
+
am__untar = @am__untar@
|
230
|
+
bindir = @bindir@
|
231
|
+
build = @build@
|
232
|
+
build_alias = @build_alias@
|
233
|
+
build_cpu = @build_cpu@
|
234
|
+
build_os = @build_os@
|
235
|
+
build_vendor = @build_vendor@
|
236
|
+
builddir = @builddir@
|
237
|
+
datadir = @datadir@
|
238
|
+
datarootdir = @datarootdir@
|
239
|
+
docdir = @docdir@
|
240
|
+
dvidir = @dvidir@
|
241
|
+
exec_prefix = @exec_prefix@
|
242
|
+
host = @host@
|
243
|
+
host_alias = @host_alias@
|
244
|
+
host_cpu = @host_cpu@
|
245
|
+
host_os = @host_os@
|
246
|
+
host_vendor = @host_vendor@
|
247
|
+
htmldir = @htmldir@
|
248
|
+
includedir = @includedir@
|
249
|
+
infodir = @infodir@
|
250
|
+
install_sh = @install_sh@
|
251
|
+
libdir = @libdir@
|
252
|
+
libexecdir = @libexecdir@
|
253
|
+
localedir = @localedir@
|
254
|
+
localstatedir = @localstatedir@
|
255
|
+
mandir = @mandir@
|
256
|
+
mkdir_p = @mkdir_p@
|
257
|
+
oldincludedir = @oldincludedir@
|
258
|
+
pdfdir = @pdfdir@
|
259
|
+
prefix = @prefix@
|
260
|
+
program_transform_name = @program_transform_name@
|
261
|
+
psdir = @psdir@
|
262
|
+
sbindir = @sbindir@
|
263
|
+
sharedstatedir = @sharedstatedir@
|
264
|
+
srcdir = @srcdir@
|
265
|
+
sysconfdir = @sysconfdir@
|
266
|
+
target_alias = @target_alias@
|
267
|
+
top_build_prefix = @top_build_prefix@
|
268
|
+
top_builddir = @top_builddir@
|
269
|
+
top_srcdir = @top_srcdir@
|
270
|
+
EXTRA_DIST = \
|
271
|
+
BENCHMARKING \
|
272
|
+
BUGS \
|
273
|
+
CONTACT \
|
274
|
+
PATENTS \
|
275
|
+
README.3DNOW \
|
276
|
+
README.gain \
|
277
|
+
README.remote \
|
278
|
+
ROAD_TO_LGPL \
|
279
|
+
TODO \
|
280
|
+
LICENSE \
|
281
|
+
THANKS \
|
282
|
+
ACCURACY \
|
283
|
+
libmpg123_speed.txt \
|
284
|
+
doxyhead.xhtml \
|
285
|
+
doxy_examples.c \
|
286
|
+
doxygen.conf \
|
287
|
+
examples/mpg123_to_wav.c \
|
288
|
+
examples/scan.c \
|
289
|
+
examples/mpglib.c \
|
290
|
+
examples/id3dump.c \
|
291
|
+
examples/feedseek.c \
|
292
|
+
examples/dump_seekindex.c \
|
293
|
+
examples/extract_frames.c \
|
294
|
+
examples/Makefile
|
295
|
+
|
296
|
+
all: all-am
|
297
|
+
|
298
|
+
.SUFFIXES:
|
299
|
+
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
300
|
+
@for dep in $?; do \
|
301
|
+
case '$(am__configure_deps)' in \
|
302
|
+
*$$dep*) \
|
303
|
+
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
304
|
+
&& { if test -f $@; then exit 0; else break; fi; }; \
|
305
|
+
exit 1;; \
|
306
|
+
esac; \
|
307
|
+
done; \
|
308
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
|
309
|
+
$(am__cd) $(top_srcdir) && \
|
310
|
+
$(AUTOMAKE) --gnu doc/Makefile
|
311
|
+
.PRECIOUS: Makefile
|
312
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
313
|
+
@case '$?' in \
|
314
|
+
*config.status*) \
|
315
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
316
|
+
*) \
|
317
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
318
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
319
|
+
esac;
|
320
|
+
|
321
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
322
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
323
|
+
|
324
|
+
$(top_srcdir)/configure: $(am__configure_deps)
|
325
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
326
|
+
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
327
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
328
|
+
$(am__aclocal_m4_deps):
|
329
|
+
|
330
|
+
mostlyclean-libtool:
|
331
|
+
-rm -f *.lo
|
332
|
+
|
333
|
+
clean-libtool:
|
334
|
+
-rm -rf .libs _libs
|
335
|
+
tags: TAGS
|
336
|
+
TAGS:
|
337
|
+
|
338
|
+
ctags: CTAGS
|
339
|
+
CTAGS:
|
340
|
+
|
341
|
+
cscope cscopelist:
|
342
|
+
|
343
|
+
|
344
|
+
distdir: $(DISTFILES)
|
345
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
346
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
347
|
+
list='$(DISTFILES)'; \
|
348
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
349
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
350
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
351
|
+
case $$dist_files in \
|
352
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
353
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
354
|
+
sort -u` ;; \
|
355
|
+
esac; \
|
356
|
+
for file in $$dist_files; do \
|
357
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
358
|
+
if test -d $$d/$$file; then \
|
359
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
360
|
+
if test -d "$(distdir)/$$file"; then \
|
361
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
362
|
+
fi; \
|
363
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
364
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
365
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
366
|
+
fi; \
|
367
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
368
|
+
else \
|
369
|
+
test -f "$(distdir)/$$file" \
|
370
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
371
|
+
|| exit 1; \
|
372
|
+
fi; \
|
373
|
+
done
|
374
|
+
check-am: all-am
|
375
|
+
check: check-am
|
376
|
+
all-am: Makefile
|
377
|
+
installdirs:
|
378
|
+
install: install-am
|
379
|
+
install-exec: install-exec-am
|
380
|
+
install-data: install-data-am
|
381
|
+
uninstall: uninstall-am
|
382
|
+
|
383
|
+
install-am: all-am
|
384
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
385
|
+
|
386
|
+
installcheck: installcheck-am
|
387
|
+
install-strip:
|
388
|
+
if test -z '$(STRIP)'; then \
|
389
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
390
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
391
|
+
install; \
|
392
|
+
else \
|
393
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
394
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
395
|
+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
396
|
+
fi
|
397
|
+
mostlyclean-generic:
|
398
|
+
|
399
|
+
clean-generic:
|
400
|
+
|
401
|
+
distclean-generic:
|
402
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
403
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
404
|
+
|
405
|
+
maintainer-clean-generic:
|
406
|
+
@echo "This command is intended for maintainers to use"
|
407
|
+
@echo "it deletes files that may require special tools to rebuild."
|
408
|
+
clean: clean-am
|
409
|
+
|
410
|
+
clean-am: clean-generic clean-libtool mostlyclean-am
|
411
|
+
|
412
|
+
distclean: distclean-am
|
413
|
+
-rm -f Makefile
|
414
|
+
distclean-am: clean-am distclean-generic
|
415
|
+
|
416
|
+
dvi: dvi-am
|
417
|
+
|
418
|
+
dvi-am:
|
419
|
+
|
420
|
+
html: html-am
|
421
|
+
|
422
|
+
html-am:
|
423
|
+
|
424
|
+
info: info-am
|
425
|
+
|
426
|
+
info-am:
|
427
|
+
|
428
|
+
install-data-am:
|
429
|
+
|
430
|
+
install-dvi: install-dvi-am
|
431
|
+
|
432
|
+
install-dvi-am:
|
433
|
+
|
434
|
+
install-exec-am:
|
435
|
+
|
436
|
+
install-html: install-html-am
|
437
|
+
|
438
|
+
install-html-am:
|
439
|
+
|
440
|
+
install-info: install-info-am
|
441
|
+
|
442
|
+
install-info-am:
|
443
|
+
|
444
|
+
install-man:
|
445
|
+
|
446
|
+
install-pdf: install-pdf-am
|
447
|
+
|
448
|
+
install-pdf-am:
|
449
|
+
|
450
|
+
install-ps: install-ps-am
|
451
|
+
|
452
|
+
install-ps-am:
|
453
|
+
|
454
|
+
installcheck-am:
|
455
|
+
|
456
|
+
maintainer-clean: maintainer-clean-am
|
457
|
+
-rm -f Makefile
|
458
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
459
|
+
|
460
|
+
mostlyclean: mostlyclean-am
|
461
|
+
|
462
|
+
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
463
|
+
|
464
|
+
pdf: pdf-am
|
465
|
+
|
466
|
+
pdf-am:
|
467
|
+
|
468
|
+
ps: ps-am
|
469
|
+
|
470
|
+
ps-am:
|
471
|
+
|
472
|
+
uninstall-am:
|
473
|
+
|
474
|
+
.MAKE: install-am install-strip
|
475
|
+
|
476
|
+
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
477
|
+
distclean distclean-generic distclean-libtool distdir dvi \
|
478
|
+
dvi-am html html-am info info-am install install-am \
|
479
|
+
install-data install-data-am install-dvi install-dvi-am \
|
480
|
+
install-exec install-exec-am install-html install-html-am \
|
481
|
+
install-info install-info-am install-man install-pdf \
|
482
|
+
install-pdf-am install-ps install-ps-am install-strip \
|
483
|
+
installcheck installcheck-am installdirs maintainer-clean \
|
484
|
+
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
485
|
+
mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am
|
486
|
+
|
487
|
+
|
488
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
489
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
490
|
+
.NOEXPORT:
|