I am opening socket on windows platform for sending RTP voice packets. The application is softphone. What preferable options should be set on this socket.
I am opening socket on windows platform for sending RTP voice packets. The application
Share
I don’t think you need any special options for basic RTP. You can set some of the following options if you’re experiencing some problems with your app:
Set the send buffer to your RTP frame size to avoid buffering by the OS. Set the receive buffer to avoid truncated frames if the OS’ default buffer size is too small for your frame size.
Other than that I can’t really think of anything…