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,197 @@
|
|
1
|
+
#include "TargetConditionals.h"
|
2
|
+
|
3
|
+
#if TARGET_IPHONE_SIMULATOR
|
4
|
+
#define DEFAULT_OUTPUT_MODULE "dummy"
|
5
|
+
/* #undef HAVE_AUDIOTOOLBOX_AUDIOTOOLBOX_H */
|
6
|
+
/* #undef HAVE_AUDIOUNIT_AUDIOUNIT_H */
|
7
|
+
/* #undef HAVE_CORESERVICES_CORESERVICES_H */
|
8
|
+
/* #undef HAVE_OPENAL_ALC_H */
|
9
|
+
/* #undef HAVE_OPENAL_AL_H */
|
10
|
+
#define ABI_ALIGN_FUN 1
|
11
|
+
#define HAVE_GAI_ADDRCONFIG 1
|
12
|
+
#define LFS_ALIAS_BITS 32
|
13
|
+
/* #undef HAVE_LIBMX */
|
14
|
+
#define HAVE_MMAP 1
|
15
|
+
#define IEEE_FLOAT 1
|
16
|
+
#define SIZEOF_INT32_T 4
|
17
|
+
#define SIZEOF_LONG 4
|
18
|
+
#define SIZEOF_OFF_T 8
|
19
|
+
#define SIZEOF_SIZE_T 4
|
20
|
+
#define SIZEOF_SSIZE_T 4
|
21
|
+
#define OPT_GENERIC
|
22
|
+
#elif TARGET_OS_IPHONE
|
23
|
+
#define DEFAULT_OUTPUT_MODULE "dummy"
|
24
|
+
/* #undef HAVE_AUDIOTOOLBOX_AUDIOTOOLBOX_H */
|
25
|
+
/* #undef HAVE_AUDIOUNIT_AUDIOUNIT_H */
|
26
|
+
/* #undef HAVE_CORESERVICES_CORESERVICES_H */
|
27
|
+
/* #undef HAVE_OPENAL_ALC_H */
|
28
|
+
/* #undef HAVE_OPENAL_AL_H */
|
29
|
+
/* #undef ABI_ALIGN_FUN */
|
30
|
+
/* #undef HAVE_GAI_ADDRCONFIG */
|
31
|
+
#define LFS_ALIAS_BITS 32
|
32
|
+
/* #undef HAVE_LIBMX */
|
33
|
+
/* #undef HAVE_MMAP */
|
34
|
+
/* #undef IEEE_FLOAT */
|
35
|
+
#define SIZEOF_INT32_T 4
|
36
|
+
#define SIZEOF_LONG 4
|
37
|
+
#define SIZEOF_OFF_T 8
|
38
|
+
#define SIZEOF_SIZE_T 4
|
39
|
+
#define SIZEOF_SSIZE_T 4
|
40
|
+
#define OPT_NEON
|
41
|
+
#elif TARGET_OS_MAC
|
42
|
+
#define DEFAULT_OUTPUT_MODULE "coreaudio"
|
43
|
+
#define HAVE_AUDIOTOOLBOX_AUDIOTOOLBOX_H 1
|
44
|
+
#define HAVE_AUDIOUNIT_AUDIOUNIT_H 1
|
45
|
+
#define HAVE_CORESERVICES_CORESERVICES_H 1
|
46
|
+
#define HAVE_OPENAL_ALC_H 1
|
47
|
+
#define HAVE_OPENAL_AL_H 1
|
48
|
+
/* #undef ABI_ALIGN_FUN */
|
49
|
+
#define HAVE_GAI_ADDRCONFIG 1
|
50
|
+
#define LFS_ALIAS_BITS 64
|
51
|
+
#define HAVE_LIBMX 1
|
52
|
+
#define HAVE_MMAP 1
|
53
|
+
#define IEEE_FLOAT 1
|
54
|
+
#define SIZEOF_INT32_T 4
|
55
|
+
#define SIZEOF_LONG 8
|
56
|
+
#define SIZEOF_OFF_T 8
|
57
|
+
#define SIZEOF_SIZE_T 8
|
58
|
+
#define SIZEOF_SIZE_T 8
|
59
|
+
#define SIZEOF_SSIZE_T 8
|
60
|
+
#define OPT_GENERIC
|
61
|
+
#else
|
62
|
+
#error "Unknown target."
|
63
|
+
#endif
|
64
|
+
|
65
|
+
/* #undef ACCURATE_ROUNDING */
|
66
|
+
/* #undef AC_APPLE_UNIVERSAL_BUILD */
|
67
|
+
#define ASMALIGN_EXP 1
|
68
|
+
#define CCALIGN 1
|
69
|
+
/* #undef DEBUG */
|
70
|
+
/* #undef DYNAMIC_BUILD */
|
71
|
+
#define FIFO 1
|
72
|
+
#define FRAME_INDEX 1
|
73
|
+
#define GAPLESS 1
|
74
|
+
/* #undef HAVE_ALC_H */
|
75
|
+
/* #undef HAVE_ALIB_H */
|
76
|
+
/* #undef HAVE_AL_ALC_H */
|
77
|
+
/* #undef HAVE_AL_AL_H */
|
78
|
+
/* #undef HAVE_AL_H */
|
79
|
+
#define HAVE_ARPA_INET_H 1
|
80
|
+
/* #undef HAVE_ASM_AUDIOIO_H */
|
81
|
+
#define HAVE_ATOLL 1
|
82
|
+
/* #undef HAVE_AUDIOS_H */
|
83
|
+
/* #undef HAVE_CULIB_H */
|
84
|
+
#define HAVE_DLFCN_H 1
|
85
|
+
#define HAVE_GETADDRINFO 1
|
86
|
+
#define HAVE_GETPAGESIZE 1
|
87
|
+
#define HAVE_GETUID 1
|
88
|
+
#define HAVE_INTTYPES_H 1
|
89
|
+
#define HAVE_LANGINFO_H 1
|
90
|
+
#define HAVE_LIBM 1
|
91
|
+
#define HAVE_LIMITS_H 1
|
92
|
+
/* #undef HAVE_LINUX_SOUNDCARD_H */
|
93
|
+
#define HAVE_LOCALE_H 1
|
94
|
+
/* #undef HAVE_LTDL */
|
95
|
+
/* #undef HAVE_MACHINE_SOUNDCARD_H */
|
96
|
+
#define HAVE_MEMORY_H 1
|
97
|
+
#define HAVE_MKFIFO 1
|
98
|
+
#define HAVE_NETDB_H 1
|
99
|
+
#define HAVE_NETINET_IN_H 1
|
100
|
+
/* #undef HAVE_NETINET_TCP_H */
|
101
|
+
#define HAVE_NL_LANGINFO 1
|
102
|
+
/* #undef HAVE_OS2ME_H */
|
103
|
+
/* #undef HAVE_OS2_H */
|
104
|
+
#define HAVE_RANDOM 1
|
105
|
+
#define HAVE_SCHED_H 1
|
106
|
+
/* #undef HAVE_SCHED_SETSCHEDULER */
|
107
|
+
#define HAVE_SETLOCALE 1
|
108
|
+
#define HAVE_SETPRIORITY 1
|
109
|
+
#define HAVE_SETUID 1
|
110
|
+
#define HAVE_SIGNAL_H 1
|
111
|
+
/* #undef HAVE_SNDIO_H */
|
112
|
+
#define HAVE_STDINT_H 1
|
113
|
+
#define HAVE_STDIO_H 1
|
114
|
+
#define HAVE_STDLIB_H 1
|
115
|
+
#define HAVE_STRDUP 1
|
116
|
+
#define HAVE_STRERROR 1
|
117
|
+
#define HAVE_STRINGS_H 1
|
118
|
+
#define HAVE_STRING_H 1
|
119
|
+
/* #undef HAVE_SUN_AUDIOIO_H */
|
120
|
+
/* #undef HAVE_SYS_AUDIOIO_H */
|
121
|
+
/* #undef HAVE_SYS_AUDIO_H */
|
122
|
+
#define HAVE_SYS_IOCTL_H 1
|
123
|
+
#define HAVE_SYS_PARAM_H 1
|
124
|
+
#define HAVE_SYS_RESOURCE_H 1
|
125
|
+
#define HAVE_SYS_SIGNAL_H 1
|
126
|
+
#define HAVE_SYS_SOCKET_H 1
|
127
|
+
/* #undef HAVE_SYS_SOUNDCARD_H */
|
128
|
+
#define HAVE_SYS_STAT_H 1
|
129
|
+
#define HAVE_SYS_TIME_H 1
|
130
|
+
#define HAVE_SYS_TYPES_H 1
|
131
|
+
#define HAVE_SYS_WAIT_H 1
|
132
|
+
#define HAVE_TERMIOS 1
|
133
|
+
#define HAVE_UNISTD_H 1
|
134
|
+
/* #undef HAVE_WINDOWS_H */
|
135
|
+
/* #undef HAVE_WS2TCPIP_H */
|
136
|
+
#define INDEX_SIZE 1000
|
137
|
+
#define IPV6 1
|
138
|
+
#define LT_OBJDIR ".libs/"
|
139
|
+
#define MODULE_FILE_SUFFIX ".la"
|
140
|
+
#define NETWORK 1
|
141
|
+
/* #undef NO_16BIT */
|
142
|
+
/* #undef NO_32BIT */
|
143
|
+
/* #undef NO_8BIT */
|
144
|
+
/* #undef NO_DOWNSAMPLE */
|
145
|
+
/* #undef NO_ERETURN */
|
146
|
+
/* #undef NO_ERRORMSG */
|
147
|
+
/* #undef NO_FEEDER */
|
148
|
+
/* #undef NO_ICY */
|
149
|
+
/* #undef NO_ID3V2 */
|
150
|
+
/* #undef NO_LAYER1 */
|
151
|
+
/* #undef NO_LAYER2 */
|
152
|
+
/* #undef NO_LAYER3 */
|
153
|
+
/* #undef NO_NTOM */
|
154
|
+
/* #undef NO_REAL */
|
155
|
+
/* #undef NO_STRING */
|
156
|
+
/* #undef NO_WARNING */
|
157
|
+
#define PACKAGE "mpg123"
|
158
|
+
#define PACKAGE_BUGREPORT "mpg123-devel@lists.sourceforge.net"
|
159
|
+
#define PACKAGE_NAME "mpg123"
|
160
|
+
#define PACKAGE_STRING "mpg123 1.14.0"
|
161
|
+
#define PACKAGE_TARNAME "mpg123"
|
162
|
+
#define PACKAGE_URL ""
|
163
|
+
#define PACKAGE_VERSION "1.14.0"
|
164
|
+
/* #undef PORTAUDIO18 */
|
165
|
+
#define STDC_HEADERS 1
|
166
|
+
/* #undef USE_MODULES */
|
167
|
+
#define VERSION "1.14.0"
|
168
|
+
/* #undef WANT_WIN32_FIFO */
|
169
|
+
/* #undef WANT_WIN32_SOCKETS */
|
170
|
+
/* #undef WANT_WIN32_UNICODE */
|
171
|
+
/* #undef WINVER */
|
172
|
+
#if defined AC_APPLE_UNIVERSAL_BUILD
|
173
|
+
# if defined __BIG_ENDIAN__
|
174
|
+
# define WORDS_BIGENDIAN 1
|
175
|
+
# endif
|
176
|
+
#else
|
177
|
+
# ifndef WORDS_BIGENDIAN
|
178
|
+
/* # undef WORDS_BIGENDIAN */
|
179
|
+
# endif
|
180
|
+
#endif
|
181
|
+
/* #undef _FILE_OFFSET_BITS */
|
182
|
+
/* #undef _LARGE_FILES */
|
183
|
+
/* #undef _WIN32_WINNT */
|
184
|
+
/* #undef const */
|
185
|
+
#ifndef __cplusplus
|
186
|
+
/* #undef inline */
|
187
|
+
#endif
|
188
|
+
/* #undef int16_t */
|
189
|
+
/* #undef int32_t */
|
190
|
+
/* #undef off_t */
|
191
|
+
/* #undef size_t */
|
192
|
+
/* #undef ssize_t */
|
193
|
+
/* #undef uint16_t */
|
194
|
+
/* #undef uint32_t */
|
195
|
+
/* #undef uintptr_t */
|
196
|
+
|
197
|
+
#define REAL_IS_FLOAT
|
@@ -0,0 +1,17 @@
|
|
1
|
+
/*
|
2
|
+
mpg123.h: MPEG Audio Decoder library wrapper header for Xcode
|
3
|
+
|
4
|
+
copyright 2012 by the mpg123 project - free software under the terms of the LGPL 2.1
|
5
|
+
initially written by Patrick Dehne.
|
6
|
+
*/
|
7
|
+
|
8
|
+
#ifndef MPG123_XCODE_H
|
9
|
+
#define MPG123_XCODE_H
|
10
|
+
|
11
|
+
#include <stdlib.h>
|
12
|
+
#include <sys/types.h>
|
13
|
+
|
14
|
+
#define MPG123_NO_CONFIGURE
|
15
|
+
#include "../../src/libmpg123/mpg123.h.in" /* Yes, .h.in; we include the configure template! */
|
16
|
+
|
17
|
+
#endif
|
@@ -0,0 +1,670 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
CD132C23152A4B8000B4F5A8 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C21152A4B8000B4F5A8 /* config.h */; };
|
11
|
+
CD132C24152A4B8000B4F5A8 /* mpg123.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C22152A4B8000B4F5A8 /* mpg123.h */; };
|
12
|
+
CD132C7E152A4D7E00B4F5A8 /* compat.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C62152A4D7E00B4F5A8 /* compat.h */; };
|
13
|
+
CD132C7F152A4D7E00B4F5A8 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C63152A4D7E00B4F5A8 /* decode.h */; };
|
14
|
+
CD132C80152A4D7E00B4F5A8 /* dither.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C64152A4D7E00B4F5A8 /* dither.h */; };
|
15
|
+
CD132C81152A4D7E00B4F5A8 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C65152A4D7E00B4F5A8 /* frame.h */; };
|
16
|
+
CD132C82152A4D7E00B4F5A8 /* getbits.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C66152A4D7E00B4F5A8 /* getbits.h */; };
|
17
|
+
CD132C83152A4D7E00B4F5A8 /* getcpuflags.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C67152A4D7E00B4F5A8 /* getcpuflags.h */; };
|
18
|
+
CD132C84152A4D7E00B4F5A8 /* huffman.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C68152A4D7E00B4F5A8 /* huffman.h */; };
|
19
|
+
CD132C85152A4D7E00B4F5A8 /* icy.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C69152A4D7E00B4F5A8 /* icy.h */; };
|
20
|
+
CD132C86152A4D7E00B4F5A8 /* icy2utf8.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C6A152A4D7E00B4F5A8 /* icy2utf8.h */; };
|
21
|
+
CD132C87152A4D7E00B4F5A8 /* id3.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C6B152A4D7E00B4F5A8 /* id3.h */; };
|
22
|
+
CD132C88152A4D7E00B4F5A8 /* index.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C6C152A4D7E00B4F5A8 /* index.h */; };
|
23
|
+
CD132C89152A4D7E00B4F5A8 /* intsym.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C6D152A4D7E00B4F5A8 /* intsym.h */; };
|
24
|
+
CD132C8A152A4D7E00B4F5A8 /* l2tables.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C6E152A4D7E00B4F5A8 /* l2tables.h */; };
|
25
|
+
CD132C8B152A4D7E00B4F5A8 /* l3_integer_tables.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C6F152A4D7E00B4F5A8 /* l3_integer_tables.h */; };
|
26
|
+
CD132C8C152A4D7E00B4F5A8 /* l12_integer_tables.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C70152A4D7E00B4F5A8 /* l12_integer_tables.h */; };
|
27
|
+
CD132C8D152A4D7E00B4F5A8 /* mangle.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C71152A4D7E00B4F5A8 /* mangle.h */; };
|
28
|
+
CD132C8E152A4D7E00B4F5A8 /* mpg123lib_intern.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C73152A4D7E00B4F5A8 /* mpg123lib_intern.h */; };
|
29
|
+
CD132C8F152A4D7E00B4F5A8 /* optimize.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C74152A4D7E00B4F5A8 /* optimize.h */; };
|
30
|
+
CD132C90152A4D7E00B4F5A8 /* parse.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C75152A4D7E00B4F5A8 /* parse.h */; };
|
31
|
+
CD132C91152A4D7E00B4F5A8 /* reader.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C76152A4D7E00B4F5A8 /* reader.h */; };
|
32
|
+
CD132C92152A4D7E00B4F5A8 /* sample.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C77152A4D7E00B4F5A8 /* sample.h */; };
|
33
|
+
CD132C93152A4D7E00B4F5A8 /* synth_8bit.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C78152A4D7E00B4F5A8 /* synth_8bit.h */; };
|
34
|
+
CD132C94152A4D7E00B4F5A8 /* synth_mono.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C79152A4D7E00B4F5A8 /* synth_mono.h */; };
|
35
|
+
CD132C95152A4D7E00B4F5A8 /* synth_ntom.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C7A152A4D7E00B4F5A8 /* synth_ntom.h */; };
|
36
|
+
CD132C96152A4D7E00B4F5A8 /* synth.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C7B152A4D7E00B4F5A8 /* synth.h */; };
|
37
|
+
CD132C97152A4D7E00B4F5A8 /* synths.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C7C152A4D7E00B4F5A8 /* synths.h */; };
|
38
|
+
CD132C98152A4D7E00B4F5A8 /* true.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C7D152A4D7E00B4F5A8 /* true.h */; };
|
39
|
+
CD132CB3152A4E7000B4F5A8 /* compat.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C99152A4E7000B4F5A8 /* compat.c */; };
|
40
|
+
CD132CB4152A4E7000B4F5A8 /* dct64.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C9A152A4E7000B4F5A8 /* dct64.c */; };
|
41
|
+
CD132CB5152A4E7000B4F5A8 /* dither.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C9B152A4E7000B4F5A8 /* dither.c */; };
|
42
|
+
CD132CB6152A4E7000B4F5A8 /* equalizer.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C9C152A4E7000B4F5A8 /* equalizer.c */; };
|
43
|
+
CD132CB7152A4E7000B4F5A8 /* feature.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C9D152A4E7000B4F5A8 /* feature.c */; };
|
44
|
+
CD132CB8152A4E7000B4F5A8 /* format.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C9E152A4E7000B4F5A8 /* format.c */; };
|
45
|
+
CD132CB9152A4E7000B4F5A8 /* frame.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C9F152A4E7000B4F5A8 /* frame.c */; };
|
46
|
+
CD132CBA152A4E7000B4F5A8 /* icy.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA0152A4E7000B4F5A8 /* icy.c */; };
|
47
|
+
CD132CBB152A4E7000B4F5A8 /* icy2utf8.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA1152A4E7000B4F5A8 /* icy2utf8.c */; };
|
48
|
+
CD132CBC152A4E7000B4F5A8 /* id3.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA2152A4E7000B4F5A8 /* id3.c */; };
|
49
|
+
CD132CBD152A4E7000B4F5A8 /* index.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA3152A4E7000B4F5A8 /* index.c */; };
|
50
|
+
CD132CBE152A4E7000B4F5A8 /* layer1.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA4152A4E7000B4F5A8 /* layer1.c */; };
|
51
|
+
CD132CBF152A4E7000B4F5A8 /* layer2.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA5152A4E7000B4F5A8 /* layer2.c */; };
|
52
|
+
CD132CC0152A4E7000B4F5A8 /* layer3.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA6152A4E7000B4F5A8 /* layer3.c */; };
|
53
|
+
CD132CC1152A4E7000B4F5A8 /* lfs_alias.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA7152A4E7000B4F5A8 /* lfs_alias.c */; };
|
54
|
+
CD132CC2152A4E7000B4F5A8 /* libmpg123.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA8152A4E7000B4F5A8 /* libmpg123.c */; };
|
55
|
+
CD132CC3152A4E7000B4F5A8 /* ntom.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA9152A4E7000B4F5A8 /* ntom.c */; };
|
56
|
+
CD132CC4152A4E7000B4F5A8 /* optimize.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CAA152A4E7000B4F5A8 /* optimize.c */; };
|
57
|
+
CD132CC5152A4E7000B4F5A8 /* parse.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CAB152A4E7000B4F5A8 /* parse.c */; };
|
58
|
+
CD132CC6152A4E7000B4F5A8 /* readers.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CAC152A4E7000B4F5A8 /* readers.c */; };
|
59
|
+
CD132CC7152A4E7000B4F5A8 /* stringbuf.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CAD152A4E7000B4F5A8 /* stringbuf.c */; };
|
60
|
+
CD132CC8152A4E7000B4F5A8 /* synth_8bit.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CAE152A4E7000B4F5A8 /* synth_8bit.c */; };
|
61
|
+
CD132CC9152A4E7000B4F5A8 /* synth_real.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CAF152A4E7000B4F5A8 /* synth_real.c */; };
|
62
|
+
CD132CCA152A4E7000B4F5A8 /* synth_s32.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CB0152A4E7000B4F5A8 /* synth_s32.c */; };
|
63
|
+
CD132CCB152A4E7000B4F5A8 /* synth.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CB1152A4E7000B4F5A8 /* synth.c */; };
|
64
|
+
CD132CCC152A4E7000B4F5A8 /* tabinit.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CB2152A4E7000B4F5A8 /* tabinit.c */; };
|
65
|
+
CD132CD6152A511C00B4F5A8 /* dct64_neon_float.S in Sources */ = {isa = PBXBuildFile; fileRef = CD132CCD152A511800B4F5A8 /* dct64_neon_float.S */; };
|
66
|
+
CD132CD7152A511C00B4F5A8 /* dct64_neon.S in Sources */ = {isa = PBXBuildFile; fileRef = CD132CCE152A511900B4F5A8 /* dct64_neon.S */; };
|
67
|
+
CD132CD9152A511C00B4F5A8 /* synth_neon_float.S in Sources */ = {isa = PBXBuildFile; fileRef = CD132CD0152A511A00B4F5A8 /* synth_neon_float.S */; };
|
68
|
+
CD132CDA152A511C00B4F5A8 /* synth_neon_s32.S in Sources */ = {isa = PBXBuildFile; fileRef = CD132CD1152A511A00B4F5A8 /* synth_neon_s32.S */; };
|
69
|
+
CD132CDB152A511C00B4F5A8 /* synth_neon.S in Sources */ = {isa = PBXBuildFile; fileRef = CD132CD2152A511A00B4F5A8 /* synth_neon.S */; };
|
70
|
+
CD132CDC152A511C00B4F5A8 /* synth_stereo_neon_float.S in Sources */ = {isa = PBXBuildFile; fileRef = CD132CD3152A511B00B4F5A8 /* synth_stereo_neon_float.S */; };
|
71
|
+
CD132CDD152A511C00B4F5A8 /* synth_stereo_neon_s32.S in Sources */ = {isa = PBXBuildFile; fileRef = CD132CD4152A511B00B4F5A8 /* synth_stereo_neon_s32.S */; };
|
72
|
+
CD132CDE152A511C00B4F5A8 /* synth_stereo_neon.S in Sources */ = {isa = PBXBuildFile; fileRef = CD132CD5152A511C00B4F5A8 /* synth_stereo_neon.S */; };
|
73
|
+
CDB0288C152B760700B01410 /* compat.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C99152A4E7000B4F5A8 /* compat.c */; };
|
74
|
+
CDB0288D152B760700B01410 /* compat.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C62152A4D7E00B4F5A8 /* compat.h */; };
|
75
|
+
CDB0288E152B760700B01410 /* dct64.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C9A152A4E7000B4F5A8 /* dct64.c */; };
|
76
|
+
CDB02890152B760D00B01410 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C63152A4D7E00B4F5A8 /* decode.h */; };
|
77
|
+
CDB02891152B760D00B01410 /* dither.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C64152A4D7E00B4F5A8 /* dither.h */; };
|
78
|
+
CDB02892152B760D00B01410 /* dither.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C9B152A4E7000B4F5A8 /* dither.c */; };
|
79
|
+
CDB02893152B760D00B01410 /* equalizer.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C9C152A4E7000B4F5A8 /* equalizer.c */; };
|
80
|
+
CDB02894152B760D00B01410 /* feature.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C9D152A4E7000B4F5A8 /* feature.c */; };
|
81
|
+
CDB02895152B760D00B01410 /* format.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C9E152A4E7000B4F5A8 /* format.c */; };
|
82
|
+
CDB02896152B761300B01410 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C65152A4D7E00B4F5A8 /* frame.h */; };
|
83
|
+
CDB02897152B761300B01410 /* frame.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132C9F152A4E7000B4F5A8 /* frame.c */; };
|
84
|
+
CDB02898152B761300B01410 /* getbits.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C66152A4D7E00B4F5A8 /* getbits.h */; };
|
85
|
+
CDB02899152B761300B01410 /* getcpuflags.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C67152A4D7E00B4F5A8 /* getcpuflags.h */; };
|
86
|
+
CDB0289A152B761300B01410 /* huffman.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C68152A4D7E00B4F5A8 /* huffman.h */; };
|
87
|
+
CDB0289B152B761300B01410 /* icy.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C69152A4D7E00B4F5A8 /* icy.h */; };
|
88
|
+
CDB0289C152B761300B01410 /* icy.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA0152A4E7000B4F5A8 /* icy.c */; };
|
89
|
+
CDB0289D152B761300B01410 /* icy2utf8.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C6A152A4D7E00B4F5A8 /* icy2utf8.h */; };
|
90
|
+
CDB0289E152B761300B01410 /* icy2utf8.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA1152A4E7000B4F5A8 /* icy2utf8.c */; };
|
91
|
+
CDB0289F152B761C00B01410 /* id3.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C6B152A4D7E00B4F5A8 /* id3.h */; };
|
92
|
+
CDB028A0152B761C00B01410 /* id3.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA2152A4E7000B4F5A8 /* id3.c */; };
|
93
|
+
CDB028A1152B761C00B01410 /* index.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C6C152A4D7E00B4F5A8 /* index.h */; };
|
94
|
+
CDB028A2152B761C00B01410 /* index.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA3152A4E7000B4F5A8 /* index.c */; };
|
95
|
+
CDB028A3152B761C00B01410 /* intsym.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C6D152A4D7E00B4F5A8 /* intsym.h */; };
|
96
|
+
CDB028A4152B761C00B01410 /* l2tables.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C6E152A4D7E00B4F5A8 /* l2tables.h */; };
|
97
|
+
CDB028A5152B761C00B01410 /* l3_integer_tables.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C6F152A4D7E00B4F5A8 /* l3_integer_tables.h */; };
|
98
|
+
CDB028A6152B761C00B01410 /* l12_integer_tables.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C70152A4D7E00B4F5A8 /* l12_integer_tables.h */; };
|
99
|
+
CDB028A7152B761C00B01410 /* layer1.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA4152A4E7000B4F5A8 /* layer1.c */; };
|
100
|
+
CDB028A8152B762E00B01410 /* layer2.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA5152A4E7000B4F5A8 /* layer2.c */; };
|
101
|
+
CDB028A9152B763500B01410 /* layer3.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA6152A4E7000B4F5A8 /* layer3.c */; };
|
102
|
+
CDB028AA152B763500B01410 /* lfs_alias.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA7152A4E7000B4F5A8 /* lfs_alias.c */; };
|
103
|
+
CDB028AB152B763500B01410 /* libmpg123.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA8152A4E7000B4F5A8 /* libmpg123.c */; };
|
104
|
+
CDB028AC152B763500B01410 /* mangle.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C71152A4D7E00B4F5A8 /* mangle.h */; };
|
105
|
+
CDB028AD152B764100B01410 /* mpg123lib_intern.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C73152A4D7E00B4F5A8 /* mpg123lib_intern.h */; };
|
106
|
+
CDB028AE152B764100B01410 /* ntom.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CA9152A4E7000B4F5A8 /* ntom.c */; };
|
107
|
+
CDB028AF152B764100B01410 /* optimize.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C74152A4D7E00B4F5A8 /* optimize.h */; };
|
108
|
+
CDB028B0152B764100B01410 /* optimize.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CAA152A4E7000B4F5A8 /* optimize.c */; };
|
109
|
+
CDB028B1152B764100B01410 /* parse.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C75152A4D7E00B4F5A8 /* parse.h */; };
|
110
|
+
CDB028B2152B764100B01410 /* parse.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CAB152A4E7000B4F5A8 /* parse.c */; };
|
111
|
+
CDB028B3152B764100B01410 /* reader.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C76152A4D7E00B4F5A8 /* reader.h */; };
|
112
|
+
CDB028B4152B764100B01410 /* readers.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CAC152A4E7000B4F5A8 /* readers.c */; };
|
113
|
+
CDB028B5152B764900B01410 /* sample.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C77152A4D7E00B4F5A8 /* sample.h */; };
|
114
|
+
CDB028B6152B764900B01410 /* stringbuf.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CAD152A4E7000B4F5A8 /* stringbuf.c */; };
|
115
|
+
CDB028B7152B764900B01410 /* synth.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CB1152A4E7000B4F5A8 /* synth.c */; };
|
116
|
+
CDB028B8152B764900B01410 /* synth_8bit.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C78152A4D7E00B4F5A8 /* synth_8bit.h */; };
|
117
|
+
CDB028B9152B764900B01410 /* synth_8bit.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CAE152A4E7000B4F5A8 /* synth_8bit.c */; };
|
118
|
+
CDB028BA152B764900B01410 /* synth_mono.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C79152A4D7E00B4F5A8 /* synth_mono.h */; };
|
119
|
+
CDB028BB152B764900B01410 /* synth_ntom.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C7A152A4D7E00B4F5A8 /* synth_ntom.h */; };
|
120
|
+
CDB028BC152B764900B01410 /* synth_real.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CAF152A4E7000B4F5A8 /* synth_real.c */; };
|
121
|
+
CDB028BD152B764900B01410 /* synth_s32.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CB0152A4E7000B4F5A8 /* synth_s32.c */; };
|
122
|
+
CDB028BE152B765000B01410 /* synth.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C7B152A4D7E00B4F5A8 /* synth.h */; };
|
123
|
+
CDB028BF152B765000B01410 /* synths.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C7C152A4D7E00B4F5A8 /* synths.h */; };
|
124
|
+
CDB028C0152B765000B01410 /* tabinit.c in Sources */ = {isa = PBXBuildFile; fileRef = CD132CB2152A4E7000B4F5A8 /* tabinit.c */; };
|
125
|
+
CDB028C1152B765000B01410 /* true.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C7D152A4D7E00B4F5A8 /* true.h */; };
|
126
|
+
CDB028C2152B765900B01410 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C21152A4B8000B4F5A8 /* config.h */; };
|
127
|
+
CDB028C3152B765900B01410 /* mpg123.h in Headers */ = {isa = PBXBuildFile; fileRef = CD132C22152A4B8000B4F5A8 /* mpg123.h */; };
|
128
|
+
/* End PBXBuildFile section */
|
129
|
+
|
130
|
+
/* Begin PBXFileReference section */
|
131
|
+
CD132C0E152A48C200B4F5A8 /* libmpg123-ios.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libmpg123-ios.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
132
|
+
CD132C21152A4B8000B4F5A8 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = SOURCE_ROOT; };
|
133
|
+
CD132C22152A4B8000B4F5A8 /* mpg123.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpg123.h; sourceTree = SOURCE_ROOT; };
|
134
|
+
CD132C62152A4D7E00B4F5A8 /* compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = compat.h; sourceTree = "<group>"; };
|
135
|
+
CD132C63152A4D7E00B4F5A8 /* decode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = decode.h; sourceTree = "<group>"; };
|
136
|
+
CD132C64152A4D7E00B4F5A8 /* dither.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dither.h; sourceTree = "<group>"; };
|
137
|
+
CD132C65152A4D7E00B4F5A8 /* frame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = frame.h; sourceTree = "<group>"; };
|
138
|
+
CD132C66152A4D7E00B4F5A8 /* getbits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = getbits.h; sourceTree = "<group>"; };
|
139
|
+
CD132C67152A4D7E00B4F5A8 /* getcpuflags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = getcpuflags.h; sourceTree = "<group>"; };
|
140
|
+
CD132C68152A4D7E00B4F5A8 /* huffman.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = huffman.h; sourceTree = "<group>"; };
|
141
|
+
CD132C69152A4D7E00B4F5A8 /* icy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icy.h; sourceTree = "<group>"; };
|
142
|
+
CD132C6A152A4D7E00B4F5A8 /* icy2utf8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icy2utf8.h; sourceTree = "<group>"; };
|
143
|
+
CD132C6B152A4D7E00B4F5A8 /* id3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = id3.h; sourceTree = "<group>"; };
|
144
|
+
CD132C6C152A4D7E00B4F5A8 /* index.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = index.h; sourceTree = "<group>"; };
|
145
|
+
CD132C6D152A4D7E00B4F5A8 /* intsym.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = intsym.h; sourceTree = "<group>"; };
|
146
|
+
CD132C6E152A4D7E00B4F5A8 /* l2tables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = l2tables.h; sourceTree = "<group>"; };
|
147
|
+
CD132C6F152A4D7E00B4F5A8 /* l3_integer_tables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = l3_integer_tables.h; sourceTree = "<group>"; };
|
148
|
+
CD132C70152A4D7E00B4F5A8 /* l12_integer_tables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = l12_integer_tables.h; sourceTree = "<group>"; };
|
149
|
+
CD132C71152A4D7E00B4F5A8 /* mangle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mangle.h; sourceTree = "<group>"; };
|
150
|
+
CD132C72152A4D7E00B4F5A8 /* mpg123.h.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mpg123.h.in; sourceTree = "<group>"; };
|
151
|
+
CD132C73152A4D7E00B4F5A8 /* mpg123lib_intern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpg123lib_intern.h; sourceTree = "<group>"; };
|
152
|
+
CD132C74152A4D7E00B4F5A8 /* optimize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = optimize.h; sourceTree = "<group>"; };
|
153
|
+
CD132C75152A4D7E00B4F5A8 /* parse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = parse.h; sourceTree = "<group>"; };
|
154
|
+
CD132C76152A4D7E00B4F5A8 /* reader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reader.h; sourceTree = "<group>"; };
|
155
|
+
CD132C77152A4D7E00B4F5A8 /* sample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sample.h; sourceTree = "<group>"; };
|
156
|
+
CD132C78152A4D7E00B4F5A8 /* synth_8bit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = synth_8bit.h; sourceTree = "<group>"; };
|
157
|
+
CD132C79152A4D7E00B4F5A8 /* synth_mono.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = synth_mono.h; sourceTree = "<group>"; };
|
158
|
+
CD132C7A152A4D7E00B4F5A8 /* synth_ntom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = synth_ntom.h; sourceTree = "<group>"; };
|
159
|
+
CD132C7B152A4D7E00B4F5A8 /* synth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = synth.h; sourceTree = "<group>"; };
|
160
|
+
CD132C7C152A4D7E00B4F5A8 /* synths.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = synths.h; sourceTree = "<group>"; };
|
161
|
+
CD132C7D152A4D7E00B4F5A8 /* true.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = true.h; sourceTree = "<group>"; };
|
162
|
+
CD132C99152A4E7000B4F5A8 /* compat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = compat.c; sourceTree = "<group>"; };
|
163
|
+
CD132C9A152A4E7000B4F5A8 /* dct64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dct64.c; sourceTree = "<group>"; };
|
164
|
+
CD132C9B152A4E7000B4F5A8 /* dither.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dither.c; sourceTree = "<group>"; };
|
165
|
+
CD132C9C152A4E7000B4F5A8 /* equalizer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = equalizer.c; sourceTree = "<group>"; };
|
166
|
+
CD132C9D152A4E7000B4F5A8 /* feature.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = feature.c; sourceTree = "<group>"; };
|
167
|
+
CD132C9E152A4E7000B4F5A8 /* format.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = format.c; sourceTree = "<group>"; };
|
168
|
+
CD132C9F152A4E7000B4F5A8 /* frame.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = frame.c; sourceTree = "<group>"; };
|
169
|
+
CD132CA0152A4E7000B4F5A8 /* icy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = icy.c; sourceTree = "<group>"; };
|
170
|
+
CD132CA1152A4E7000B4F5A8 /* icy2utf8.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = icy2utf8.c; sourceTree = "<group>"; };
|
171
|
+
CD132CA2152A4E7000B4F5A8 /* id3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = id3.c; sourceTree = "<group>"; };
|
172
|
+
CD132CA3152A4E7000B4F5A8 /* index.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = index.c; sourceTree = "<group>"; };
|
173
|
+
CD132CA4152A4E7000B4F5A8 /* layer1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = layer1.c; sourceTree = "<group>"; };
|
174
|
+
CD132CA5152A4E7000B4F5A8 /* layer2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = layer2.c; sourceTree = "<group>"; };
|
175
|
+
CD132CA6152A4E7000B4F5A8 /* layer3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = layer3.c; sourceTree = "<group>"; };
|
176
|
+
CD132CA7152A4E7000B4F5A8 /* lfs_alias.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lfs_alias.c; sourceTree = "<group>"; };
|
177
|
+
CD132CA8152A4E7000B4F5A8 /* libmpg123.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = libmpg123.c; sourceTree = "<group>"; };
|
178
|
+
CD132CA9152A4E7000B4F5A8 /* ntom.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ntom.c; sourceTree = "<group>"; };
|
179
|
+
CD132CAA152A4E7000B4F5A8 /* optimize.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = optimize.c; sourceTree = "<group>"; };
|
180
|
+
CD132CAB152A4E7000B4F5A8 /* parse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = parse.c; sourceTree = "<group>"; };
|
181
|
+
CD132CAC152A4E7000B4F5A8 /* readers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = readers.c; sourceTree = "<group>"; };
|
182
|
+
CD132CAD152A4E7000B4F5A8 /* stringbuf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stringbuf.c; sourceTree = "<group>"; };
|
183
|
+
CD132CAE152A4E7000B4F5A8 /* synth_8bit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = synth_8bit.c; sourceTree = "<group>"; };
|
184
|
+
CD132CAF152A4E7000B4F5A8 /* synth_real.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = synth_real.c; sourceTree = "<group>"; };
|
185
|
+
CD132CB0152A4E7000B4F5A8 /* synth_s32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = synth_s32.c; sourceTree = "<group>"; };
|
186
|
+
CD132CB1152A4E7000B4F5A8 /* synth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = synth.c; sourceTree = "<group>"; };
|
187
|
+
CD132CB2152A4E7000B4F5A8 /* tabinit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tabinit.c; sourceTree = "<group>"; };
|
188
|
+
CD132CCD152A511800B4F5A8 /* dct64_neon_float.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = dct64_neon_float.S; sourceTree = "<group>"; };
|
189
|
+
CD132CCE152A511900B4F5A8 /* dct64_neon.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = dct64_neon.S; sourceTree = "<group>"; };
|
190
|
+
CD132CD0152A511A00B4F5A8 /* synth_neon_float.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = synth_neon_float.S; sourceTree = "<group>"; };
|
191
|
+
CD132CD1152A511A00B4F5A8 /* synth_neon_s32.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = synth_neon_s32.S; sourceTree = "<group>"; };
|
192
|
+
CD132CD2152A511A00B4F5A8 /* synth_neon.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = synth_neon.S; sourceTree = "<group>"; };
|
193
|
+
CD132CD3152A511B00B4F5A8 /* synth_stereo_neon_float.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = synth_stereo_neon_float.S; sourceTree = "<group>"; };
|
194
|
+
CD132CD4152A511B00B4F5A8 /* synth_stereo_neon_s32.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = synth_stereo_neon_s32.S; sourceTree = "<group>"; };
|
195
|
+
CD132CD5152A511C00B4F5A8 /* synth_stereo_neon.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = synth_stereo_neon.S; sourceTree = "<group>"; };
|
196
|
+
CD6D72D1152B748200CF4285 /* libmpg123-mac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libmpg123-mac.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
197
|
+
/* End PBXFileReference section */
|
198
|
+
|
199
|
+
/* Begin PBXFrameworksBuildPhase section */
|
200
|
+
CD132C0B152A48C200B4F5A8 /* Frameworks */ = {
|
201
|
+
isa = PBXFrameworksBuildPhase;
|
202
|
+
buildActionMask = 2147483647;
|
203
|
+
files = (
|
204
|
+
);
|
205
|
+
runOnlyForDeploymentPostprocessing = 0;
|
206
|
+
};
|
207
|
+
CD6D72CE152B748200CF4285 /* Frameworks */ = {
|
208
|
+
isa = PBXFrameworksBuildPhase;
|
209
|
+
buildActionMask = 2147483647;
|
210
|
+
files = (
|
211
|
+
);
|
212
|
+
runOnlyForDeploymentPostprocessing = 0;
|
213
|
+
};
|
214
|
+
/* End PBXFrameworksBuildPhase section */
|
215
|
+
|
216
|
+
/* Begin PBXGroup section */
|
217
|
+
CD132C03152A48C100B4F5A8 = {
|
218
|
+
isa = PBXGroup;
|
219
|
+
children = (
|
220
|
+
CD132C60152A4C9A00B4F5A8 /* src */,
|
221
|
+
CD132C13152A48C200B4F5A8 /* Xcode */,
|
222
|
+
CD132C0F152A48C200B4F5A8 /* Products */,
|
223
|
+
);
|
224
|
+
sourceTree = "<group>";
|
225
|
+
};
|
226
|
+
CD132C0F152A48C200B4F5A8 /* Products */ = {
|
227
|
+
isa = PBXGroup;
|
228
|
+
children = (
|
229
|
+
CD132C0E152A48C200B4F5A8 /* libmpg123-ios.a */,
|
230
|
+
CD6D72D1152B748200CF4285 /* libmpg123-mac.a */,
|
231
|
+
);
|
232
|
+
name = Products;
|
233
|
+
sourceTree = "<group>";
|
234
|
+
};
|
235
|
+
CD132C13152A48C200B4F5A8 /* Xcode */ = {
|
236
|
+
isa = PBXGroup;
|
237
|
+
children = (
|
238
|
+
CD132C21152A4B8000B4F5A8 /* config.h */,
|
239
|
+
CD132C22152A4B8000B4F5A8 /* mpg123.h */,
|
240
|
+
);
|
241
|
+
name = Xcode;
|
242
|
+
sourceTree = "<group>";
|
243
|
+
};
|
244
|
+
CD132C60152A4C9A00B4F5A8 /* src */ = {
|
245
|
+
isa = PBXGroup;
|
246
|
+
children = (
|
247
|
+
CD132C61152A4CA400B4F5A8 /* libmpg123 */,
|
248
|
+
);
|
249
|
+
name = src;
|
250
|
+
path = ../../src;
|
251
|
+
sourceTree = SOURCE_ROOT;
|
252
|
+
};
|
253
|
+
CD132C61152A4CA400B4F5A8 /* libmpg123 */ = {
|
254
|
+
isa = PBXGroup;
|
255
|
+
children = (
|
256
|
+
CD132C99152A4E7000B4F5A8 /* compat.c */,
|
257
|
+
CD132C62152A4D7E00B4F5A8 /* compat.h */,
|
258
|
+
CD132C9A152A4E7000B4F5A8 /* dct64.c */,
|
259
|
+
CD132CCD152A511800B4F5A8 /* dct64_neon_float.S */,
|
260
|
+
CD132CCE152A511900B4F5A8 /* dct64_neon.S */,
|
261
|
+
CD132C63152A4D7E00B4F5A8 /* decode.h */,
|
262
|
+
CD132C64152A4D7E00B4F5A8 /* dither.h */,
|
263
|
+
CD132C9B152A4E7000B4F5A8 /* dither.c */,
|
264
|
+
CD132C9C152A4E7000B4F5A8 /* equalizer.c */,
|
265
|
+
CD132C9D152A4E7000B4F5A8 /* feature.c */,
|
266
|
+
CD132C9E152A4E7000B4F5A8 /* format.c */,
|
267
|
+
CD132C65152A4D7E00B4F5A8 /* frame.h */,
|
268
|
+
CD132C9F152A4E7000B4F5A8 /* frame.c */,
|
269
|
+
CD132C66152A4D7E00B4F5A8 /* getbits.h */,
|
270
|
+
CD132C67152A4D7E00B4F5A8 /* getcpuflags.h */,
|
271
|
+
CD132C68152A4D7E00B4F5A8 /* huffman.h */,
|
272
|
+
CD132C69152A4D7E00B4F5A8 /* icy.h */,
|
273
|
+
CD132CA0152A4E7000B4F5A8 /* icy.c */,
|
274
|
+
CD132C6A152A4D7E00B4F5A8 /* icy2utf8.h */,
|
275
|
+
CD132CA1152A4E7000B4F5A8 /* icy2utf8.c */,
|
276
|
+
CD132C6B152A4D7E00B4F5A8 /* id3.h */,
|
277
|
+
CD132CA2152A4E7000B4F5A8 /* id3.c */,
|
278
|
+
CD132C6C152A4D7E00B4F5A8 /* index.h */,
|
279
|
+
CD132CA3152A4E7000B4F5A8 /* index.c */,
|
280
|
+
CD132C6D152A4D7E00B4F5A8 /* intsym.h */,
|
281
|
+
CD132C6E152A4D7E00B4F5A8 /* l2tables.h */,
|
282
|
+
CD132C6F152A4D7E00B4F5A8 /* l3_integer_tables.h */,
|
283
|
+
CD132C70152A4D7E00B4F5A8 /* l12_integer_tables.h */,
|
284
|
+
CD132CA4152A4E7000B4F5A8 /* layer1.c */,
|
285
|
+
CD132CA5152A4E7000B4F5A8 /* layer2.c */,
|
286
|
+
CD132CA6152A4E7000B4F5A8 /* layer3.c */,
|
287
|
+
CD132CA7152A4E7000B4F5A8 /* lfs_alias.c */,
|
288
|
+
CD132CA8152A4E7000B4F5A8 /* libmpg123.c */,
|
289
|
+
CD132C71152A4D7E00B4F5A8 /* mangle.h */,
|
290
|
+
CD132C72152A4D7E00B4F5A8 /* mpg123.h.in */,
|
291
|
+
CD132C73152A4D7E00B4F5A8 /* mpg123lib_intern.h */,
|
292
|
+
CD132CA9152A4E7000B4F5A8 /* ntom.c */,
|
293
|
+
CD132C74152A4D7E00B4F5A8 /* optimize.h */,
|
294
|
+
CD132CAA152A4E7000B4F5A8 /* optimize.c */,
|
295
|
+
CD132C75152A4D7E00B4F5A8 /* parse.h */,
|
296
|
+
CD132CAB152A4E7000B4F5A8 /* parse.c */,
|
297
|
+
CD132C76152A4D7E00B4F5A8 /* reader.h */,
|
298
|
+
CD132CAC152A4E7000B4F5A8 /* readers.c */,
|
299
|
+
CD132C77152A4D7E00B4F5A8 /* sample.h */,
|
300
|
+
CD132CAD152A4E7000B4F5A8 /* stringbuf.c */,
|
301
|
+
CD132CB1152A4E7000B4F5A8 /* synth.c */,
|
302
|
+
CD132C78152A4D7E00B4F5A8 /* synth_8bit.h */,
|
303
|
+
CD132CAE152A4E7000B4F5A8 /* synth_8bit.c */,
|
304
|
+
CD132C79152A4D7E00B4F5A8 /* synth_mono.h */,
|
305
|
+
CD132C7A152A4D7E00B4F5A8 /* synth_ntom.h */,
|
306
|
+
CD132CAF152A4E7000B4F5A8 /* synth_real.c */,
|
307
|
+
CD132CB0152A4E7000B4F5A8 /* synth_s32.c */,
|
308
|
+
CD132CD0152A511A00B4F5A8 /* synth_neon_float.S */,
|
309
|
+
CD132CD1152A511A00B4F5A8 /* synth_neon_s32.S */,
|
310
|
+
CD132CD2152A511A00B4F5A8 /* synth_neon.S */,
|
311
|
+
CD132CD3152A511B00B4F5A8 /* synth_stereo_neon_float.S */,
|
312
|
+
CD132CD4152A511B00B4F5A8 /* synth_stereo_neon_s32.S */,
|
313
|
+
CD132CD5152A511C00B4F5A8 /* synth_stereo_neon.S */,
|
314
|
+
CD132C7B152A4D7E00B4F5A8 /* synth.h */,
|
315
|
+
CD132C7C152A4D7E00B4F5A8 /* synths.h */,
|
316
|
+
CD132CB2152A4E7000B4F5A8 /* tabinit.c */,
|
317
|
+
CD132C7D152A4D7E00B4F5A8 /* true.h */,
|
318
|
+
);
|
319
|
+
path = libmpg123;
|
320
|
+
sourceTree = "<group>";
|
321
|
+
};
|
322
|
+
/* End PBXGroup section */
|
323
|
+
|
324
|
+
/* Begin PBXHeadersBuildPhase section */
|
325
|
+
CD132C0C152A48C200B4F5A8 /* Headers */ = {
|
326
|
+
isa = PBXHeadersBuildPhase;
|
327
|
+
buildActionMask = 2147483647;
|
328
|
+
files = (
|
329
|
+
CD132C23152A4B8000B4F5A8 /* config.h in Headers */,
|
330
|
+
CD132C24152A4B8000B4F5A8 /* mpg123.h in Headers */,
|
331
|
+
CD132C7E152A4D7E00B4F5A8 /* compat.h in Headers */,
|
332
|
+
CD132C7F152A4D7E00B4F5A8 /* decode.h in Headers */,
|
333
|
+
CD132C80152A4D7E00B4F5A8 /* dither.h in Headers */,
|
334
|
+
CD132C81152A4D7E00B4F5A8 /* frame.h in Headers */,
|
335
|
+
CD132C82152A4D7E00B4F5A8 /* getbits.h in Headers */,
|
336
|
+
CD132C83152A4D7E00B4F5A8 /* getcpuflags.h in Headers */,
|
337
|
+
CD132C84152A4D7E00B4F5A8 /* huffman.h in Headers */,
|
338
|
+
CD132C85152A4D7E00B4F5A8 /* icy.h in Headers */,
|
339
|
+
CD132C86152A4D7E00B4F5A8 /* icy2utf8.h in Headers */,
|
340
|
+
CD132C87152A4D7E00B4F5A8 /* id3.h in Headers */,
|
341
|
+
CD132C88152A4D7E00B4F5A8 /* index.h in Headers */,
|
342
|
+
CD132C89152A4D7E00B4F5A8 /* intsym.h in Headers */,
|
343
|
+
CD132C8A152A4D7E00B4F5A8 /* l2tables.h in Headers */,
|
344
|
+
CD132C8B152A4D7E00B4F5A8 /* l3_integer_tables.h in Headers */,
|
345
|
+
CD132C8C152A4D7E00B4F5A8 /* l12_integer_tables.h in Headers */,
|
346
|
+
CD132C8D152A4D7E00B4F5A8 /* mangle.h in Headers */,
|
347
|
+
CD132C8E152A4D7E00B4F5A8 /* mpg123lib_intern.h in Headers */,
|
348
|
+
CD132C8F152A4D7E00B4F5A8 /* optimize.h in Headers */,
|
349
|
+
CD132C90152A4D7E00B4F5A8 /* parse.h in Headers */,
|
350
|
+
CD132C91152A4D7E00B4F5A8 /* reader.h in Headers */,
|
351
|
+
CD132C92152A4D7E00B4F5A8 /* sample.h in Headers */,
|
352
|
+
CD132C93152A4D7E00B4F5A8 /* synth_8bit.h in Headers */,
|
353
|
+
CD132C94152A4D7E00B4F5A8 /* synth_mono.h in Headers */,
|
354
|
+
CD132C95152A4D7E00B4F5A8 /* synth_ntom.h in Headers */,
|
355
|
+
CD132C96152A4D7E00B4F5A8 /* synth.h in Headers */,
|
356
|
+
CD132C97152A4D7E00B4F5A8 /* synths.h in Headers */,
|
357
|
+
CD132C98152A4D7E00B4F5A8 /* true.h in Headers */,
|
358
|
+
);
|
359
|
+
runOnlyForDeploymentPostprocessing = 0;
|
360
|
+
};
|
361
|
+
CD6D72CF152B748200CF4285 /* Headers */ = {
|
362
|
+
isa = PBXHeadersBuildPhase;
|
363
|
+
buildActionMask = 2147483647;
|
364
|
+
files = (
|
365
|
+
CDB0288D152B760700B01410 /* compat.h in Headers */,
|
366
|
+
CDB02890152B760D00B01410 /* decode.h in Headers */,
|
367
|
+
CDB02891152B760D00B01410 /* dither.h in Headers */,
|
368
|
+
CDB02896152B761300B01410 /* frame.h in Headers */,
|
369
|
+
CDB02898152B761300B01410 /* getbits.h in Headers */,
|
370
|
+
CDB02899152B761300B01410 /* getcpuflags.h in Headers */,
|
371
|
+
CDB0289A152B761300B01410 /* huffman.h in Headers */,
|
372
|
+
CDB0289B152B761300B01410 /* icy.h in Headers */,
|
373
|
+
CDB0289D152B761300B01410 /* icy2utf8.h in Headers */,
|
374
|
+
CDB0289F152B761C00B01410 /* id3.h in Headers */,
|
375
|
+
CDB028A1152B761C00B01410 /* index.h in Headers */,
|
376
|
+
CDB028A3152B761C00B01410 /* intsym.h in Headers */,
|
377
|
+
CDB028A4152B761C00B01410 /* l2tables.h in Headers */,
|
378
|
+
CDB028A5152B761C00B01410 /* l3_integer_tables.h in Headers */,
|
379
|
+
CDB028A6152B761C00B01410 /* l12_integer_tables.h in Headers */,
|
380
|
+
CDB028AC152B763500B01410 /* mangle.h in Headers */,
|
381
|
+
CDB028AD152B764100B01410 /* mpg123lib_intern.h in Headers */,
|
382
|
+
CDB028AF152B764100B01410 /* optimize.h in Headers */,
|
383
|
+
CDB028B1152B764100B01410 /* parse.h in Headers */,
|
384
|
+
CDB028B3152B764100B01410 /* reader.h in Headers */,
|
385
|
+
CDB028B5152B764900B01410 /* sample.h in Headers */,
|
386
|
+
CDB028B8152B764900B01410 /* synth_8bit.h in Headers */,
|
387
|
+
CDB028BA152B764900B01410 /* synth_mono.h in Headers */,
|
388
|
+
CDB028BB152B764900B01410 /* synth_ntom.h in Headers */,
|
389
|
+
CDB028BE152B765000B01410 /* synth.h in Headers */,
|
390
|
+
CDB028BF152B765000B01410 /* synths.h in Headers */,
|
391
|
+
CDB028C1152B765000B01410 /* true.h in Headers */,
|
392
|
+
CDB028C2152B765900B01410 /* config.h in Headers */,
|
393
|
+
CDB028C3152B765900B01410 /* mpg123.h in Headers */,
|
394
|
+
);
|
395
|
+
runOnlyForDeploymentPostprocessing = 0;
|
396
|
+
};
|
397
|
+
/* End PBXHeadersBuildPhase section */
|
398
|
+
|
399
|
+
/* Begin PBXNativeTarget section */
|
400
|
+
CD132C0D152A48C200B4F5A8 /* mpg123-ios */ = {
|
401
|
+
isa = PBXNativeTarget;
|
402
|
+
buildConfigurationList = CD132C1B152A48C200B4F5A8 /* Build configuration list for PBXNativeTarget "mpg123-ios" */;
|
403
|
+
buildPhases = (
|
404
|
+
CD132C0A152A48C200B4F5A8 /* Sources */,
|
405
|
+
CD132C0B152A48C200B4F5A8 /* Frameworks */,
|
406
|
+
CD132C0C152A48C200B4F5A8 /* Headers */,
|
407
|
+
);
|
408
|
+
buildRules = (
|
409
|
+
);
|
410
|
+
dependencies = (
|
411
|
+
);
|
412
|
+
name = "mpg123-ios";
|
413
|
+
productName = libmpg123;
|
414
|
+
productReference = CD132C0E152A48C200B4F5A8 /* libmpg123-ios.a */;
|
415
|
+
productType = "com.apple.product-type.library.static";
|
416
|
+
};
|
417
|
+
CD6D72D0152B748200CF4285 /* mpg123-mac */ = {
|
418
|
+
isa = PBXNativeTarget;
|
419
|
+
buildConfigurationList = CD6D72D4152B748200CF4285 /* Build configuration list for PBXNativeTarget "mpg123-mac" */;
|
420
|
+
buildPhases = (
|
421
|
+
CD6D72CD152B748200CF4285 /* Sources */,
|
422
|
+
CD6D72CE152B748200CF4285 /* Frameworks */,
|
423
|
+
CD6D72CF152B748200CF4285 /* Headers */,
|
424
|
+
);
|
425
|
+
buildRules = (
|
426
|
+
);
|
427
|
+
dependencies = (
|
428
|
+
);
|
429
|
+
name = "mpg123-mac";
|
430
|
+
productName = "mpg123-mac";
|
431
|
+
productReference = CD6D72D1152B748200CF4285 /* libmpg123-mac.a */;
|
432
|
+
productType = "com.apple.product-type.library.static";
|
433
|
+
};
|
434
|
+
/* End PBXNativeTarget section */
|
435
|
+
|
436
|
+
/* Begin PBXProject section */
|
437
|
+
CD132C05152A48C100B4F5A8 /* Project object */ = {
|
438
|
+
isa = PBXProject;
|
439
|
+
attributes = {
|
440
|
+
LastUpgradeCheck = 0430;
|
441
|
+
};
|
442
|
+
buildConfigurationList = CD132C08152A48C100B4F5A8 /* Build configuration list for PBXProject "mpg123" */;
|
443
|
+
compatibilityVersion = "Xcode 3.2";
|
444
|
+
developmentRegion = English;
|
445
|
+
hasScannedForEncodings = 0;
|
446
|
+
knownRegions = (
|
447
|
+
en,
|
448
|
+
);
|
449
|
+
mainGroup = CD132C03152A48C100B4F5A8;
|
450
|
+
productRefGroup = CD132C0F152A48C200B4F5A8 /* Products */;
|
451
|
+
projectDirPath = "";
|
452
|
+
projectRoot = "";
|
453
|
+
targets = (
|
454
|
+
CD132C0D152A48C200B4F5A8 /* mpg123-ios */,
|
455
|
+
CD6D72D0152B748200CF4285 /* mpg123-mac */,
|
456
|
+
);
|
457
|
+
};
|
458
|
+
/* End PBXProject section */
|
459
|
+
|
460
|
+
/* Begin PBXSourcesBuildPhase section */
|
461
|
+
CD132C0A152A48C200B4F5A8 /* Sources */ = {
|
462
|
+
isa = PBXSourcesBuildPhase;
|
463
|
+
buildActionMask = 2147483647;
|
464
|
+
files = (
|
465
|
+
CD132CB3152A4E7000B4F5A8 /* compat.c in Sources */,
|
466
|
+
CD132CB4152A4E7000B4F5A8 /* dct64.c in Sources */,
|
467
|
+
CD132CB5152A4E7000B4F5A8 /* dither.c in Sources */,
|
468
|
+
CD132CB6152A4E7000B4F5A8 /* equalizer.c in Sources */,
|
469
|
+
CD132CB7152A4E7000B4F5A8 /* feature.c in Sources */,
|
470
|
+
CD132CB8152A4E7000B4F5A8 /* format.c in Sources */,
|
471
|
+
CD132CB9152A4E7000B4F5A8 /* frame.c in Sources */,
|
472
|
+
CD132CBA152A4E7000B4F5A8 /* icy.c in Sources */,
|
473
|
+
CD132CBB152A4E7000B4F5A8 /* icy2utf8.c in Sources */,
|
474
|
+
CD132CBC152A4E7000B4F5A8 /* id3.c in Sources */,
|
475
|
+
CD132CBD152A4E7000B4F5A8 /* index.c in Sources */,
|
476
|
+
CD132CBE152A4E7000B4F5A8 /* layer1.c in Sources */,
|
477
|
+
CD132CBF152A4E7000B4F5A8 /* layer2.c in Sources */,
|
478
|
+
CD132CC0152A4E7000B4F5A8 /* layer3.c in Sources */,
|
479
|
+
CD132CC1152A4E7000B4F5A8 /* lfs_alias.c in Sources */,
|
480
|
+
CD132CC2152A4E7000B4F5A8 /* libmpg123.c in Sources */,
|
481
|
+
CD132CC3152A4E7000B4F5A8 /* ntom.c in Sources */,
|
482
|
+
CD132CC4152A4E7000B4F5A8 /* optimize.c in Sources */,
|
483
|
+
CD132CC5152A4E7000B4F5A8 /* parse.c in Sources */,
|
484
|
+
CD132CC6152A4E7000B4F5A8 /* readers.c in Sources */,
|
485
|
+
CD132CC7152A4E7000B4F5A8 /* stringbuf.c in Sources */,
|
486
|
+
CD132CC8152A4E7000B4F5A8 /* synth_8bit.c in Sources */,
|
487
|
+
CD132CC9152A4E7000B4F5A8 /* synth_real.c in Sources */,
|
488
|
+
CD132CCA152A4E7000B4F5A8 /* synth_s32.c in Sources */,
|
489
|
+
CD132CCB152A4E7000B4F5A8 /* synth.c in Sources */,
|
490
|
+
CD132CCC152A4E7000B4F5A8 /* tabinit.c in Sources */,
|
491
|
+
CD132CD6152A511C00B4F5A8 /* dct64_neon_float.S in Sources */,
|
492
|
+
CD132CD7152A511C00B4F5A8 /* dct64_neon.S in Sources */,
|
493
|
+
CD132CD9152A511C00B4F5A8 /* synth_neon_float.S in Sources */,
|
494
|
+
CD132CDA152A511C00B4F5A8 /* synth_neon_s32.S in Sources */,
|
495
|
+
CD132CDB152A511C00B4F5A8 /* synth_neon.S in Sources */,
|
496
|
+
CD132CDC152A511C00B4F5A8 /* synth_stereo_neon_float.S in Sources */,
|
497
|
+
CD132CDD152A511C00B4F5A8 /* synth_stereo_neon_s32.S in Sources */,
|
498
|
+
CD132CDE152A511C00B4F5A8 /* synth_stereo_neon.S in Sources */,
|
499
|
+
);
|
500
|
+
runOnlyForDeploymentPostprocessing = 0;
|
501
|
+
};
|
502
|
+
CD6D72CD152B748200CF4285 /* Sources */ = {
|
503
|
+
isa = PBXSourcesBuildPhase;
|
504
|
+
buildActionMask = 2147483647;
|
505
|
+
files = (
|
506
|
+
CDB0288C152B760700B01410 /* compat.c in Sources */,
|
507
|
+
CDB0288E152B760700B01410 /* dct64.c in Sources */,
|
508
|
+
CDB02892152B760D00B01410 /* dither.c in Sources */,
|
509
|
+
CDB02893152B760D00B01410 /* equalizer.c in Sources */,
|
510
|
+
CDB02894152B760D00B01410 /* feature.c in Sources */,
|
511
|
+
CDB02895152B760D00B01410 /* format.c in Sources */,
|
512
|
+
CDB02897152B761300B01410 /* frame.c in Sources */,
|
513
|
+
CDB0289C152B761300B01410 /* icy.c in Sources */,
|
514
|
+
CDB0289E152B761300B01410 /* icy2utf8.c in Sources */,
|
515
|
+
CDB028A0152B761C00B01410 /* id3.c in Sources */,
|
516
|
+
CDB028A2152B761C00B01410 /* index.c in Sources */,
|
517
|
+
CDB028A7152B761C00B01410 /* layer1.c in Sources */,
|
518
|
+
CDB028A8152B762E00B01410 /* layer2.c in Sources */,
|
519
|
+
CDB028A9152B763500B01410 /* layer3.c in Sources */,
|
520
|
+
CDB028AA152B763500B01410 /* lfs_alias.c in Sources */,
|
521
|
+
CDB028AB152B763500B01410 /* libmpg123.c in Sources */,
|
522
|
+
CDB028AE152B764100B01410 /* ntom.c in Sources */,
|
523
|
+
CDB028B0152B764100B01410 /* optimize.c in Sources */,
|
524
|
+
CDB028B2152B764100B01410 /* parse.c in Sources */,
|
525
|
+
CDB028B4152B764100B01410 /* readers.c in Sources */,
|
526
|
+
CDB028B6152B764900B01410 /* stringbuf.c in Sources */,
|
527
|
+
CDB028B7152B764900B01410 /* synth.c in Sources */,
|
528
|
+
CDB028B9152B764900B01410 /* synth_8bit.c in Sources */,
|
529
|
+
CDB028BC152B764900B01410 /* synth_real.c in Sources */,
|
530
|
+
CDB028BD152B764900B01410 /* synth_s32.c in Sources */,
|
531
|
+
CDB028C0152B765000B01410 /* tabinit.c in Sources */,
|
532
|
+
);
|
533
|
+
runOnlyForDeploymentPostprocessing = 0;
|
534
|
+
};
|
535
|
+
/* End PBXSourcesBuildPhase section */
|
536
|
+
|
537
|
+
/* Begin XCBuildConfiguration section */
|
538
|
+
CD132C19152A48C200B4F5A8 /* Debug */ = {
|
539
|
+
isa = XCBuildConfiguration;
|
540
|
+
buildSettings = {
|
541
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
542
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
543
|
+
COPY_PHASE_STRIP = NO;
|
544
|
+
EXCLUDED_SOURCE_FILE_NAMES = "";
|
545
|
+
"EXCLUDED_SOURCE_FILE_NAMES[sdk=iphonesimulator*]" = (
|
546
|
+
"synth_neon*",
|
547
|
+
"synth_stereo_neon*",
|
548
|
+
"dct64_neon*",
|
549
|
+
);
|
550
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
551
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
552
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
553
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
554
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
555
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
556
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
557
|
+
IPHONEOS_DEPLOYMENT_TARGET = 4.3;
|
558
|
+
SDKROOT = iphoneos;
|
559
|
+
};
|
560
|
+
name = Debug;
|
561
|
+
};
|
562
|
+
CD132C1A152A48C200B4F5A8 /* Release */ = {
|
563
|
+
isa = XCBuildConfiguration;
|
564
|
+
buildSettings = {
|
565
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
566
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
567
|
+
COPY_PHASE_STRIP = YES;
|
568
|
+
EXCLUDED_SOURCE_FILE_NAMES = "";
|
569
|
+
"EXCLUDED_SOURCE_FILE_NAMES[sdk=iphonesimulator*]" = (
|
570
|
+
"synth_neon*",
|
571
|
+
"synth_stereo_neon*",
|
572
|
+
"dct64_neon*",
|
573
|
+
);
|
574
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
575
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
576
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
577
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
578
|
+
IPHONEOS_DEPLOYMENT_TARGET = 4.3;
|
579
|
+
SDKROOT = iphoneos;
|
580
|
+
VALIDATE_PRODUCT = YES;
|
581
|
+
};
|
582
|
+
name = Release;
|
583
|
+
};
|
584
|
+
CD132C1C152A48C200B4F5A8 /* Debug */ = {
|
585
|
+
isa = XCBuildConfiguration;
|
586
|
+
buildSettings = {
|
587
|
+
DSTROOT = /tmp/libmpg123.dst;
|
588
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
589
|
+
OTHER_LDFLAGS = "-ObjC";
|
590
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
591
|
+
SKIP_INSTALL = YES;
|
592
|
+
};
|
593
|
+
name = Debug;
|
594
|
+
};
|
595
|
+
CD132C1D152A48C200B4F5A8 /* Release */ = {
|
596
|
+
isa = XCBuildConfiguration;
|
597
|
+
buildSettings = {
|
598
|
+
DSTROOT = /tmp/libmpg123.dst;
|
599
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
600
|
+
OTHER_LDFLAGS = "-ObjC";
|
601
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
602
|
+
SKIP_INSTALL = YES;
|
603
|
+
};
|
604
|
+
name = Release;
|
605
|
+
};
|
606
|
+
CD6D72D2152B748200CF4285 /* Debug */ = {
|
607
|
+
isa = XCBuildConfiguration;
|
608
|
+
buildSettings = {
|
609
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
610
|
+
EXECUTABLE_PREFIX = lib;
|
611
|
+
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
612
|
+
GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
|
613
|
+
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
614
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
615
|
+
MACOSX_DEPLOYMENT_TARGET = 10.7;
|
616
|
+
ONLY_ACTIVE_ARCH = YES;
|
617
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
618
|
+
SDKROOT = macosx;
|
619
|
+
};
|
620
|
+
name = Debug;
|
621
|
+
};
|
622
|
+
CD6D72D3152B748200CF4285 /* Release */ = {
|
623
|
+
isa = XCBuildConfiguration;
|
624
|
+
buildSettings = {
|
625
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
626
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
627
|
+
EXECUTABLE_PREFIX = lib;
|
628
|
+
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
629
|
+
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
630
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
631
|
+
MACOSX_DEPLOYMENT_TARGET = 10.7;
|
632
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
633
|
+
SDKROOT = macosx;
|
634
|
+
};
|
635
|
+
name = Release;
|
636
|
+
};
|
637
|
+
/* End XCBuildConfiguration section */
|
638
|
+
|
639
|
+
/* Begin XCConfigurationList section */
|
640
|
+
CD132C08152A48C100B4F5A8 /* Build configuration list for PBXProject "mpg123" */ = {
|
641
|
+
isa = XCConfigurationList;
|
642
|
+
buildConfigurations = (
|
643
|
+
CD132C19152A48C200B4F5A8 /* Debug */,
|
644
|
+
CD132C1A152A48C200B4F5A8 /* Release */,
|
645
|
+
);
|
646
|
+
defaultConfigurationIsVisible = 0;
|
647
|
+
defaultConfigurationName = Release;
|
648
|
+
};
|
649
|
+
CD132C1B152A48C200B4F5A8 /* Build configuration list for PBXNativeTarget "mpg123-ios" */ = {
|
650
|
+
isa = XCConfigurationList;
|
651
|
+
buildConfigurations = (
|
652
|
+
CD132C1C152A48C200B4F5A8 /* Debug */,
|
653
|
+
CD132C1D152A48C200B4F5A8 /* Release */,
|
654
|
+
);
|
655
|
+
defaultConfigurationIsVisible = 0;
|
656
|
+
defaultConfigurationName = Release;
|
657
|
+
};
|
658
|
+
CD6D72D4152B748200CF4285 /* Build configuration list for PBXNativeTarget "mpg123-mac" */ = {
|
659
|
+
isa = XCConfigurationList;
|
660
|
+
buildConfigurations = (
|
661
|
+
CD6D72D2152B748200CF4285 /* Debug */,
|
662
|
+
CD6D72D3152B748200CF4285 /* Release */,
|
663
|
+
);
|
664
|
+
defaultConfigurationIsVisible = 0;
|
665
|
+
defaultConfigurationName = Release;
|
666
|
+
};
|
667
|
+
/* End XCConfigurationList section */
|
668
|
+
};
|
669
|
+
rootObject = CD132C05152A48C100B4F5A8 /* Project object */;
|
670
|
+
}
|