初步完成TWCC包的解析

This commit is contained in:
xia-chu
2021-04-22 17:34:26 +08:00
parent 5db6154707
commit 90ad90cb78
4 changed files with 144 additions and 36 deletions

View File

@@ -144,8 +144,8 @@ void RtcpHeader::net2Host(size_t len){
}
case RtcpType::RTCP_RTPFB: {
//todo 支持rtcp-fb相关功能
net2Host();
RtcpPli *pli = (RtcpPli *)this;
pli->net2Host(len);
break;
}
default: throw std::runtime_error(StrPrinter << "未处理的rtcp包:" << rtcpTypeToStr((RtcpType) this->pt));