Commit 655a3008 by xiongziliang

修复rtp(tcp)获取ssrc失败的bug

parent adf0e092
......@@ -67,7 +67,7 @@ void RtpSession::onManager() {
void RtpSession::onRtpPacket(const char *data, uint64_t len) {
if(!_ssrc){
_ssrc = RtpSelector::getSSRC(data,len);
_ssrc = RtpSelector::getSSRC(data + 2,len - 2);
_process = RtpSelector::Instance().getProcess(_ssrc, true);
}
_process->inputRtp(data + 2,len - 2,&addr);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论