├── Data ├── 001A_16k.pcm ├── 001B_16k.wav ├── delaytest44100.pcm └── delaytest48000.pcm ├── LICENSE ├── LICENSE.webrtc ├── PATENTS.webrtc ├── README.md ├── README.webrtc ├── Visual Studio Project Files ├── WebRTC_VoiceEngine.sln ├── WebRTC_VoiceEngine.vcxproj ├── WebRTC_VoiceEngine.vcxproj.filters └── WebRTC_VoiceEngine.vcxproj.user ├── demo_main.cpp ├── my_level_indicator.cc ├── wasapi.cpp ├── wasapi.h ├── webrtc_voe.h ├── webrtc_voe_impl.cpp ├── webrtc_voe_impl.h └── webrtc_volume_control_impl.cpp /Data/001A_16k.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/Data/001A_16k.pcm -------------------------------------------------------------------------------- /Data/001B_16k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/Data/001B_16k.wav -------------------------------------------------------------------------------- /Data/delaytest44100.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/Data/delaytest44100.pcm -------------------------------------------------------------------------------- /Data/delaytest48000.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/Data/delaytest48000.pcm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.webrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/LICENSE.webrtc -------------------------------------------------------------------------------- /PATENTS.webrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/PATENTS.webrtc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/README.md -------------------------------------------------------------------------------- /README.webrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/README.webrtc -------------------------------------------------------------------------------- /Visual Studio Project Files/WebRTC_VoiceEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/Visual Studio Project Files/WebRTC_VoiceEngine.sln -------------------------------------------------------------------------------- /Visual Studio Project Files/WebRTC_VoiceEngine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/Visual Studio Project Files/WebRTC_VoiceEngine.vcxproj -------------------------------------------------------------------------------- /Visual Studio Project Files/WebRTC_VoiceEngine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/Visual Studio Project Files/WebRTC_VoiceEngine.vcxproj.filters -------------------------------------------------------------------------------- /Visual Studio Project Files/WebRTC_VoiceEngine.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/Visual Studio Project Files/WebRTC_VoiceEngine.vcxproj.user -------------------------------------------------------------------------------- /demo_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/demo_main.cpp -------------------------------------------------------------------------------- /my_level_indicator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/my_level_indicator.cc -------------------------------------------------------------------------------- /wasapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/wasapi.cpp -------------------------------------------------------------------------------- /wasapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/wasapi.h -------------------------------------------------------------------------------- /webrtc_voe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/webrtc_voe.h -------------------------------------------------------------------------------- /webrtc_voe_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/webrtc_voe_impl.cpp -------------------------------------------------------------------------------- /webrtc_voe_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/webrtc_voe_impl.h -------------------------------------------------------------------------------- /webrtc_volume_control_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyyu/WebRTC_VoiceEngine/HEAD/webrtc_volume_control_impl.cpp --------------------------------------------------------------------------------