├── .github └── workflows │ └── test.yml ├── .gitignore ├── History.md ├── README.md ├── binding.gyp ├── deps └── mpg123 │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── NEWS.libmpg123 │ ├── README │ ├── TODO │ ├── aclocal.m4 │ ├── config │ ├── freebsd │ │ └── x64 │ │ │ ├── config.h │ │ │ └── mpg123.h │ ├── linux │ │ ├── arm │ │ │ ├── config.h │ │ │ └── mpg123.h │ │ ├── ia32 │ │ │ ├── config.h │ │ │ └── mpg123.h │ │ └── x64 │ │ │ ├── config.h │ │ │ └── mpg123.h │ ├── mac │ │ ├── arm │ │ │ ├── config.h │ │ │ └── mpg123.h │ │ ├── arm64 │ │ │ ├── config.h │ │ │ └── mpg123.h │ │ ├── ia32 │ │ │ ├── config.h │ │ │ └── mpg123.h │ │ └── x64 │ │ │ ├── config.h │ │ │ └── mpg123.h │ ├── solaris │ │ ├── ia32 │ │ │ ├── config.h │ │ │ └── mpg123.h │ │ └── x64 │ │ │ ├── config.h │ │ │ └── mpg123.h │ └── win │ │ ├── ia32 │ │ ├── config.h │ │ └── mpg123.h │ │ └── x64 │ │ ├── config.h │ │ └── mpg123.h │ ├── configure │ ├── configure.ac │ ├── equalize.dat │ ├── libmpg123.pc.in │ ├── m4 │ ├── addrconfig.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 │ ├── makedll.sh │ ├── man1 │ └── mpg123.1 │ ├── mpg123.gyp │ ├── mpg123.spec │ ├── mpg123.spec.in │ ├── scripts │ ├── benchmark-cpu.pl │ └── tag_lyrics.py │ ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── audio.c │ ├── audio.h │ ├── buffer.c │ ├── buffer.h │ ├── common.c │ ├── common.h │ ├── config.h.in │ ├── control_generic.c │ ├── equalizer.c │ ├── genre.c │ ├── genre.h │ ├── getlopt.c │ ├── getlopt.h │ ├── httpget.c │ ├── httpget.h │ ├── legacy_module.c │ ├── libmpg123 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── compat.c │ │ ├── compat.h │ │ ├── dct36_3dnow.S │ │ ├── dct36_3dnowext.S │ │ ├── dct64.c │ │ ├── dct64_3dnow.S │ │ ├── dct64_3dnowext.S │ │ ├── dct64_altivec.c │ │ ├── dct64_i386.c │ │ ├── dct64_i486.c │ │ ├── dct64_mmx.S │ │ ├── dct64_neon.S │ │ ├── dct64_neon_float.S │ │ ├── dct64_sse.S │ │ ├── dct64_sse_float.S │ │ ├── dct64_x86_64.S │ │ ├── dct64_x86_64_float.S │ │ ├── debug.h │ │ ├── decode.h │ │ ├── dither.c │ │ ├── dither.h │ │ ├── equalizer.c │ │ ├── equalizer_3dnow.S │ │ ├── feature.c │ │ ├── format.c │ │ ├── frame.c │ │ ├── frame.h │ │ ├── gapless.h │ │ ├── getbits.h │ │ ├── getcpuflags.S │ │ ├── getcpuflags.h │ │ ├── huffman.h │ │ ├── icy.c │ │ ├── icy.h │ │ ├── icy2utf8.c │ │ ├── icy2utf8.h │ │ ├── id3.c │ │ ├── id3.h │ │ ├── index.c │ │ ├── index.h │ │ ├── intsym.h │ │ ├── l12_integer_tables.h │ │ ├── l2tables.h │ │ ├── l3_integer_tables.h │ │ ├── layer1.c │ │ ├── layer2.c │ │ ├── layer3.c │ │ ├── lfs_alias.c │ │ ├── lfs_wrap.c │ │ ├── libmpg123.c │ │ ├── mangle.h │ │ ├── mpeghead.h │ │ ├── mpg123.h.in │ │ ├── mpg123lib_intern.h │ │ ├── ntom.c │ │ ├── optimize.c │ │ ├── optimize.h │ │ ├── parse.c │ │ ├── parse.h │ │ ├── reader.h │ │ ├── readers.c │ │ ├── sample.h │ │ ├── stringbuf.c │ │ ├── synth.c │ │ ├── synth.h │ │ ├── synth_3dnow.S │ │ ├── synth_3dnowext.S │ │ ├── synth_8bit.c │ │ ├── synth_8bit.h │ │ ├── synth_altivec.c │ │ ├── synth_arm.S │ │ ├── synth_arm_accurate.S │ │ ├── synth_i486.c │ │ ├── synth_i586.S │ │ ├── synth_i586_dither.S │ │ ├── synth_mmx.S │ │ ├── synth_mono.h │ │ ├── synth_neon.S │ │ ├── synth_neon_accurate.S │ │ ├── synth_neon_float.S │ │ ├── synth_neon_s32.S │ │ ├── synth_ntom.h │ │ ├── synth_real.c │ │ ├── synth_s32.c │ │ ├── synth_sse.S │ │ ├── synth_sse3d.h │ │ ├── synth_sse_accurate.S │ │ ├── synth_sse_float.S │ │ ├── synth_sse_s32.S │ │ ├── synth_stereo_neon.S │ │ ├── synth_stereo_neon_accurate.S │ │ ├── synth_stereo_neon_float.S │ │ ├── synth_stereo_neon_s32.S │ │ ├── synth_stereo_sse_accurate.S │ │ ├── synth_stereo_sse_float.S │ │ ├── synth_stereo_sse_s32.S │ │ ├── synth_stereo_x86_64.S │ │ ├── synth_stereo_x86_64_accurate.S │ │ ├── synth_stereo_x86_64_float.S │ │ ├── synth_stereo_x86_64_s32.S │ │ ├── synth_x86_64.S │ │ ├── synth_x86_64_accurate.S │ │ ├── synth_x86_64_float.S │ │ ├── synth_x86_64_s32.S │ │ ├── synths.h │ │ ├── tabinit.c │ │ ├── tabinit_mmx.S │ │ ├── testcpu.c │ │ └── true.h │ ├── local.c │ ├── local.h │ ├── metaprint.c │ ├── metaprint.h │ ├── module.c │ ├── module.h │ ├── mpg123.c │ ├── mpg123app.h │ ├── output │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── aix.c │ │ ├── alib.c │ │ ├── alsa.c │ │ ├── arts.c │ │ ├── coreaudio.c │ │ ├── dummy.c │ │ ├── esd.c │ │ ├── hp.c │ │ ├── jack.c │ │ ├── mint.c │ │ ├── nas.c │ │ ├── openal.c │ │ ├── os2.c │ │ ├── oss.c │ │ ├── output.h │ │ ├── portaudio.c │ │ ├── pulse.c │ │ ├── sdl.c │ │ ├── sgi.c │ │ ├── sndio.c │ │ ├── sun.c │ │ ├── win32.c │ │ └── win32_wasapi.c │ ├── playlist.c │ ├── playlist.h │ ├── resolver.c │ ├── resolver.h │ ├── sfifo.c │ ├── sfifo.h │ ├── streamdump.c │ ├── streamdump.h │ ├── term.c │ ├── term.h │ ├── wav.c │ ├── wavhead.h │ ├── win32_net.c │ ├── win32_support.c │ ├── win32_support.h │ ├── xfermem.c │ └── xfermem.h │ ├── test.c │ ├── test_output.c │ └── windows-builds.sh ├── examples ├── sine.js └── stdin.js ├── index.d.ts ├── index.js ├── package.json ├── src └── binding.c └── test └── test.js /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/.gitignore -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/History.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/binding.gyp -------------------------------------------------------------------------------- /deps/mpg123/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/AUTHORS -------------------------------------------------------------------------------- /deps/mpg123/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/COPYING -------------------------------------------------------------------------------- /deps/mpg123/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/ChangeLog -------------------------------------------------------------------------------- /deps/mpg123/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/INSTALL -------------------------------------------------------------------------------- /deps/mpg123/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/Makefile.am -------------------------------------------------------------------------------- /deps/mpg123/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/Makefile.in -------------------------------------------------------------------------------- /deps/mpg123/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/NEWS -------------------------------------------------------------------------------- /deps/mpg123/NEWS.libmpg123: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/NEWS.libmpg123 -------------------------------------------------------------------------------- /deps/mpg123/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/README -------------------------------------------------------------------------------- /deps/mpg123/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/TODO -------------------------------------------------------------------------------- /deps/mpg123/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/aclocal.m4 -------------------------------------------------------------------------------- /deps/mpg123/config/freebsd/x64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/freebsd/x64/config.h -------------------------------------------------------------------------------- /deps/mpg123/config/freebsd/x64/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/freebsd/x64/mpg123.h -------------------------------------------------------------------------------- /deps/mpg123/config/linux/arm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/linux/arm/config.h -------------------------------------------------------------------------------- /deps/mpg123/config/linux/arm/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/linux/arm/mpg123.h -------------------------------------------------------------------------------- /deps/mpg123/config/linux/ia32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/linux/ia32/config.h -------------------------------------------------------------------------------- /deps/mpg123/config/linux/ia32/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/linux/ia32/mpg123.h -------------------------------------------------------------------------------- /deps/mpg123/config/linux/x64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/linux/x64/config.h -------------------------------------------------------------------------------- /deps/mpg123/config/linux/x64/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/linux/x64/mpg123.h -------------------------------------------------------------------------------- /deps/mpg123/config/mac/arm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/mac/arm/config.h -------------------------------------------------------------------------------- /deps/mpg123/config/mac/arm/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/mac/arm/mpg123.h -------------------------------------------------------------------------------- /deps/mpg123/config/mac/arm64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/mac/arm64/config.h -------------------------------------------------------------------------------- /deps/mpg123/config/mac/arm64/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/mac/arm64/mpg123.h -------------------------------------------------------------------------------- /deps/mpg123/config/mac/ia32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/mac/ia32/config.h -------------------------------------------------------------------------------- /deps/mpg123/config/mac/ia32/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/mac/ia32/mpg123.h -------------------------------------------------------------------------------- /deps/mpg123/config/mac/x64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/mac/x64/config.h -------------------------------------------------------------------------------- /deps/mpg123/config/mac/x64/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/mac/x64/mpg123.h -------------------------------------------------------------------------------- /deps/mpg123/config/solaris/ia32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/solaris/ia32/config.h -------------------------------------------------------------------------------- /deps/mpg123/config/solaris/ia32/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/solaris/ia32/mpg123.h -------------------------------------------------------------------------------- /deps/mpg123/config/solaris/x64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/solaris/x64/config.h -------------------------------------------------------------------------------- /deps/mpg123/config/solaris/x64/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/solaris/x64/mpg123.h -------------------------------------------------------------------------------- /deps/mpg123/config/win/ia32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/win/ia32/config.h -------------------------------------------------------------------------------- /deps/mpg123/config/win/ia32/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/win/ia32/mpg123.h -------------------------------------------------------------------------------- /deps/mpg123/config/win/x64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/win/x64/config.h -------------------------------------------------------------------------------- /deps/mpg123/config/win/x64/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/config/win/x64/mpg123.h -------------------------------------------------------------------------------- /deps/mpg123/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/configure -------------------------------------------------------------------------------- /deps/mpg123/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/configure.ac -------------------------------------------------------------------------------- /deps/mpg123/equalize.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/equalize.dat -------------------------------------------------------------------------------- /deps/mpg123/libmpg123.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/libmpg123.pc.in -------------------------------------------------------------------------------- /deps/mpg123/m4/addrconfig.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/m4/addrconfig.m4 -------------------------------------------------------------------------------- /deps/mpg123/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/m4/libtool.m4 -------------------------------------------------------------------------------- /deps/mpg123/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/m4/ltoptions.m4 -------------------------------------------------------------------------------- /deps/mpg123/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/m4/ltsugar.m4 -------------------------------------------------------------------------------- /deps/mpg123/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/m4/ltversion.m4 -------------------------------------------------------------------------------- /deps/mpg123/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /deps/mpg123/makedll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/makedll.sh -------------------------------------------------------------------------------- /deps/mpg123/man1/mpg123.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/man1/mpg123.1 -------------------------------------------------------------------------------- /deps/mpg123/mpg123.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/mpg123.gyp -------------------------------------------------------------------------------- /deps/mpg123/mpg123.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/mpg123.spec -------------------------------------------------------------------------------- /deps/mpg123/mpg123.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/mpg123.spec.in -------------------------------------------------------------------------------- /deps/mpg123/scripts/benchmark-cpu.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/scripts/benchmark-cpu.pl -------------------------------------------------------------------------------- /deps/mpg123/scripts/tag_lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/scripts/tag_lyrics.py -------------------------------------------------------------------------------- /deps/mpg123/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/Makefile.am -------------------------------------------------------------------------------- /deps/mpg123/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/Makefile.in -------------------------------------------------------------------------------- /deps/mpg123/src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/audio.c -------------------------------------------------------------------------------- /deps/mpg123/src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/audio.h -------------------------------------------------------------------------------- /deps/mpg123/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/buffer.c -------------------------------------------------------------------------------- /deps/mpg123/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/buffer.h -------------------------------------------------------------------------------- /deps/mpg123/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/common.c -------------------------------------------------------------------------------- /deps/mpg123/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/common.h -------------------------------------------------------------------------------- /deps/mpg123/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/config.h.in -------------------------------------------------------------------------------- /deps/mpg123/src/control_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/control_generic.c -------------------------------------------------------------------------------- /deps/mpg123/src/equalizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/equalizer.c -------------------------------------------------------------------------------- /deps/mpg123/src/genre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/genre.c -------------------------------------------------------------------------------- /deps/mpg123/src/genre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/genre.h -------------------------------------------------------------------------------- /deps/mpg123/src/getlopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/getlopt.c -------------------------------------------------------------------------------- /deps/mpg123/src/getlopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/getlopt.h -------------------------------------------------------------------------------- /deps/mpg123/src/httpget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/httpget.c -------------------------------------------------------------------------------- /deps/mpg123/src/httpget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/httpget.h -------------------------------------------------------------------------------- /deps/mpg123/src/legacy_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/legacy_module.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/Makefile.am -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/Makefile.in -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/compat.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/compat.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct36_3dnow.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct36_3dnow.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct36_3dnowext.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct36_3dnowext.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64_3dnow.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64_3dnow.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64_3dnowext.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64_3dnowext.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64_altivec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64_altivec.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64_i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64_i386.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64_i486.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64_i486.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64_mmx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64_mmx.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64_neon.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64_neon_float.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64_neon_float.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64_sse.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64_sse.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64_sse_float.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64_sse_float.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64_x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64_x86_64.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dct64_x86_64_float.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dct64_x86_64_float.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/debug.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/decode.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dither.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dither.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/dither.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/dither.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/equalizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/equalizer.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/equalizer_3dnow.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/equalizer_3dnow.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/feature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/feature.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/format.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/frame.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/frame.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/gapless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/gapless.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/getbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/getbits.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/getcpuflags.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/getcpuflags.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/getcpuflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/getcpuflags.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/huffman.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/icy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/icy.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/icy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/icy.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/icy2utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/icy2utf8.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/icy2utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/icy2utf8.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/id3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/id3.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/id3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/id3.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/index.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/index.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/intsym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/intsym.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/l12_integer_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/l12_integer_tables.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/l2tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/l2tables.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/l3_integer_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/l3_integer_tables.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/layer1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/layer1.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/layer2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/layer2.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/layer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/layer3.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/lfs_alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/lfs_alias.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/lfs_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/lfs_wrap.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/libmpg123.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/libmpg123.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/mangle.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/mpeghead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/mpeghead.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/mpg123.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/mpg123.h.in -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/mpg123lib_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/mpg123lib_intern.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/ntom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/ntom.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/optimize.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/optimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/optimize.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/parse.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/parse.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/reader.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/readers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/readers.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/sample.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/stringbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/stringbuf.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_3dnow.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_3dnow.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_3dnowext.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_3dnowext.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_8bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_8bit.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_8bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_8bit.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_altivec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_altivec.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_arm.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_arm_accurate.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_arm_accurate.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_i486.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_i486.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_i586.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_i586.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_i586_dither.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_i586_dither.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_mmx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_mmx.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_mono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_mono.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_neon.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_neon_accurate.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_neon_accurate.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_neon_float.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_neon_float.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_neon_s32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_neon_s32.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_ntom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_ntom.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_real.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_real.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_s32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_s32.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_sse.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_sse.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_sse3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_sse3d.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_sse_accurate.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_sse_accurate.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_sse_float.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_sse_float.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_sse_s32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_sse_s32.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_stereo_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_stereo_neon.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_stereo_neon_accurate.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_stereo_neon_accurate.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_stereo_neon_float.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_stereo_neon_float.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_stereo_neon_s32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_stereo_neon_s32.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_stereo_sse_accurate.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_stereo_sse_accurate.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_stereo_sse_float.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_stereo_sse_float.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_stereo_sse_s32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_stereo_sse_s32.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_stereo_x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_stereo_x86_64.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_stereo_x86_64_accurate.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_stereo_x86_64_accurate.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_stereo_x86_64_float.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_stereo_x86_64_float.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_stereo_x86_64_s32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_stereo_x86_64_s32.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_x86_64.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_x86_64_accurate.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_x86_64_accurate.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_x86_64_float.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_x86_64_float.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synth_x86_64_s32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synth_x86_64_s32.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/synths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/synths.h -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/tabinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/tabinit.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/tabinit_mmx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/tabinit_mmx.S -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/testcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/testcpu.c -------------------------------------------------------------------------------- /deps/mpg123/src/libmpg123/true.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/libmpg123/true.h -------------------------------------------------------------------------------- /deps/mpg123/src/local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/local.c -------------------------------------------------------------------------------- /deps/mpg123/src/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/local.h -------------------------------------------------------------------------------- /deps/mpg123/src/metaprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/metaprint.c -------------------------------------------------------------------------------- /deps/mpg123/src/metaprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/metaprint.h -------------------------------------------------------------------------------- /deps/mpg123/src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/module.c -------------------------------------------------------------------------------- /deps/mpg123/src/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/module.h -------------------------------------------------------------------------------- /deps/mpg123/src/mpg123.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/mpg123.c -------------------------------------------------------------------------------- /deps/mpg123/src/mpg123app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/mpg123app.h -------------------------------------------------------------------------------- /deps/mpg123/src/output/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/Makefile.am -------------------------------------------------------------------------------- /deps/mpg123/src/output/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/Makefile.in -------------------------------------------------------------------------------- /deps/mpg123/src/output/aix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/aix.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/alib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/alib.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/alsa.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/arts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/arts.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/coreaudio.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/dummy.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/esd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/esd.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/hp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/hp.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/jack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/jack.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/mint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/mint.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/nas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/nas.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/openal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/openal.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/os2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/os2.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/oss.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/output.h -------------------------------------------------------------------------------- /deps/mpg123/src/output/portaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/portaudio.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/pulse.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/sdl.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/sgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/sgi.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/sndio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/sndio.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/sun.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/win32.c -------------------------------------------------------------------------------- /deps/mpg123/src/output/win32_wasapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/output/win32_wasapi.c -------------------------------------------------------------------------------- /deps/mpg123/src/playlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/playlist.c -------------------------------------------------------------------------------- /deps/mpg123/src/playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/playlist.h -------------------------------------------------------------------------------- /deps/mpg123/src/resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/resolver.c -------------------------------------------------------------------------------- /deps/mpg123/src/resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/resolver.h -------------------------------------------------------------------------------- /deps/mpg123/src/sfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/sfifo.c -------------------------------------------------------------------------------- /deps/mpg123/src/sfifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/sfifo.h -------------------------------------------------------------------------------- /deps/mpg123/src/streamdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/streamdump.c -------------------------------------------------------------------------------- /deps/mpg123/src/streamdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/streamdump.h -------------------------------------------------------------------------------- /deps/mpg123/src/term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/term.c -------------------------------------------------------------------------------- /deps/mpg123/src/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/term.h -------------------------------------------------------------------------------- /deps/mpg123/src/wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/wav.c -------------------------------------------------------------------------------- /deps/mpg123/src/wavhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/wavhead.h -------------------------------------------------------------------------------- /deps/mpg123/src/win32_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/win32_net.c -------------------------------------------------------------------------------- /deps/mpg123/src/win32_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/win32_support.c -------------------------------------------------------------------------------- /deps/mpg123/src/win32_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/win32_support.h -------------------------------------------------------------------------------- /deps/mpg123/src/xfermem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/xfermem.c -------------------------------------------------------------------------------- /deps/mpg123/src/xfermem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/src/xfermem.h -------------------------------------------------------------------------------- /deps/mpg123/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/test.c -------------------------------------------------------------------------------- /deps/mpg123/test_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/test_output.c -------------------------------------------------------------------------------- /deps/mpg123/windows-builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/deps/mpg123/windows-builds.sh -------------------------------------------------------------------------------- /examples/sine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/examples/sine.js -------------------------------------------------------------------------------- /examples/stdin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/examples/stdin.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/package.json -------------------------------------------------------------------------------- /src/binding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/src/binding.c -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-speaker/HEAD/test/test.js --------------------------------------------------------------------------------