mail2chromium / Android-Audio-Processing-Using-WebRTC

All in all WebRTC. A Complete Guide to enable Rich and High Quality of **Real-Time Voice Communication** on Android Platform. This repository involves a complete understanding, implementation and documentation related to WebRTC Audio Processing.
144 stars 49 forks source link

AudioProcessing.java line 145 may be some minor errors? #4

Closed zuowanbushiwo closed 3 years ago

zuowanbushiwo commented 3 years ago

Thank you very much for the open source project, this helped me a lot。I analyze the source code,find that _dataSocket = new DatagramSocket(Integer.parseInt(vm.getTargetPort()), localAddr); maybe change to _dataSocket = new DatagramSocket(PORT, localAddr); Is that right?

mail2chromium commented 3 years ago

Well, it's working fine as I am getting port from a UI text view. So, in the end, things meet at the same level of understanding.

zuowanbushiwo commented 3 years ago

thanks,Is that port used for debugging? Is there any debugging software on the PC? Can it be analyzed in real time?

mail2chromium commented 3 years ago

As the main purpose of this Audio Processing module is to obtain low-level processing of Audio signals and improve the overall audio quality. This APM module was extracted from WebRtc and is developed in C/C++. You can tweak this code to make it efficient on the PCs as well.

I hope I will also update this feature coming soon so that anyone can use it on any of the available platforms such as iOS, Browsers, and PCs as well.

zuowanbushiwo commented 3 years ago

Thanks!And watching