├── .gitignore ├── Makefile ├── README.md ├── RtAudio.cpp ├── RtAudio.h ├── bin └── libspeexdsp-1.dll ├── from_file.cpp ├── from_mic.cpp ├── include ├── dsound.h └── speex │ ├── speex_echo.h │ ├── speex_jitter.h │ ├── speex_preprocess.h │ ├── speex_resampler.h │ ├── speexdsp_config_types.h │ └── speexdsp_types.h ├── lib ├── libspeexdsp.a ├── libspeexdsp.dll.a ├── libspeexdsp.la └── pkgconfig │ └── speexdsp.pc ├── remote.pcm ├── speex_func.cpp ├── speex_func.h ├── test.exe ├── 消除效果图1.png └── 消除效果图2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/README.md -------------------------------------------------------------------------------- /RtAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/RtAudio.cpp -------------------------------------------------------------------------------- /RtAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/RtAudio.h -------------------------------------------------------------------------------- /bin/libspeexdsp-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/bin/libspeexdsp-1.dll -------------------------------------------------------------------------------- /from_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/from_file.cpp -------------------------------------------------------------------------------- /from_mic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/from_mic.cpp -------------------------------------------------------------------------------- /include/dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/include/dsound.h -------------------------------------------------------------------------------- /include/speex/speex_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/include/speex/speex_echo.h -------------------------------------------------------------------------------- /include/speex/speex_jitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/include/speex/speex_jitter.h -------------------------------------------------------------------------------- /include/speex/speex_preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/include/speex/speex_preprocess.h -------------------------------------------------------------------------------- /include/speex/speex_resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/include/speex/speex_resampler.h -------------------------------------------------------------------------------- /include/speex/speexdsp_config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/include/speex/speexdsp_config_types.h -------------------------------------------------------------------------------- /include/speex/speexdsp_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/include/speex/speexdsp_types.h -------------------------------------------------------------------------------- /lib/libspeexdsp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/lib/libspeexdsp.a -------------------------------------------------------------------------------- /lib/libspeexdsp.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/lib/libspeexdsp.dll.a -------------------------------------------------------------------------------- /lib/libspeexdsp.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/lib/libspeexdsp.la -------------------------------------------------------------------------------- /lib/pkgconfig/speexdsp.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/lib/pkgconfig/speexdsp.pc -------------------------------------------------------------------------------- /remote.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/remote.pcm -------------------------------------------------------------------------------- /speex_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/speex_func.cpp -------------------------------------------------------------------------------- /speex_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/speex_func.h -------------------------------------------------------------------------------- /test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/test.exe -------------------------------------------------------------------------------- /消除效果图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/消除效果图1.png -------------------------------------------------------------------------------- /消除效果图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingyuejingque/rtaudio_speex/HEAD/消除效果图2.png --------------------------------------------------------------------------------