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,35 @@
|
|
1
|
+
/*
|
2
|
+
testcpu: standalone CPU flags tester
|
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
|
+
#include <stdio.h>
|
10
|
+
#include "getcpuflags.h"
|
11
|
+
|
12
|
+
int main()
|
13
|
+
{
|
14
|
+
int family;
|
15
|
+
struct cpuflags flags;
|
16
|
+
if(!getcpuflags(&flags)){ printf("CPU won't do cpuid (some old i386 or i486)\n"); return 0; }
|
17
|
+
family = (flags.id & 0xf00)>>8;
|
18
|
+
printf("family: %i\n", family);
|
19
|
+
printf("stdcpuflags: 0x%08x\n", flags.std);
|
20
|
+
printf("std2cpuflags: 0x%08x\n", flags.std2);
|
21
|
+
printf("extcpuflags: 0x%08x\n", flags.ext);
|
22
|
+
if(cpu_i586(flags))
|
23
|
+
{
|
24
|
+
printf("A i586 or better cpu with:");
|
25
|
+
if(cpu_mmx(flags)) printf(" mmx");
|
26
|
+
if(cpu_3dnow(flags)) printf(" 3dnow");
|
27
|
+
if(cpu_3dnowext(flags)) printf(" 3dnowext");
|
28
|
+
if(cpu_sse(flags)) printf(" sse");
|
29
|
+
if(cpu_sse2(flags)) printf(" sse2");
|
30
|
+
if(cpu_sse3(flags)) printf(" sse3");
|
31
|
+
printf("\n");
|
32
|
+
}
|
33
|
+
else printf("I guess you have some i486\n");
|
34
|
+
return 0;
|
35
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
/*
|
2
|
+
true: a trivial truth
|
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
|
+
*/
|
7
|
+
|
8
|
+
#ifndef MPG123_H_TRUE
|
9
|
+
#define MPG123_H_TRUE
|
10
|
+
|
11
|
+
#define FALSE 0
|
12
|
+
#define TRUE 1
|
13
|
+
|
14
|
+
#endif
|
data/mpg123/src/local.c
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
/*
|
2
|
+
local: some stuff for localisation
|
3
|
+
|
4
|
+
Currently, this is just about determining if we got UTF-8 locale.
|
5
|
+
|
6
|
+
copyright 2008 by the mpg123 project - free software under the terms of the LGPL 2.1
|
7
|
+
see COPYING and AUTHORS files in distribution or http://mpg123.org
|
8
|
+
initially written by Thomas Orgis, based on a patch by Thorsten Glaser.
|
9
|
+
*/
|
10
|
+
|
11
|
+
#include "config.h"
|
12
|
+
#ifdef HAVE_LOCALE_H
|
13
|
+
#include <locale.h>
|
14
|
+
#endif
|
15
|
+
#ifdef HAVE_LANGINFO_H
|
16
|
+
#include <langinfo.h>
|
17
|
+
#endif
|
18
|
+
#include "compat.h"
|
19
|
+
#include "mpg123app.h"
|
20
|
+
#include "debug.h"
|
21
|
+
|
22
|
+
int utf8env = 0;
|
23
|
+
|
24
|
+
/* Check some language variable for UTF-8-ness. */
|
25
|
+
static int is_utf8(const char *lang);
|
26
|
+
|
27
|
+
void check_locale(void)
|
28
|
+
{
|
29
|
+
if(param.force_utf8) utf8env = 1;
|
30
|
+
else
|
31
|
+
{
|
32
|
+
const char *cp;
|
33
|
+
|
34
|
+
/* Check for env vars in proper oder. */
|
35
|
+
if((cp = getenv("LC_ALL")) == NULL && (cp = getenv("LC_CTYPE")) == NULL)
|
36
|
+
cp = getenv("LANG");
|
37
|
+
|
38
|
+
if(is_utf8(cp)) utf8env = 1;
|
39
|
+
}
|
40
|
+
|
41
|
+
#if defined(HAVE_SETLOCALE) && defined(LC_CTYPE)
|
42
|
+
/* To query, we need to set from environment... */
|
43
|
+
if(!utf8env && is_utf8(setlocale(LC_CTYPE, ""))) utf8env = 1;
|
44
|
+
#endif
|
45
|
+
#if defined(HAVE_NL_LANGINFO) && defined(CODESET)
|
46
|
+
/* ...langinfo works after we set a locale, eh? So it makes sense after setlocale, if only. */
|
47
|
+
if(!utf8env && is_utf8(nl_langinfo(CODESET))) utf8env = 1;
|
48
|
+
#endif
|
49
|
+
|
50
|
+
debug1("UTF-8 locale: %i", utf8env);
|
51
|
+
}
|
52
|
+
|
53
|
+
static int is_utf8(const char *lang)
|
54
|
+
{
|
55
|
+
if(lang == NULL) return 0;
|
56
|
+
|
57
|
+
/* Now, if the variable mentions UTF-8 anywhere, in some variation, the locale is UTF-8. */
|
58
|
+
if( strstr(lang, "UTF-8") || strstr(lang, "utf-8")
|
59
|
+
|| strstr(lang, "UTF8") || strstr(lang, "utf8") )
|
60
|
+
return 1;
|
61
|
+
else
|
62
|
+
return 0;
|
63
|
+
}
|
data/mpg123/src/local.h
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
#ifndef H_LOCAL
|
2
|
+
#define H_LOCAL
|
3
|
+
/*
|
4
|
+
local: some stuff for localisation
|
5
|
+
|
6
|
+
Currently, this is just about determining if we got UTF-8 locale.
|
7
|
+
|
8
|
+
copyright 2008 by the mpg123 project - free software under the terms of the LGPL 2.1
|
9
|
+
see COPYING and AUTHORS files in distribution or http://mpg123.org
|
10
|
+
initially written by Thomas Orgis, based on a patch by Thorsten Glaser.
|
11
|
+
*/
|
12
|
+
|
13
|
+
/* Pulled in by mpg123app.h! */
|
14
|
+
|
15
|
+
/* This is 1 if check_locale found UTF-8, 0 if not. */
|
16
|
+
extern int utf8env;
|
17
|
+
|
18
|
+
/* Check/set locale, set the utf8env variable. */
|
19
|
+
void check_locale(void);
|
20
|
+
|
21
|
+
#endif
|
@@ -0,0 +1,373 @@
|
|
1
|
+
/*
|
2
|
+
id3print: display routines for ID3 tags (including filtering of UTF8 to ASCII)
|
3
|
+
|
4
|
+
copyright 2006-2010 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
|
+
#include "mpg123app.h"
|
10
|
+
#include "genre.h"
|
11
|
+
#include "debug.h"
|
12
|
+
|
13
|
+
const char joker_symbol = '*';
|
14
|
+
|
15
|
+
static void utf8_ascii(mpg123_string *dest, mpg123_string *source);
|
16
|
+
/* Copy UTF-8 string or melt it down to ASCII, also returning the character length. */
|
17
|
+
static size_t transform(mpg123_string *dest, mpg123_string *source)
|
18
|
+
{
|
19
|
+
debug("transform!");
|
20
|
+
if(source == NULL) return 0;
|
21
|
+
|
22
|
+
if(utf8env) mpg123_copy_string(source, dest);
|
23
|
+
else utf8_ascii(dest, source);
|
24
|
+
|
25
|
+
return mpg123_strlen(dest, utf8env);
|
26
|
+
}
|
27
|
+
|
28
|
+
static void id3_gap(mpg123_string *dest, size_t count, char *v1, size_t *len)
|
29
|
+
{
|
30
|
+
if(!dest->fill)
|
31
|
+
{
|
32
|
+
if(dest->size >= count+1 || mpg123_resize_string(dest, count+1))
|
33
|
+
{
|
34
|
+
strncpy(dest->p,v1,count);
|
35
|
+
dest->p[count] = 0;
|
36
|
+
*len = strlen(dest->p);
|
37
|
+
dest->fill = *len + 1;
|
38
|
+
/* We have no idea what encoding this is.
|
39
|
+
So, to prevent mess up of our UTF-8 display, filter anything above ASCII.
|
40
|
+
But in non-UTF-8 mode, we pray that the verbatim contents are meaningful to the user. Might filter non-printable characters, though. */
|
41
|
+
if(utf8env)
|
42
|
+
{
|
43
|
+
size_t i;
|
44
|
+
for(i=0; i<dest->fill-1; ++i)
|
45
|
+
if(dest->p[i] & 0x80) dest->p[i] = joker_symbol;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
/* print tags... limiting the UTF-8 to ASCII */
|
52
|
+
void print_id3_tag(mpg123_handle *mh, int long_id3, FILE *out)
|
53
|
+
{
|
54
|
+
char genre_from_v1 = 0;
|
55
|
+
enum { TITLE=0, ARTIST, ALBUM, COMMENT, YEAR, GENRE, FIELDS } ti;
|
56
|
+
mpg123_string tag[FIELDS];
|
57
|
+
size_t len[FIELDS];
|
58
|
+
mpg123_id3v1 *v1;
|
59
|
+
mpg123_id3v2 *v2;
|
60
|
+
/* no memory allocated here, so return is safe */
|
61
|
+
for(ti=0; ti<FIELDS; ++ti) mpg123_init_string(&tag[ti]);
|
62
|
+
/* extract the data */
|
63
|
+
mpg123_id3(mh, &v1, &v2);
|
64
|
+
/* Only work if something there... */
|
65
|
+
if(v1 == NULL && v2 == NULL) return;
|
66
|
+
if(v2 != NULL) /* fill from ID3v2 data */
|
67
|
+
{
|
68
|
+
len[TITLE] = transform(&tag[TITLE], v2->title);
|
69
|
+
len[ARTIST] = transform(&tag[ARTIST], v2->artist);
|
70
|
+
len[ALBUM] = transform(&tag[ALBUM], v2->album);
|
71
|
+
len[COMMENT] = transform(&tag[COMMENT], v2->comment);
|
72
|
+
len[YEAR] = transform(&tag[YEAR], v2->year);
|
73
|
+
len[GENRE] = transform(&tag[GENRE], v2->genre);
|
74
|
+
}
|
75
|
+
if(v1 != NULL) /* fill gaps with ID3v1 data */
|
76
|
+
{
|
77
|
+
/* I _could_ skip the recalculation of fill ... */
|
78
|
+
id3_gap(&tag[TITLE], 30, v1->title, &len[TITLE]);
|
79
|
+
id3_gap(&tag[ARTIST], 30, v1->artist, &len[ARTIST]);
|
80
|
+
id3_gap(&tag[ALBUM], 30, v1->album, &len[ALBUM]);
|
81
|
+
id3_gap(&tag[COMMENT], 30, v1->comment, &len[COMMENT]);
|
82
|
+
id3_gap(&tag[YEAR], 4, v1->year, &len[YEAR]);
|
83
|
+
/*
|
84
|
+
genre is special... v1->genre holds an index, id3v2 genre may contain indices in textual form and raw textual genres...
|
85
|
+
*/
|
86
|
+
if(!tag[GENRE].fill)
|
87
|
+
{
|
88
|
+
if(tag[GENRE].size >= 31 || mpg123_resize_string(&tag[GENRE],31))
|
89
|
+
{
|
90
|
+
if(v1->genre <= genre_count)
|
91
|
+
{
|
92
|
+
strncpy(tag[GENRE].p, genre_table[v1->genre], 30);
|
93
|
+
}
|
94
|
+
else
|
95
|
+
{
|
96
|
+
strncpy(tag[GENRE].p,"Unknown",30);
|
97
|
+
}
|
98
|
+
tag[GENRE].p[30] = 0;
|
99
|
+
tag[GENRE].fill = strlen(tag[GENRE].p) + 1;
|
100
|
+
genre_from_v1 = 1;
|
101
|
+
}
|
102
|
+
}
|
103
|
+
}
|
104
|
+
|
105
|
+
if(tag[GENRE].fill && !genre_from_v1)
|
106
|
+
{
|
107
|
+
/*
|
108
|
+
id3v2.3 says (id)(id)blabla and in case you want ot have (blabla) write ((blabla)
|
109
|
+
also, there is
|
110
|
+
(RX) Remix
|
111
|
+
(CR) Cover
|
112
|
+
id3v2.4 says
|
113
|
+
"one or several of the ID3v1 types as numerical strings"
|
114
|
+
or define your own (write strings), RX and CR
|
115
|
+
|
116
|
+
Now I am very sure that I'll encounter hellishly mixed up id3v2 frames, so try to parse both at once.
|
117
|
+
*/
|
118
|
+
mpg123_string tmp;
|
119
|
+
mpg123_init_string(&tmp);
|
120
|
+
debug1("interpreting genre: %s\n", tag[GENRE].p);
|
121
|
+
if(mpg123_copy_string(&tag[GENRE], &tmp))
|
122
|
+
{
|
123
|
+
size_t num = 0;
|
124
|
+
size_t nonum = 0;
|
125
|
+
size_t i;
|
126
|
+
enum { nothing, number, outtahere } state = nothing;
|
127
|
+
tag[GENRE].fill = 0; /* going to be refilled */
|
128
|
+
/* number\n -> id3v1 genre */
|
129
|
+
/* (number) -> id3v1 genre */
|
130
|
+
/* (( -> ( */
|
131
|
+
for(i = 0; i < tmp.fill; ++i)
|
132
|
+
{
|
133
|
+
debug1("i=%lu", (unsigned long) i);
|
134
|
+
switch(state)
|
135
|
+
{
|
136
|
+
case nothing:
|
137
|
+
nonum = i;
|
138
|
+
if(tmp.p[i] == '(')
|
139
|
+
{
|
140
|
+
num = i+1; /* number starting as next? */
|
141
|
+
state = number;
|
142
|
+
debug1("( before number at %lu?", (unsigned long) num);
|
143
|
+
}
|
144
|
+
/* you know an encoding where this doesn't work? */
|
145
|
+
else if(tmp.p[i] >= '0' && tmp.p[i] <= '9')
|
146
|
+
{
|
147
|
+
num = i;
|
148
|
+
state = number;
|
149
|
+
debug1("direct number at %lu", (unsigned long) num);
|
150
|
+
}
|
151
|
+
else state = outtahere;
|
152
|
+
break;
|
153
|
+
case number:
|
154
|
+
/* fake number alert: (( -> ( */
|
155
|
+
if(tmp.p[i] == '(')
|
156
|
+
{
|
157
|
+
nonum = i;
|
158
|
+
state = outtahere;
|
159
|
+
debug("no, it was ((");
|
160
|
+
}
|
161
|
+
else if(tmp.p[i] == ')' || tmp.p[i] == '\n' || tmp.p[i] == 0)
|
162
|
+
{
|
163
|
+
if(i-num > 0)
|
164
|
+
{
|
165
|
+
/* we really have a number */
|
166
|
+
int gid;
|
167
|
+
char* genre = "Unknown";
|
168
|
+
tmp.p[i] = 0;
|
169
|
+
gid = atoi(tmp.p+num);
|
170
|
+
|
171
|
+
/* get that genre */
|
172
|
+
if(gid >= 0 && gid <= genre_count) genre = genre_table[gid];
|
173
|
+
debug1("found genre: %s", genre);
|
174
|
+
|
175
|
+
if(tag[GENRE].fill) mpg123_add_string(&tag[GENRE], ", ");
|
176
|
+
mpg123_add_string(&tag[GENRE], genre);
|
177
|
+
nonum = i+1; /* next possible stuff */
|
178
|
+
state = nothing;
|
179
|
+
debug1("had a number: %i", gid);
|
180
|
+
}
|
181
|
+
else
|
182
|
+
{
|
183
|
+
/* wasn't a number, nonum is set */
|
184
|
+
state = outtahere;
|
185
|
+
debug("no (num) thing...");
|
186
|
+
}
|
187
|
+
}
|
188
|
+
else if(!(tmp.p[i] >= '0' && tmp.p[i] <= '9'))
|
189
|
+
{
|
190
|
+
/* no number at last... */
|
191
|
+
state = outtahere;
|
192
|
+
debug("nothing numeric here");
|
193
|
+
}
|
194
|
+
else
|
195
|
+
{
|
196
|
+
debug("still number...");
|
197
|
+
}
|
198
|
+
break;
|
199
|
+
default: break;
|
200
|
+
}
|
201
|
+
if(state == outtahere) break;
|
202
|
+
}
|
203
|
+
if(nonum < tmp.fill-1)
|
204
|
+
{
|
205
|
+
if(tag[GENRE].fill) mpg123_add_string(&tag[GENRE], ", ");
|
206
|
+
mpg123_add_string(&tag[GENRE], tmp.p+nonum);
|
207
|
+
}
|
208
|
+
/* Do not like that ... assumes plain ASCII ... */
|
209
|
+
len[GENRE] = strlen(tag[GENRE].p);
|
210
|
+
}
|
211
|
+
mpg123_free_string(&tmp);
|
212
|
+
}
|
213
|
+
|
214
|
+
if(long_id3)
|
215
|
+
{
|
216
|
+
fprintf(out,"\n");
|
217
|
+
/* print id3v2 */
|
218
|
+
/* dammed, I use pointers as bool again! It's so convenient... */
|
219
|
+
fprintf(out,"\tTitle: %s\n", tag[TITLE].fill ? tag[TITLE].p : "");
|
220
|
+
fprintf(out,"\tArtist: %s\n", tag[ARTIST].fill ? tag[ARTIST].p : "");
|
221
|
+
fprintf(out,"\tAlbum: %s\n", tag[ALBUM].fill ? tag[ALBUM].p : "");
|
222
|
+
fprintf(out,"\tYear: %s\n", tag[YEAR].fill ? tag[YEAR].p : "");
|
223
|
+
fprintf(out,"\tGenre: %s\n", tag[GENRE].fill ? tag[GENRE].p : "");
|
224
|
+
fprintf(out,"\tComment: %s\n", tag[COMMENT].fill ? tag[COMMENT].p : "");
|
225
|
+
fprintf(out,"\n");
|
226
|
+
}
|
227
|
+
else
|
228
|
+
{
|
229
|
+
char space[31];
|
230
|
+
size_t i;
|
231
|
+
space[30] = 0;
|
232
|
+
for(i=0; i<30; ++i) space[i] = ' ';
|
233
|
+
|
234
|
+
/* We are trying to be smart here and conserve vertical space.
|
235
|
+
So we will skip tags not set, and try to show them in two parallel columns if they are short, which is by far the most common case. */
|
236
|
+
/* one _could_ circumvent the strlen calls... */
|
237
|
+
if(tag[TITLE].fill && tag[ARTIST].fill && len[TITLE] <= 30 && len[TITLE] <= 30)
|
238
|
+
{
|
239
|
+
fprintf(out,"Title: %s%s Artist: %s\n",tag[TITLE].p, space+len[TITLE], tag[ARTIST].p);
|
240
|
+
}
|
241
|
+
else
|
242
|
+
{
|
243
|
+
if(tag[TITLE].fill) fprintf(out,"Title: %s\n", tag[TITLE].p);
|
244
|
+
if(tag[ARTIST].fill) fprintf(out,"Artist: %s\n", tag[ARTIST].p);
|
245
|
+
}
|
246
|
+
if(tag[COMMENT].fill && tag[ALBUM].fill && len[COMMENT] <= 30 && len[ALBUM] <= 30)
|
247
|
+
{
|
248
|
+
fprintf(out,"Comment: %s%s Album: %s\n",tag[COMMENT].p, space+len[COMMENT], tag[ALBUM].p);
|
249
|
+
}
|
250
|
+
else
|
251
|
+
{
|
252
|
+
if(tag[COMMENT].fill)
|
253
|
+
fprintf(out,"Comment: %s\n", tag[COMMENT].p);
|
254
|
+
if(tag[ALBUM].fill)
|
255
|
+
fprintf(out,"Album: %s\n", tag[ALBUM].p);
|
256
|
+
}
|
257
|
+
if(tag[YEAR].fill && tag[GENRE].fill && len[YEAR] <= 30 && len[GENRE] <= 30)
|
258
|
+
{
|
259
|
+
fprintf(out,"Year: %s%s Genre: %s\n",tag[YEAR].p, space+len[YEAR], tag[GENRE].p);
|
260
|
+
}
|
261
|
+
else
|
262
|
+
{
|
263
|
+
if(tag[YEAR].fill)
|
264
|
+
fprintf(out,"Year: %s\n", tag[YEAR].p);
|
265
|
+
if(tag[GENRE].fill)
|
266
|
+
fprintf(out,"Genre: %s\n", tag[GENRE].p);
|
267
|
+
}
|
268
|
+
}
|
269
|
+
for(ti=0; ti<FIELDS; ++ti) mpg123_free_string(&tag[ti]);
|
270
|
+
|
271
|
+
if(v2 != NULL && APPFLAG(MPG123APP_LYRICS))
|
272
|
+
{
|
273
|
+
/* find and print texts that have USLT IDs */
|
274
|
+
size_t i;
|
275
|
+
for(i=0; i<v2->texts; ++i)
|
276
|
+
{
|
277
|
+
if(!memcmp(v2->text[i].id, "USLT", 4))
|
278
|
+
{
|
279
|
+
/* split into lines, ensure usage of proper local line end */
|
280
|
+
size_t a=0;
|
281
|
+
size_t b=0;
|
282
|
+
char lang[4]; /* just a 3-letter ASCII code, no fancy encoding */
|
283
|
+
mpg123_string innline;
|
284
|
+
mpg123_string outline;
|
285
|
+
mpg123_string *uslt = &v2->text[i].text;
|
286
|
+
|
287
|
+
memcpy(lang, &v2->text[i].lang, 3);
|
288
|
+
lang[3] = 0;
|
289
|
+
printf("Lyrics begin, language: %s; %s\n\n", lang, v2->text[i].description.fill ? v2->text[i].description.p : "");
|
290
|
+
|
291
|
+
mpg123_init_string(&innline);
|
292
|
+
mpg123_init_string(&outline);
|
293
|
+
while(a < uslt->fill)
|
294
|
+
{
|
295
|
+
b = a;
|
296
|
+
while(b < uslt->fill && uslt->p[b] != '\n' && uslt->p[b] != '\r') ++b;
|
297
|
+
/* Either found end of a line or end of the string (null byte) */
|
298
|
+
mpg123_set_substring(&innline, uslt->p, a, b-a);
|
299
|
+
transform(&outline, &innline);
|
300
|
+
printf(" %s\n", outline.p);
|
301
|
+
|
302
|
+
if(uslt->p[b] == uslt->fill) break; /* nothing more */
|
303
|
+
|
304
|
+
/* Swallow CRLF */
|
305
|
+
if(uslt->fill-b > 1 && uslt->p[b] == '\r' && uslt->p[b+1] == '\n') ++b;
|
306
|
+
|
307
|
+
a = b + 1; /* next line beginning */
|
308
|
+
}
|
309
|
+
mpg123_free_string(&innline);
|
310
|
+
mpg123_free_string(&outline);
|
311
|
+
|
312
|
+
printf("\nLyrics end.\n");
|
313
|
+
}
|
314
|
+
}
|
315
|
+
}
|
316
|
+
}
|
317
|
+
|
318
|
+
void print_icy(mpg123_handle *mh, FILE *outstream)
|
319
|
+
{
|
320
|
+
char* icy;
|
321
|
+
if(MPG123_OK == mpg123_icy(mh, &icy))
|
322
|
+
{
|
323
|
+
mpg123_string in;
|
324
|
+
mpg123_init_string(&in);
|
325
|
+
if(mpg123_store_utf8(&in, mpg123_text_icy, (unsigned char*)icy, strlen(icy)+1))
|
326
|
+
{
|
327
|
+
mpg123_string out;
|
328
|
+
mpg123_init_string(&out);
|
329
|
+
|
330
|
+
transform(&out, &in);
|
331
|
+
if(out.fill)
|
332
|
+
fprintf(outstream, "\nICY-META: %s\n", out.p);
|
333
|
+
|
334
|
+
mpg123_free_string(&out);
|
335
|
+
}
|
336
|
+
mpg123_free_string(&in);
|
337
|
+
}
|
338
|
+
}
|
339
|
+
|
340
|
+
static void utf8_ascii(mpg123_string *dest, mpg123_string *source)
|
341
|
+
{
|
342
|
+
size_t spos = 0;
|
343
|
+
size_t dlen = 0;
|
344
|
+
char *p;
|
345
|
+
|
346
|
+
/* Find length of ASCII string (count non-continuation bytes).
|
347
|
+
Do _not_ change this to mpg123_strlen()!
|
348
|
+
It needs to match the loop below. Especially dlen should not stop at embedded null bytes. You can get any trash from ID3! */
|
349
|
+
for(spos=0; spos < source->fill; ++spos)
|
350
|
+
if((source->p[spos] & 0xc0) == 0x80) continue;
|
351
|
+
else ++dlen;
|
352
|
+
|
353
|
+
/* The trailing zero is included in dlen; if there is none, one character will be cut. Bad input -> bad output. */
|
354
|
+
if(!mpg123_resize_string(dest, dlen)){ mpg123_free_string(dest); return; }
|
355
|
+
/* Just ASCII, we take it easy. */
|
356
|
+
p = dest->p;
|
357
|
+
|
358
|
+
for(spos=0; spos < source->fill; ++spos)
|
359
|
+
{
|
360
|
+
/* UTF-8 continuation byte 0x10?????? */
|
361
|
+
if((source->p[spos] & 0xc0) == 0x80) continue;
|
362
|
+
/* UTF-8 lead byte 0x11?????? */
|
363
|
+
else if(source->p[spos] & 0x80) *p = joker_symbol;
|
364
|
+
/* just ASCII, 0x0??????? */
|
365
|
+
else *p = source->p[spos];
|
366
|
+
|
367
|
+
++p; /* next output char */
|
368
|
+
}
|
369
|
+
/* Always close the string, trailing zero might be missing. */
|
370
|
+
if(dest->size) dest->p[dest->size-1] = 0;
|
371
|
+
|
372
|
+
dest->fill = dest->size;
|
373
|
+
}
|