用于发送 RTP 的 udp 套接字选项
我正在 Windows 平台上打开套接字用于发送 RTP 语音数据包。该应用程序是软件电话。应该在此套接字上设置哪些优选选项。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为基本 RTP 不需要任何特殊选项。如果您的应用程序遇到一些问题,您可以设置以下一些选项:
将发送缓冲区设置为 RTP 帧大小,以避免操作系统缓冲。如果操作系统的默认缓冲区大小对于您的帧大小来说太小,请设置接收缓冲区以避免帧被截断。
除此之外我实在想不出什么了……
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...