├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── AUTHORS ├── COPYING ├── ChangeLog ├── Doxyfile ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── README.Trimedia ├── README.blackfin ├── README.win32 ├── SpeexDSP.kdevelop ├── SpeexDSP.spec.in ├── TODO ├── acinclude.m4 ├── autogen.sh ├── configure.ac ├── doc ├── Makefile.am ├── celp_decoder.eps ├── celp_decoder.odg ├── components.eps ├── components.odg ├── echo_path.eps ├── echo_path.odg ├── manual.lyx ├── manual.pdf ├── programming.html ├── ref_shaping.eps ├── sampledec.c ├── sampleenc.c ├── speex_abs.eps ├── speex_abs.odg ├── speex_analysis.eps └── speex_analysis.odg ├── html ├── speex.png ├── speex.webprj └── speex.xcf ├── include ├── Makefile.am └── speex │ ├── Makefile.am │ ├── speex_buffer.h │ ├── speex_echo.h │ ├── speex_jitter.h │ ├── speex_preprocess.h │ ├── speex_resampler.h │ ├── speexdsp_config_types.h.in │ └── speexdsp_types.h ├── libspeexdsp ├── Makefile.am ├── _kiss_fft_guts.h ├── arch.h ├── bfin.h ├── buffer.c ├── echo_diagnostic.m ├── fftwrap.c ├── fftwrap.h ├── filterbank.c ├── filterbank.h ├── fixed_arm4.h ├── fixed_arm5e.h ├── fixed_bfin.h ├── fixed_debug.h ├── fixed_generic.h ├── jitter.c ├── kiss_fft.c ├── kiss_fft.h ├── kiss_fftr.c ├── kiss_fftr.h ├── math_approx.h ├── mdf.c ├── misc_bfin.h ├── os_support.h ├── preprocess.c ├── pseudofloat.h ├── resample.c ├── resample_neon.h ├── resample_sse.h ├── scal.c ├── smallft.c ├── smallft.h ├── testdenoise.c ├── testecho.c ├── testjitter.c ├── testresample.c ├── testresample2.c └── vorbis_psy.h ├── macosx ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── Speex.xcodeproj │ └── project.pbxproj ├── Speex_Prefix.pch └── Speex_UB.xcodeproj │ └── project.pbxproj ├── regression-fixes └── 1-resampler_unsigned_fix.patch ├── regressions ├── speexdsp.pc.in ├── symbian ├── Makefile.am ├── bld.inf ├── config.h └── speex.mmp ├── ti ├── Makefile.am ├── config.h ├── os_support_custom.h ├── speex_C54_test │ ├── Makefile.am │ ├── speex_C54_test.cmd │ └── speex_C54_test.pjt ├── speex_C55_test │ ├── Makefile.am │ ├── speex_C55_test.cmd │ └── speex_C55_test.pjt └── speex_C64_test │ ├── Makefile.am │ ├── speex_C64_test.cmd │ └── speex_C64_test.pjt ├── tmv ├── _kiss_fft_guts_tm.h ├── config.h ├── fftwrap_tm.h ├── filterbank_tm.h ├── fixed_tm.h ├── kiss_fft_tm.h ├── kiss_fftr_tm.h ├── mdf_tm.h ├── misc_tm.h ├── preprocess_tm.h ├── profile_tm.h └── speex_config_types.h └── win32 ├── Makefile.am ├── VS2003 ├── Makefile.am ├── libspeexdsp.sln ├── libspeexdsp │ ├── Makefile.am │ └── libspeexdsp.vcproj └── tests │ ├── Makefile.am │ ├── testdenoise.vcproj │ ├── testecho.vcproj │ └── testresample.vcproj ├── VS2005 ├── Makefile.am ├── libspeexdsp.sln ├── libspeexdsp │ ├── Makefile.am │ └── libspeexdsp.vcproj └── tests │ ├── Makefile.am │ ├── testdenoise.vcproj │ ├── testecho.vcproj │ └── testresample.vcproj ├── VS2008 ├── Makefile.am ├── libspeexdsp.sln ├── libspeexdsp │ ├── Makefile.am │ └── libspeexdsp.vcproj └── tests │ ├── Makefile.am │ ├── testdenoise.vcproj │ ├── testecho.vcproj │ └── testresample.vcproj ├── config.h ├── libspeexdsp.def ├── libspeexdsp ├── Makefile.am ├── libspeexdsp.dsp ├── libspeexdsp.dsw └── libspeexdsp_dynamic.dsp └── speex.iss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ChangeLog -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/Doxyfile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | 2002/02/13: Creation of the "Speex" project 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/README -------------------------------------------------------------------------------- /README.Trimedia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/README.Trimedia -------------------------------------------------------------------------------- /README.blackfin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/README.blackfin -------------------------------------------------------------------------------- /README.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/README.win32 -------------------------------------------------------------------------------- /SpeexDSP.kdevelop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/SpeexDSP.kdevelop -------------------------------------------------------------------------------- /SpeexDSP.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/SpeexDSP.spec.in -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/TODO -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/celp_decoder.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/celp_decoder.eps -------------------------------------------------------------------------------- /doc/celp_decoder.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/celp_decoder.odg -------------------------------------------------------------------------------- /doc/components.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/components.eps -------------------------------------------------------------------------------- /doc/components.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/components.odg -------------------------------------------------------------------------------- /doc/echo_path.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/echo_path.eps -------------------------------------------------------------------------------- /doc/echo_path.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/echo_path.odg -------------------------------------------------------------------------------- /doc/manual.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/manual.lyx -------------------------------------------------------------------------------- /doc/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/manual.pdf -------------------------------------------------------------------------------- /doc/programming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/programming.html -------------------------------------------------------------------------------- /doc/ref_shaping.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/ref_shaping.eps -------------------------------------------------------------------------------- /doc/sampledec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/sampledec.c -------------------------------------------------------------------------------- /doc/sampleenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/sampleenc.c -------------------------------------------------------------------------------- /doc/speex_abs.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/speex_abs.eps -------------------------------------------------------------------------------- /doc/speex_abs.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/speex_abs.odg -------------------------------------------------------------------------------- /doc/speex_analysis.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/speex_analysis.eps -------------------------------------------------------------------------------- /doc/speex_analysis.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/doc/speex_analysis.odg -------------------------------------------------------------------------------- /html/speex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/html/speex.png -------------------------------------------------------------------------------- /html/speex.webprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/html/speex.webprj -------------------------------------------------------------------------------- /html/speex.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/html/speex.xcf -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = speex 3 | -------------------------------------------------------------------------------- /include/speex/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/include/speex/Makefile.am -------------------------------------------------------------------------------- /include/speex/speex_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/include/speex/speex_buffer.h -------------------------------------------------------------------------------- /include/speex/speex_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/include/speex/speex_echo.h -------------------------------------------------------------------------------- /include/speex/speex_jitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/include/speex/speex_jitter.h -------------------------------------------------------------------------------- /include/speex/speex_preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/include/speex/speex_preprocess.h -------------------------------------------------------------------------------- /include/speex/speex_resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/include/speex/speex_resampler.h -------------------------------------------------------------------------------- /include/speex/speexdsp_config_types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/include/speex/speexdsp_config_types.h.in -------------------------------------------------------------------------------- /include/speex/speexdsp_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/include/speex/speexdsp_types.h -------------------------------------------------------------------------------- /libspeexdsp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/Makefile.am -------------------------------------------------------------------------------- /libspeexdsp/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/_kiss_fft_guts.h -------------------------------------------------------------------------------- /libspeexdsp/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/arch.h -------------------------------------------------------------------------------- /libspeexdsp/bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/bfin.h -------------------------------------------------------------------------------- /libspeexdsp/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/buffer.c -------------------------------------------------------------------------------- /libspeexdsp/echo_diagnostic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/echo_diagnostic.m -------------------------------------------------------------------------------- /libspeexdsp/fftwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/fftwrap.c -------------------------------------------------------------------------------- /libspeexdsp/fftwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/fftwrap.h -------------------------------------------------------------------------------- /libspeexdsp/filterbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/filterbank.c -------------------------------------------------------------------------------- /libspeexdsp/filterbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/filterbank.h -------------------------------------------------------------------------------- /libspeexdsp/fixed_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/fixed_arm4.h -------------------------------------------------------------------------------- /libspeexdsp/fixed_arm5e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/fixed_arm5e.h -------------------------------------------------------------------------------- /libspeexdsp/fixed_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/fixed_bfin.h -------------------------------------------------------------------------------- /libspeexdsp/fixed_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/fixed_debug.h -------------------------------------------------------------------------------- /libspeexdsp/fixed_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/fixed_generic.h -------------------------------------------------------------------------------- /libspeexdsp/jitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/jitter.c -------------------------------------------------------------------------------- /libspeexdsp/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/kiss_fft.c -------------------------------------------------------------------------------- /libspeexdsp/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/kiss_fft.h -------------------------------------------------------------------------------- /libspeexdsp/kiss_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/kiss_fftr.c -------------------------------------------------------------------------------- /libspeexdsp/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/kiss_fftr.h -------------------------------------------------------------------------------- /libspeexdsp/math_approx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/math_approx.h -------------------------------------------------------------------------------- /libspeexdsp/mdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/mdf.c -------------------------------------------------------------------------------- /libspeexdsp/misc_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/misc_bfin.h -------------------------------------------------------------------------------- /libspeexdsp/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/os_support.h -------------------------------------------------------------------------------- /libspeexdsp/preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/preprocess.c -------------------------------------------------------------------------------- /libspeexdsp/pseudofloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/pseudofloat.h -------------------------------------------------------------------------------- /libspeexdsp/resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/resample.c -------------------------------------------------------------------------------- /libspeexdsp/resample_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/resample_neon.h -------------------------------------------------------------------------------- /libspeexdsp/resample_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/resample_sse.h -------------------------------------------------------------------------------- /libspeexdsp/scal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/scal.c -------------------------------------------------------------------------------- /libspeexdsp/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/smallft.c -------------------------------------------------------------------------------- /libspeexdsp/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/smallft.h -------------------------------------------------------------------------------- /libspeexdsp/testdenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/testdenoise.c -------------------------------------------------------------------------------- /libspeexdsp/testecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/testecho.c -------------------------------------------------------------------------------- /libspeexdsp/testjitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/testjitter.c -------------------------------------------------------------------------------- /libspeexdsp/testresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/testresample.c -------------------------------------------------------------------------------- /libspeexdsp/testresample2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/testresample2.c -------------------------------------------------------------------------------- /libspeexdsp/vorbis_psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/libspeexdsp/vorbis_psy.h -------------------------------------------------------------------------------- /macosx/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/macosx/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/macosx/Info.plist -------------------------------------------------------------------------------- /macosx/Speex.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/macosx/Speex.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macosx/Speex_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/macosx/Speex_Prefix.pch -------------------------------------------------------------------------------- /macosx/Speex_UB.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/macosx/Speex_UB.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /regression-fixes/1-resampler_unsigned_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/regression-fixes/1-resampler_unsigned_fix.patch -------------------------------------------------------------------------------- /regressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/regressions -------------------------------------------------------------------------------- /speexdsp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/speexdsp.pc.in -------------------------------------------------------------------------------- /symbian/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/symbian/Makefile.am -------------------------------------------------------------------------------- /symbian/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/symbian/bld.inf -------------------------------------------------------------------------------- /symbian/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/symbian/config.h -------------------------------------------------------------------------------- /symbian/speex.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/symbian/speex.mmp -------------------------------------------------------------------------------- /ti/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ti/Makefile.am -------------------------------------------------------------------------------- /ti/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ti/config.h -------------------------------------------------------------------------------- /ti/os_support_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ti/os_support_custom.h -------------------------------------------------------------------------------- /ti/speex_C54_test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ti/speex_C54_test/Makefile.am -------------------------------------------------------------------------------- /ti/speex_C54_test/speex_C54_test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ti/speex_C54_test/speex_C54_test.cmd -------------------------------------------------------------------------------- /ti/speex_C54_test/speex_C54_test.pjt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ti/speex_C54_test/speex_C54_test.pjt -------------------------------------------------------------------------------- /ti/speex_C55_test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ti/speex_C55_test/Makefile.am -------------------------------------------------------------------------------- /ti/speex_C55_test/speex_C55_test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ti/speex_C55_test/speex_C55_test.cmd -------------------------------------------------------------------------------- /ti/speex_C55_test/speex_C55_test.pjt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ti/speex_C55_test/speex_C55_test.pjt -------------------------------------------------------------------------------- /ti/speex_C64_test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ti/speex_C64_test/Makefile.am -------------------------------------------------------------------------------- /ti/speex_C64_test/speex_C64_test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ti/speex_C64_test/speex_C64_test.cmd -------------------------------------------------------------------------------- /ti/speex_C64_test/speex_C64_test.pjt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/ti/speex_C64_test/speex_C64_test.pjt -------------------------------------------------------------------------------- /tmv/_kiss_fft_guts_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/tmv/_kiss_fft_guts_tm.h -------------------------------------------------------------------------------- /tmv/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/tmv/config.h -------------------------------------------------------------------------------- /tmv/fftwrap_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/tmv/fftwrap_tm.h -------------------------------------------------------------------------------- /tmv/filterbank_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/tmv/filterbank_tm.h -------------------------------------------------------------------------------- /tmv/fixed_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/tmv/fixed_tm.h -------------------------------------------------------------------------------- /tmv/kiss_fft_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/tmv/kiss_fft_tm.h -------------------------------------------------------------------------------- /tmv/kiss_fftr_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/tmv/kiss_fftr_tm.h -------------------------------------------------------------------------------- /tmv/mdf_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/tmv/mdf_tm.h -------------------------------------------------------------------------------- /tmv/misc_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/tmv/misc_tm.h -------------------------------------------------------------------------------- /tmv/preprocess_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/tmv/preprocess_tm.h -------------------------------------------------------------------------------- /tmv/profile_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/tmv/profile_tm.h -------------------------------------------------------------------------------- /tmv/speex_config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/tmv/speex_config_types.h -------------------------------------------------------------------------------- /win32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/Makefile.am -------------------------------------------------------------------------------- /win32/VS2003/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2003/Makefile.am -------------------------------------------------------------------------------- /win32/VS2003/libspeexdsp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2003/libspeexdsp.sln -------------------------------------------------------------------------------- /win32/VS2003/libspeexdsp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2003/libspeexdsp/Makefile.am -------------------------------------------------------------------------------- /win32/VS2003/libspeexdsp/libspeexdsp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2003/libspeexdsp/libspeexdsp.vcproj -------------------------------------------------------------------------------- /win32/VS2003/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2003/tests/Makefile.am -------------------------------------------------------------------------------- /win32/VS2003/tests/testdenoise.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2003/tests/testdenoise.vcproj -------------------------------------------------------------------------------- /win32/VS2003/tests/testecho.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2003/tests/testecho.vcproj -------------------------------------------------------------------------------- /win32/VS2003/tests/testresample.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2003/tests/testresample.vcproj -------------------------------------------------------------------------------- /win32/VS2005/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2005/Makefile.am -------------------------------------------------------------------------------- /win32/VS2005/libspeexdsp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2005/libspeexdsp.sln -------------------------------------------------------------------------------- /win32/VS2005/libspeexdsp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2005/libspeexdsp/Makefile.am -------------------------------------------------------------------------------- /win32/VS2005/libspeexdsp/libspeexdsp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2005/libspeexdsp/libspeexdsp.vcproj -------------------------------------------------------------------------------- /win32/VS2005/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2005/tests/Makefile.am -------------------------------------------------------------------------------- /win32/VS2005/tests/testdenoise.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2005/tests/testdenoise.vcproj -------------------------------------------------------------------------------- /win32/VS2005/tests/testecho.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2005/tests/testecho.vcproj -------------------------------------------------------------------------------- /win32/VS2005/tests/testresample.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2005/tests/testresample.vcproj -------------------------------------------------------------------------------- /win32/VS2008/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2008/Makefile.am -------------------------------------------------------------------------------- /win32/VS2008/libspeexdsp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2008/libspeexdsp.sln -------------------------------------------------------------------------------- /win32/VS2008/libspeexdsp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2008/libspeexdsp/Makefile.am -------------------------------------------------------------------------------- /win32/VS2008/libspeexdsp/libspeexdsp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2008/libspeexdsp/libspeexdsp.vcproj -------------------------------------------------------------------------------- /win32/VS2008/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2008/tests/Makefile.am -------------------------------------------------------------------------------- /win32/VS2008/tests/testdenoise.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2008/tests/testdenoise.vcproj -------------------------------------------------------------------------------- /win32/VS2008/tests/testecho.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2008/tests/testecho.vcproj -------------------------------------------------------------------------------- /win32/VS2008/tests/testresample.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/VS2008/tests/testresample.vcproj -------------------------------------------------------------------------------- /win32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/config.h -------------------------------------------------------------------------------- /win32/libspeexdsp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/libspeexdsp.def -------------------------------------------------------------------------------- /win32/libspeexdsp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/libspeexdsp/Makefile.am -------------------------------------------------------------------------------- /win32/libspeexdsp/libspeexdsp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/libspeexdsp/libspeexdsp.dsp -------------------------------------------------------------------------------- /win32/libspeexdsp/libspeexdsp.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/libspeexdsp/libspeexdsp.dsw -------------------------------------------------------------------------------- /win32/libspeexdsp/libspeexdsp_dynamic.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/libspeexdsp/libspeexdsp_dynamic.dsp -------------------------------------------------------------------------------- /win32/speex.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/speexdsp/HEAD/win32/speex.iss --------------------------------------------------------------------------------