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,78 @@
|
|
1
|
+
/*
|
2
|
+
dummy: dummy audio output
|
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
|
+
*/
|
7
|
+
|
8
|
+
#include "mpg123app.h"
|
9
|
+
#include "debug.h"
|
10
|
+
|
11
|
+
static int open_dummy(audio_output_t *ao)
|
12
|
+
{
|
13
|
+
debug("open_dummy()");
|
14
|
+
return 0;
|
15
|
+
}
|
16
|
+
|
17
|
+
static int get_formats_dummy(audio_output_t *ao)
|
18
|
+
{
|
19
|
+
debug("get_formats_dummy()");
|
20
|
+
return MPG123_ENC_SIGNED_16;
|
21
|
+
}
|
22
|
+
|
23
|
+
static int write_dummy(audio_output_t *ao,unsigned char *buf,int len)
|
24
|
+
{
|
25
|
+
debug("write_dummy()");
|
26
|
+
return len;
|
27
|
+
}
|
28
|
+
|
29
|
+
static void flush_dummy(audio_output_t *ao)
|
30
|
+
{
|
31
|
+
debug("flush_dummy()");
|
32
|
+
}
|
33
|
+
|
34
|
+
static int close_dummy(audio_output_t *ao)
|
35
|
+
{
|
36
|
+
debug("close_dummy()");
|
37
|
+
return 0;
|
38
|
+
}
|
39
|
+
|
40
|
+
static int deinit_dummy(audio_output_t *ao)
|
41
|
+
{
|
42
|
+
debug("deinit_dummy()");
|
43
|
+
return 0;
|
44
|
+
}
|
45
|
+
|
46
|
+
|
47
|
+
static int init_dummy(audio_output_t* ao)
|
48
|
+
{
|
49
|
+
if (ao==NULL) return -1;
|
50
|
+
debug("init_dummy()");
|
51
|
+
|
52
|
+
/* Set callbacks */
|
53
|
+
ao->open = open_dummy;
|
54
|
+
ao->flush = flush_dummy;
|
55
|
+
ao->write = write_dummy;
|
56
|
+
ao->get_formats = get_formats_dummy;
|
57
|
+
ao->close = close_dummy;
|
58
|
+
ao->deinit = deinit_dummy;
|
59
|
+
|
60
|
+
/* Success */
|
61
|
+
return 0;
|
62
|
+
}
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
/*
|
67
|
+
Module information data structure
|
68
|
+
*/
|
69
|
+
mpg123_module_t mpg123_output_module_info = {
|
70
|
+
/* api_version */ MPG123_MODULE_API_VERSION,
|
71
|
+
/* name */ "dummy",
|
72
|
+
/* description */ "Dummy audio output - does not output audio.",
|
73
|
+
/* revision */ "$Rev:$",
|
74
|
+
/* handle */ NULL,
|
75
|
+
|
76
|
+
/* init_output */ init_dummy,
|
77
|
+
};
|
78
|
+
|
@@ -0,0 +1,167 @@
|
|
1
|
+
/*
|
2
|
+
esd: audio output for ESounD (highly untested nowadays (?))
|
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 Eric B. Mitchell ("esd port" should be this file...)
|
7
|
+
*/
|
8
|
+
|
9
|
+
/* First the common header, including config.h
|
10
|
+
...this is important for stuff like _FILE_OFFSET_BITS */
|
11
|
+
#include "mpg123app.h"
|
12
|
+
|
13
|
+
#include <esd.h>
|
14
|
+
#include <errno.h>
|
15
|
+
#include <assert.h>
|
16
|
+
|
17
|
+
#ifdef SOLARIS
|
18
|
+
#include <stropts.h>
|
19
|
+
#include <sys/conf.h>
|
20
|
+
#endif
|
21
|
+
#ifdef NETBSD
|
22
|
+
#include <sys/ioctl.h>
|
23
|
+
#include <sys/audioio.h>
|
24
|
+
#endif
|
25
|
+
#include "debug.h"
|
26
|
+
|
27
|
+
static unsigned esd_rate = 0, esd_format = 0, esd_channels = 0;
|
28
|
+
|
29
|
+
|
30
|
+
static int open_esound(audio_output_t *ao)
|
31
|
+
{
|
32
|
+
esd_format_t format = ESD_STREAM | ESD_PLAY;
|
33
|
+
|
34
|
+
if (!esd_rate)
|
35
|
+
{
|
36
|
+
int esd;
|
37
|
+
esd_server_info_t *info;
|
38
|
+
esd_format_t fmt;
|
39
|
+
|
40
|
+
if ((esd = esd_open_sound(NULL)) >= 0)
|
41
|
+
{
|
42
|
+
info = esd_get_server_info(esd);
|
43
|
+
esd_rate = info->rate;
|
44
|
+
fmt = info->format;
|
45
|
+
esd_free_server_info(info);
|
46
|
+
esd_close(esd);
|
47
|
+
}
|
48
|
+
else
|
49
|
+
{
|
50
|
+
esd_rate = esd_audio_rate;
|
51
|
+
fmt = esd_audio_format;
|
52
|
+
}
|
53
|
+
esd_format = MPG123_ENC_UNSIGNED_8;
|
54
|
+
|
55
|
+
if ((fmt & ESD_MASK_BITS) == ESD_BITS16)
|
56
|
+
esd_format |= MPG123_ENC_SIGNED_16;
|
57
|
+
esd_channels = fmt & ESD_MASK_CHAN;
|
58
|
+
}
|
59
|
+
|
60
|
+
if (ao->format == -1)
|
61
|
+
ao->format = esd_format;
|
62
|
+
else if (!(ao->format & esd_format))
|
63
|
+
{
|
64
|
+
error1("Unsupported audio format: %d\n", ao->format);
|
65
|
+
errno = EINVAL;
|
66
|
+
return -1;
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
if (ao->format & MPG123_ENC_SIGNED_16)
|
71
|
+
format |= ESD_BITS16;
|
72
|
+
else if (ao->format & MPG123_ENC_UNSIGNED_8)
|
73
|
+
format |= ESD_BITS8;
|
74
|
+
else assert(0);
|
75
|
+
|
76
|
+
if (ao->channels == -1) ao->channels = 2;
|
77
|
+
else if (ao->channels <= 0 || ao->channels > esd_channels)
|
78
|
+
{
|
79
|
+
error1("Unsupported no of channels: %d\n", ao->channels);
|
80
|
+
errno = EINVAL;
|
81
|
+
return -1;
|
82
|
+
}
|
83
|
+
if (ao->channels == 1)
|
84
|
+
format |= ESD_MONO;
|
85
|
+
else if (ao->channels == 2)
|
86
|
+
format |= ESD_STEREO;
|
87
|
+
else assert(0);
|
88
|
+
|
89
|
+
if (ao->rate == -1) ao->rate = esd_rate;
|
90
|
+
else if (ao->rate > esd_rate)
|
91
|
+
return -1;
|
92
|
+
|
93
|
+
ao->fn = esd_play_stream_fallback(format, ao->rate, ao->device, "mpg123");
|
94
|
+
return (ao->fn);
|
95
|
+
}
|
96
|
+
|
97
|
+
static int get_formats_esound (audio_output_t *ao)
|
98
|
+
{
|
99
|
+
if (0 < ao->channels && ao->channels <= esd_channels
|
100
|
+
&& 0 < ao->rate && ao->rate <= esd_rate)
|
101
|
+
{
|
102
|
+
return esd_format;
|
103
|
+
} else {
|
104
|
+
return -1;
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
static int write_esound(audio_output_t *ao,unsigned char *buf,int len)
|
109
|
+
{
|
110
|
+
return write(ao->fn,buf,len);
|
111
|
+
}
|
112
|
+
|
113
|
+
static int close_esound(audio_output_t *ao)
|
114
|
+
{
|
115
|
+
close (ao->fn);
|
116
|
+
return 0;
|
117
|
+
}
|
118
|
+
|
119
|
+
#ifdef SOLARIS
|
120
|
+
static void flush_esound (audio_output_t *ao)
|
121
|
+
{
|
122
|
+
ioctl (ao->fn, I_FLUSH, FLUSHRW);
|
123
|
+
}
|
124
|
+
#else
|
125
|
+
#ifdef NETBSD
|
126
|
+
static void flush_esound (audio_output_t *ao)
|
127
|
+
{
|
128
|
+
ioctl (ao->fn, AUDIO_FLUSH, 0);
|
129
|
+
}
|
130
|
+
#else
|
131
|
+
/* Dunno what to do on Linux and Cygwin, but the func must be at least defined! */
|
132
|
+
static void flush_esound (audio_output_t *ao)
|
133
|
+
{
|
134
|
+
}
|
135
|
+
#endif
|
136
|
+
#endif
|
137
|
+
|
138
|
+
|
139
|
+
static int init_esound(audio_output_t* ao)
|
140
|
+
{
|
141
|
+
if (ao==NULL) return -1;
|
142
|
+
|
143
|
+
/* Set callbacks */
|
144
|
+
ao->open = open_esound;
|
145
|
+
ao->flush = flush_esound;
|
146
|
+
ao->write = write_esound;
|
147
|
+
ao->get_formats = get_formats_esound;
|
148
|
+
ao->close = close_esound;
|
149
|
+
|
150
|
+
/* Success */
|
151
|
+
return 0;
|
152
|
+
}
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
/*
|
157
|
+
Module information data structure
|
158
|
+
*/
|
159
|
+
mpg123_module_t mpg123_output_module_info = {
|
160
|
+
/* api_version */ MPG123_MODULE_API_VERSION,
|
161
|
+
/* name */ "esd",
|
162
|
+
/* description */ "Output audio using ESounD (The Enlightened Sound Daemon).",
|
163
|
+
/* revision */ "$Rev: 1698 $",
|
164
|
+
/* handle */ NULL,
|
165
|
+
|
166
|
+
/* init_output */ init_esound,
|
167
|
+
};
|
@@ -0,0 +1,184 @@
|
|
1
|
+
/*
|
2
|
+
hp: audio output for HP-UX
|
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
|
+
#include "mpg123app.h"
|
10
|
+
#include <fcntl.h>
|
11
|
+
#include <sys/audio.h>
|
12
|
+
#include "debug.h"
|
13
|
+
|
14
|
+
|
15
|
+
static int set_rate(audio_output_t *ao)
|
16
|
+
{
|
17
|
+
if(ao->rate >= 0) {
|
18
|
+
return ioctl(ao->fn,AUDIO_SET_SAMPLE_RATE,ao->rate);
|
19
|
+
} else {
|
20
|
+
return 0;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
static int set_channels(audio_output_t *ao)
|
25
|
+
{
|
26
|
+
if(ao->channels<0) return 0;
|
27
|
+
return ioctl(ao->fn,AUDIO_SET_CHANNELS,ao->channels);
|
28
|
+
}
|
29
|
+
|
30
|
+
static int set_format(audio_output_t *ao)
|
31
|
+
{
|
32
|
+
int fmt;
|
33
|
+
|
34
|
+
switch(ao->format) {
|
35
|
+
case -1:
|
36
|
+
case MPG123_ENC_SIGNED_16:
|
37
|
+
default:
|
38
|
+
fmt = MPG123_ENC_LINEAR16BIT;
|
39
|
+
break;
|
40
|
+
case MPG123_ENC_UNSIGNED_8:
|
41
|
+
error("unsigned 8 bit linear not supported");
|
42
|
+
return -1;
|
43
|
+
case MPG123_ENC_SIGNED_8:
|
44
|
+
error("signed 8 bit linear not supported");
|
45
|
+
return -1;
|
46
|
+
case MPG123_ENC_ALAW_8:
|
47
|
+
fmt = MPG123_ENC_ALAW;
|
48
|
+
break;
|
49
|
+
case MPG123_ENC_ULAW_8:
|
50
|
+
fmt = MPG123_ENC_ULAW;
|
51
|
+
break;
|
52
|
+
}
|
53
|
+
return ioctl(ao->fn,AUDIO_SET_DATA_FORMAT,fmt);
|
54
|
+
}
|
55
|
+
|
56
|
+
static int get_formats(audio_output_t *ao)
|
57
|
+
{
|
58
|
+
return MPG123_ENC_SIGNED_16;
|
59
|
+
}
|
60
|
+
|
61
|
+
static int reset_parameters(audio_output_t *ao)
|
62
|
+
{
|
63
|
+
int ret;
|
64
|
+
ret = set_format(ai);
|
65
|
+
if(ret >= 0)
|
66
|
+
ret = set_channels_hp(ai);
|
67
|
+
if(ret >= 0)
|
68
|
+
ret = set_rate_hp(ai);
|
69
|
+
return ret;
|
70
|
+
}
|
71
|
+
|
72
|
+
|
73
|
+
static int open_hp(audio_output_t *ao)
|
74
|
+
{
|
75
|
+
struct audio_describe ades;
|
76
|
+
struct audio_gain again;
|
77
|
+
int i,audio;
|
78
|
+
|
79
|
+
ao->fn = open("/dev/audio",O_RDWR);
|
80
|
+
|
81
|
+
if(ao->fn < 0)
|
82
|
+
return -1;
|
83
|
+
|
84
|
+
|
85
|
+
ioctl(ao->fn,AUDIO_DESCRIBE,&ades);
|
86
|
+
|
87
|
+
if(ao->gain != -1)
|
88
|
+
{
|
89
|
+
if(ao->gain > ades.max_transmit_gain)
|
90
|
+
{
|
91
|
+
error("your gainvalue was to high -> set to maximum.");
|
92
|
+
ao->gain = ades.max_transmit_gain;
|
93
|
+
}
|
94
|
+
if(ao->gain < ades.min_transmit_gain)
|
95
|
+
{
|
96
|
+
error("your gainvalue was to low -> set to minimum.");
|
97
|
+
ao->gain = ades.min_transmit_gain;
|
98
|
+
}
|
99
|
+
again.channel_mask = AUDIO_CHANNEL_0 | AUDIO_CHANNEL_1;
|
100
|
+
ioctl(ao->fn,AUDIO_GET_GAINS,&again);
|
101
|
+
again.cgain[0].transmit_gain = ao->gain;
|
102
|
+
again.cgain[1].transmit_gain = ao->gain;
|
103
|
+
again.channel_mask = AUDIO_CHANNEL_0 | AUDIO_CHANNEL_1;
|
104
|
+
ioctl(ao->fn,AUDIO_SET_GAINS,&again);
|
105
|
+
}
|
106
|
+
|
107
|
+
if(ao->flags != -1)
|
108
|
+
{
|
109
|
+
if(ao->flags & AUDIO_OUT_INTERNAL_SPEAKER)
|
110
|
+
ioctl(ao->fn,AUDIO_SET_OUTPUT,AUDIO_OUT_SPEAKER);
|
111
|
+
else if(ao->flags & AUDIO_OUT_HEADPHONES)
|
112
|
+
ioctl(ao->fn,AUDIO_SET_OUTPUT,AUDIO_OUT_HEADPHONE);
|
113
|
+
else if(ao->flags & AUDIO_OUT_LINE_OUT)
|
114
|
+
ioctl(ao->fn,AUDIO_SET_OUTPUT,AUDIO_OUT_LINE);
|
115
|
+
}
|
116
|
+
|
117
|
+
if(ao->rate == -1)
|
118
|
+
ao->rate = 44100;
|
119
|
+
|
120
|
+
for(i=0;i<ades.nrates;i++)
|
121
|
+
{
|
122
|
+
if(ao->rate == ades.sample_rate[i])
|
123
|
+
break;
|
124
|
+
}
|
125
|
+
if(i == ades.nrates)
|
126
|
+
{
|
127
|
+
error1("Can't set sample-rate to %ld.\n",ao->rate);
|
128
|
+
i = 0;
|
129
|
+
}
|
130
|
+
|
131
|
+
if(reset_parameters(ai) < 0)
|
132
|
+
return -1;
|
133
|
+
|
134
|
+
return ao->fn;
|
135
|
+
}
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
static int write_hp(audio_output_t *ao,unsigned char *buf,int len)
|
140
|
+
{
|
141
|
+
return write(ao->fn,buf,len);
|
142
|
+
}
|
143
|
+
|
144
|
+
static int close_hp(audio_output_t *ao)
|
145
|
+
{
|
146
|
+
close (ao->fn);
|
147
|
+
return 0;
|
148
|
+
}
|
149
|
+
|
150
|
+
static void flush_hp(audio_output_t *ao)
|
151
|
+
{
|
152
|
+
}
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
static int init_hp(audio_output_t* ao)
|
157
|
+
{
|
158
|
+
if (ao==NULL) return -1;
|
159
|
+
|
160
|
+
/* Set callbacks */
|
161
|
+
ao->open = open_hp;
|
162
|
+
ao->flush = flush_hp;
|
163
|
+
ao->write = write_hp;
|
164
|
+
ao->get_formats = get_formats_hp;
|
165
|
+
ao->close = close_hp;
|
166
|
+
|
167
|
+
/* Success */
|
168
|
+
return 0;
|
169
|
+
}
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
/*
|
174
|
+
Module information data structure
|
175
|
+
*/
|
176
|
+
mpg123_module_t mpg123_output_module_info = {
|
177
|
+
/* api_version */ MPG123_MODULE_API_VERSION,
|
178
|
+
/* name */ "hp",
|
179
|
+
/* description */ "Output audio HP-UX",
|
180
|
+
/* revision */ "$Rev:$",
|
181
|
+
/* handle */ NULL,
|
182
|
+
|
183
|
+
/* init_output */ init_hp,
|
184
|
+
};
|
@@ -0,0 +1,450 @@
|
|
1
|
+
/*
|
2
|
+
jack: audio output via JACK Audio Connection Kit
|
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 Nicholas J. Humfrey
|
7
|
+
*/
|
8
|
+
|
9
|
+
#include <math.h>
|
10
|
+
|
11
|
+
#include <jack/jack.h>
|
12
|
+
#include <jack/ringbuffer.h>
|
13
|
+
#include <sys/errno.h>
|
14
|
+
|
15
|
+
#include "mpg123app.h"
|
16
|
+
#include "debug.h"
|
17
|
+
|
18
|
+
#define MAX_CHANNELS (2)
|
19
|
+
|
20
|
+
typedef struct {
|
21
|
+
int channels;
|
22
|
+
jack_port_t *ports[MAX_CHANNELS];
|
23
|
+
jack_ringbuffer_t * rb[MAX_CHANNELS];
|
24
|
+
size_t rb_size;
|
25
|
+
jack_client_t *client;
|
26
|
+
jack_default_audio_sample_t *tmp_buffer;
|
27
|
+
} jack_handle_t, *jack_handle_ptr;
|
28
|
+
|
29
|
+
|
30
|
+
static jack_handle_t* alloc_jack_handle()
|
31
|
+
{
|
32
|
+
jack_handle_t *handle=NULL;
|
33
|
+
|
34
|
+
handle = malloc(sizeof(jack_handle_t));
|
35
|
+
if (!handle) {
|
36
|
+
error("Failed to allocate memory for our handle.");
|
37
|
+
return NULL;
|
38
|
+
}
|
39
|
+
|
40
|
+
/* Initialise the handle, and store for later*/
|
41
|
+
handle->rb[0] = NULL;
|
42
|
+
handle->rb[1] = NULL;
|
43
|
+
handle->ports[0] = NULL;
|
44
|
+
handle->ports[1] = NULL;
|
45
|
+
handle->client = NULL;
|
46
|
+
handle->tmp_buffer = NULL;
|
47
|
+
handle->rb_size = 0;
|
48
|
+
|
49
|
+
|
50
|
+
return handle;
|
51
|
+
}
|
52
|
+
|
53
|
+
|
54
|
+
static void free_jack_handle( jack_handle_t* handle )
|
55
|
+
{
|
56
|
+
int i;
|
57
|
+
|
58
|
+
warning("FIXME: One needs to wait or write some silence here to prevent the last bits of audio to vanish out of the ringbuffer.");
|
59
|
+
|
60
|
+
for(i=0; i<MAX_CHANNELS; i++) {
|
61
|
+
/* Close the port for channel*/
|
62
|
+
if ( handle->ports[i] )
|
63
|
+
jack_port_unregister( handle->client, handle->ports[i] );
|
64
|
+
|
65
|
+
/* Free up the ring buffer for channel*/
|
66
|
+
if ( handle->rb[i] )
|
67
|
+
jack_ringbuffer_free( handle->rb[i] );
|
68
|
+
}
|
69
|
+
|
70
|
+
if (handle->client)
|
71
|
+
jack_client_close(handle->client);
|
72
|
+
|
73
|
+
if (handle->tmp_buffer)
|
74
|
+
free(handle->tmp_buffer);
|
75
|
+
|
76
|
+
free(handle);
|
77
|
+
}
|
78
|
+
|
79
|
+
|
80
|
+
static int process_callback( jack_nframes_t nframes, void *arg )
|
81
|
+
{
|
82
|
+
jack_handle_t* handle = (jack_handle_t*)arg;
|
83
|
+
size_t to_read = sizeof (jack_default_audio_sample_t) * nframes;
|
84
|
+
unsigned int c;
|
85
|
+
|
86
|
+
|
87
|
+
/* copy data to ringbuffer; one per channel*/
|
88
|
+
for (c=0; c < handle->channels; c++)
|
89
|
+
{
|
90
|
+
char *buf = (char*)jack_port_get_buffer(handle->ports[c], nframes);
|
91
|
+
size_t len = jack_ringbuffer_read(handle->rb[c], buf, to_read);
|
92
|
+
|
93
|
+
/* If we don't have enough audio, fill it up with silence*/
|
94
|
+
/* (this is to deal with pausing etc.)*/
|
95
|
+
if (to_read > len)
|
96
|
+
bzero( buf+len, to_read - len );
|
97
|
+
|
98
|
+
/*if (len < to_read)*/
|
99
|
+
/* error1("failed to read from ring buffer %d",c);*/
|
100
|
+
}
|
101
|
+
|
102
|
+
/* Success*/
|
103
|
+
return 0;
|
104
|
+
}
|
105
|
+
|
106
|
+
static void shutdown_callback( void *arg )
|
107
|
+
{
|
108
|
+
/* jack_handle_t* handle = (jack_handle_t*)arg; */
|
109
|
+
|
110
|
+
debug("shutdown_callback()");
|
111
|
+
|
112
|
+
}
|
113
|
+
|
114
|
+
/* connect to jack ports named in the NULL-terminated wishlist */
|
115
|
+
static int real_connect_jack_ports( jack_handle_t* handle, const char** wishlist)
|
116
|
+
{
|
117
|
+
const char **wish = wishlist;
|
118
|
+
int ch, err;
|
119
|
+
|
120
|
+
if(wish != NULL && *wish == NULL) return 1; /* success, nothing connected as wanted */
|
121
|
+
|
122
|
+
for(ch=0; ch<handle->channels; ++ch)
|
123
|
+
{
|
124
|
+
const char* in = jack_port_name( handle->ports[ch] );
|
125
|
+
|
126
|
+
if ((err = jack_connect(handle->client, in, *wish)) != 0 && err != EEXIST) {
|
127
|
+
error1("connect_jack_ports(): failed to jack_connect() ports: %d",err);
|
128
|
+
return 0;
|
129
|
+
}
|
130
|
+
/* Increment wish only if there is another one. Otherwise simply connect to the same port multiple times. */
|
131
|
+
if(*(wish+1) != NULL) ++wish;
|
132
|
+
}
|
133
|
+
|
134
|
+
return 1;
|
135
|
+
}
|
136
|
+
|
137
|
+
/* crude way of automatically connecting up jack ports */
|
138
|
+
/* 0 on error */
|
139
|
+
static int autoconnect_jack_ports( jack_handle_t* handle)
|
140
|
+
{
|
141
|
+
const char **all_ports;
|
142
|
+
unsigned int ch=0;
|
143
|
+
int err,i;
|
144
|
+
|
145
|
+
/* Get a list of all the jack ports*/
|
146
|
+
all_ports = jack_get_ports (handle->client, NULL, NULL, JackPortIsInput);
|
147
|
+
if (!all_ports) {
|
148
|
+
error("connect_jack_ports(): jack_get_ports() returned NULL.");
|
149
|
+
return 0;
|
150
|
+
}
|
151
|
+
|
152
|
+
/* Step through each port name*/
|
153
|
+
for (i = 0; all_ports[i]; ++i) {
|
154
|
+
|
155
|
+
const char* in = jack_port_name( handle->ports[ch] );
|
156
|
+
const char* out = all_ports[i];
|
157
|
+
|
158
|
+
if ((err = jack_connect(handle->client, in, out)) != 0 && err != EEXIST) {
|
159
|
+
error1("connect_jack_ports(): failed to jack_connect() ports: %d",err);
|
160
|
+
return 0;
|
161
|
+
}
|
162
|
+
|
163
|
+
/* Found enough ports ?*/
|
164
|
+
if (++ch >= handle->channels) break;
|
165
|
+
}
|
166
|
+
|
167
|
+
free( all_ports );
|
168
|
+
return 1;
|
169
|
+
}
|
170
|
+
|
171
|
+
|
172
|
+
static int connect_jack_ports( jack_handle_t* handle, const char *dev )
|
173
|
+
{
|
174
|
+
if (dev==NULL || strcmp(dev, "auto")==0) {
|
175
|
+
return autoconnect_jack_ports( handle );
|
176
|
+
}
|
177
|
+
else
|
178
|
+
{
|
179
|
+
const char* wishlist[] = { NULL, NULL, NULL }; /* Two channels and end marker. */
|
180
|
+
char *devcopy;
|
181
|
+
int ret;
|
182
|
+
size_t len = strlen(dev);
|
183
|
+
devcopy = malloc(len+1);
|
184
|
+
if(devcopy == NULL){ error("OOM"); return 0; }
|
185
|
+
|
186
|
+
/* We just look out for a possible second port, comma separated
|
187
|
+
This is really crude cruft, but it's enough. Can be replaced by something sensible later. */
|
188
|
+
memcpy(devcopy, dev, len+1);
|
189
|
+
if( len > 0 && strcmp(dev, "none")!=0 )
|
190
|
+
{
|
191
|
+
size_t i=0;
|
192
|
+
wishlist[0] = devcopy;
|
193
|
+
while(devcopy[i] != 0 && devcopy[i] != ',') ++i;
|
194
|
+
|
195
|
+
if(devcopy[i] == ',')
|
196
|
+
{
|
197
|
+
devcopy[i] = 0;
|
198
|
+
wishlist[1] = devcopy+i+1;
|
199
|
+
}
|
200
|
+
}
|
201
|
+
if(wishlist[0] == NULL) warning("Not connecting up jack ports as requested.");
|
202
|
+
|
203
|
+
ret = real_connect_jack_ports(handle, wishlist);
|
204
|
+
free(devcopy);
|
205
|
+
return ret;
|
206
|
+
}
|
207
|
+
return 1;
|
208
|
+
}
|
209
|
+
|
210
|
+
|
211
|
+
static int close_jack(audio_output_t *ao)
|
212
|
+
{
|
213
|
+
jack_handle_t *handle = (jack_handle_t*)ao->userptr;
|
214
|
+
|
215
|
+
debug("close_jack().");
|
216
|
+
|
217
|
+
/* Close and shutdown*/
|
218
|
+
if (handle) {
|
219
|
+
free_jack_handle( handle );
|
220
|
+
ao->userptr = NULL;
|
221
|
+
}
|
222
|
+
|
223
|
+
return 0;
|
224
|
+
}
|
225
|
+
|
226
|
+
|
227
|
+
static int open_jack(audio_output_t *ao)
|
228
|
+
{
|
229
|
+
char client_name[255];
|
230
|
+
jack_handle_t *handle=NULL;
|
231
|
+
jack_options_t jopt = JackNullOption;
|
232
|
+
jack_status_t jstat = 0;
|
233
|
+
unsigned int i;
|
234
|
+
|
235
|
+
debug("jack open");
|
236
|
+
if(!ao) return -1;
|
237
|
+
|
238
|
+
/* Return if already open*/
|
239
|
+
if (ao->userptr) {
|
240
|
+
error("audio device is already open.");
|
241
|
+
return -1;
|
242
|
+
}
|
243
|
+
|
244
|
+
/* Create some storage for ourselves*/
|
245
|
+
if((handle = alloc_jack_handle()) == NULL) return -1;
|
246
|
+
|
247
|
+
ao->userptr = (void*)handle;
|
248
|
+
|
249
|
+
/* Register with Jack*/
|
250
|
+
snprintf(client_name, 255, "mpg123-%d", getpid());
|
251
|
+
if ((handle->client = jack_client_open(client_name, jopt, &jstat)) == 0) {
|
252
|
+
error1("Failed to open jack client: 0x%x", jstat);
|
253
|
+
close_jack(ao);
|
254
|
+
return -1;
|
255
|
+
}
|
256
|
+
|
257
|
+
/* Display the unique client name allocated to us */
|
258
|
+
fprintf(stderr,"Registered as JACK client %s.\n",
|
259
|
+
jack_get_client_name( handle->client ) );
|
260
|
+
|
261
|
+
/* The initial open lets me choose the settings. */
|
262
|
+
if (ao->format==-1)
|
263
|
+
{
|
264
|
+
ao->format = MPG123_ENC_16;
|
265
|
+
ao->rate = jack_get_sample_rate(handle->client);
|
266
|
+
ao->channels = 2;
|
267
|
+
}
|
268
|
+
|
269
|
+
/* Check the sample rate is correct*/
|
270
|
+
if (jack_get_sample_rate( handle->client ) != (jack_nframes_t)ao->rate) {
|
271
|
+
error("JACK Sample Rate is different to sample rate of file.");
|
272
|
+
close_jack(ao);
|
273
|
+
return -1;
|
274
|
+
}
|
275
|
+
|
276
|
+
/* Register ports with Jack*/
|
277
|
+
handle->channels = ao->channels;
|
278
|
+
if (handle->channels == 1) {
|
279
|
+
if (!(handle->ports[0] = jack_port_register(handle->client, "mono", JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0)))
|
280
|
+
{
|
281
|
+
error("Cannot register JACK output port 'mono'.");
|
282
|
+
close_jack(ao);
|
283
|
+
return -1;
|
284
|
+
}
|
285
|
+
} else if (handle->channels == 2) {
|
286
|
+
if (!(handle->ports[0] = jack_port_register(handle->client, "left", JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0)))
|
287
|
+
{
|
288
|
+
error("Cannot register JACK output port 'left'.");
|
289
|
+
close_jack(ao);
|
290
|
+
return -1;
|
291
|
+
}
|
292
|
+
if (!(handle->ports[1] = jack_port_register(handle->client, "right", JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0)))
|
293
|
+
{
|
294
|
+
error("Cannot register JACK output port 'right'.");
|
295
|
+
close_jack(ao);
|
296
|
+
return -1;
|
297
|
+
}
|
298
|
+
} else {
|
299
|
+
error1("invalid number of output channels (%d).", handle->channels);
|
300
|
+
close_jack(ao);
|
301
|
+
return -1;
|
302
|
+
}
|
303
|
+
|
304
|
+
/* Create the ring buffers (one seconds audio)*/
|
305
|
+
handle->rb_size = jack_get_sample_rate(handle->client) * sizeof(jack_default_audio_sample_t);
|
306
|
+
for(i=0;i<handle->channels;i++){
|
307
|
+
handle->rb[i]=jack_ringbuffer_create(handle->rb_size);
|
308
|
+
}
|
309
|
+
|
310
|
+
/* Set the callbacks*/
|
311
|
+
jack_set_process_callback(handle->client, process_callback, (void*)handle);
|
312
|
+
jack_on_shutdown(handle->client, shutdown_callback, (void*)handle);
|
313
|
+
|
314
|
+
/* Activate client*/
|
315
|
+
if (jack_activate(handle->client)) {
|
316
|
+
error("Can't activate client.");
|
317
|
+
}
|
318
|
+
|
319
|
+
/* Connect up the portsm, return */
|
320
|
+
if(!connect_jack_ports( handle, ao->device ))
|
321
|
+
{
|
322
|
+
/* deregistering of ports will not work but should just fail, then, and let the rest clean up */
|
323
|
+
close_jack(ao);
|
324
|
+
return -1;
|
325
|
+
}
|
326
|
+
|
327
|
+
debug("Jack open successful.\n");
|
328
|
+
return 0;
|
329
|
+
}
|
330
|
+
|
331
|
+
|
332
|
+
/* Jack prefers floats, I actually assume it does _only_ float/double (as it is nowadays)! */
|
333
|
+
static int get_formats_jack(audio_output_t *ao)
|
334
|
+
{
|
335
|
+
if(jack_get_sample_rate( ((jack_handle_t*)(ao->userptr))->client ) != (jack_nframes_t)ao->rate) return 0;
|
336
|
+
else return MPG123_ENC_FLOAT_32|MPG123_ENC_FLOAT_64|MPG123_ENC_SIGNED_16;
|
337
|
+
}
|
338
|
+
|
339
|
+
|
340
|
+
static int write_jack(audio_output_t *ao, unsigned char *buf, int len)
|
341
|
+
{
|
342
|
+
int c,n = 0;
|
343
|
+
jack_handle_t *handle = (jack_handle_t*)ao->userptr;
|
344
|
+
jack_nframes_t samples;
|
345
|
+
size_t tmp_size;
|
346
|
+
/* Only float or double is used.
|
347
|
+
Note: I still need the tmp buffer because of de-interleaving the channels. */
|
348
|
+
samples = len /
|
349
|
+
(ao->format == MPG123_ENC_FLOAT_64 ? 8 : (ao->format == MPG123_ENC_SIGNED_16 ? 2 : 4))
|
350
|
+
/ handle->channels;
|
351
|
+
tmp_size = samples * sizeof( jack_default_audio_sample_t );
|
352
|
+
|
353
|
+
|
354
|
+
/* Sanity check that ring buffer is at least twice the size of the audio we just got*/
|
355
|
+
if (handle->rb_size/2 < len) {
|
356
|
+
error("ring buffer is less than twice the size of audio given.");
|
357
|
+
return -1;
|
358
|
+
}
|
359
|
+
|
360
|
+
|
361
|
+
/* Wait until there is space in the ring buffer*/
|
362
|
+
while (jack_ringbuffer_write_space( handle->rb[0] ) < tmp_size) {
|
363
|
+
/* Sleep for a quarter of the ring buffer size (1/4 second)*/
|
364
|
+
usleep(250000);
|
365
|
+
}
|
366
|
+
|
367
|
+
|
368
|
+
/* Ensure the temporary buffer is big enough*/
|
369
|
+
handle->tmp_buffer = (jack_default_audio_sample_t*)realloc( handle->tmp_buffer, tmp_size);
|
370
|
+
if (!handle->tmp_buffer) {
|
371
|
+
error("failed to realloc temporary buffer.");
|
372
|
+
return -1;
|
373
|
+
}
|
374
|
+
|
375
|
+
|
376
|
+
for(c=0; c<handle->channels; c++) {
|
377
|
+
size_t len = 0;
|
378
|
+
|
379
|
+
/* Hm, is that optimal? Anyhow, deinterleaving float or double ... or short. With/without conversion. */
|
380
|
+
if(ao->format == MPG123_ENC_SIGNED_16)
|
381
|
+
{
|
382
|
+
short* src = (short*)buf;
|
383
|
+
for(n=0; n<samples; n++)
|
384
|
+
handle->tmp_buffer[n] = src[(n*handle->channels)+c] / 32768.0f;
|
385
|
+
}
|
386
|
+
else if(ao->format == MPG123_ENC_FLOAT_32)
|
387
|
+
{
|
388
|
+
float* src = (float*)buf;
|
389
|
+
for(n=0; n<samples; n++)
|
390
|
+
handle->tmp_buffer[n] = src[(n*handle->channels)+c];
|
391
|
+
}
|
392
|
+
else /* MPG123_ENC_FLOAT_64 */
|
393
|
+
{
|
394
|
+
double* src = (double*)buf;
|
395
|
+
for(n=0; n<samples; n++)
|
396
|
+
handle->tmp_buffer[n] = src[(n*handle->channels)+c];
|
397
|
+
}
|
398
|
+
/* Copy temporary buffer into ring buffer*/
|
399
|
+
len = jack_ringbuffer_write(handle->rb[c], (char*)handle->tmp_buffer, tmp_size);
|
400
|
+
if (len < tmp_size)
|
401
|
+
{
|
402
|
+
error("failed to write to ring ruffer.");
|
403
|
+
return -1;
|
404
|
+
}
|
405
|
+
}
|
406
|
+
|
407
|
+
|
408
|
+
return len;
|
409
|
+
}
|
410
|
+
|
411
|
+
static void flush_jack(audio_output_t *ao)
|
412
|
+
{
|
413
|
+
jack_handle_t *handle = (jack_handle_t*)ao->userptr;
|
414
|
+
int c;
|
415
|
+
|
416
|
+
warning("This way, we drop audio on pausing... there must be a better way.");
|
417
|
+
/* Reset the ring buffers*/
|
418
|
+
for(c=0; c<handle->channels; c++) {
|
419
|
+
jack_ringbuffer_reset(handle->rb[c]);
|
420
|
+
}
|
421
|
+
}
|
422
|
+
|
423
|
+
static int init_jack(audio_output_t* ao)
|
424
|
+
{
|
425
|
+
if (ao==NULL) return -1;
|
426
|
+
|
427
|
+
/* Set callbacks */
|
428
|
+
ao->open = open_jack;
|
429
|
+
ao->flush = flush_jack;
|
430
|
+
ao->write = write_jack;
|
431
|
+
ao->get_formats = get_formats_jack;
|
432
|
+
ao->close = close_jack;
|
433
|
+
|
434
|
+
/* Success */
|
435
|
+
return 0;
|
436
|
+
}
|
437
|
+
|
438
|
+
|
439
|
+
/*
|
440
|
+
Module information data structure
|
441
|
+
*/
|
442
|
+
mpg123_module_t mpg123_output_module_info = {
|
443
|
+
/* api_version */ MPG123_MODULE_API_VERSION,
|
444
|
+
/* name */ "jack",
|
445
|
+
/* description */ "Output audio using JACK (JACK Audio Connection Kit).",
|
446
|
+
/* revision */ "$Rev:$",
|
447
|
+
/* handle */ NULL,
|
448
|
+
|
449
|
+
/* init_output */ init_jack,
|
450
|
+
};
|