rtp nack重传列队长度限制为5秒

This commit is contained in:
xiongziliang 2022-02-27 02:08:17 +08:00
parent ba5ca8f5c7
commit 6707b13418

View File

@ -14,7 +14,7 @@ using namespace std;
using namespace toolkit;
using namespace mediakit;
static constexpr uint32_t kMaxNackMS = 10 * 1000;
static constexpr uint32_t kMaxNackMS = 5 * 1000;
void NackList::pushBack(RtpPacket::Ptr rtp) {
auto seq = rtp->getSeq();