SRT v1.3.2 and lower had the default maxbw value is 30 Mbps. Since v1.3.3 the default value is 1 Gbps (#760).
The limitaion is not obvious for the end user.
v1.3.2 and earlier
const int64_t BW_INFINITE = 30000000/8; //Infinite=> 30Mbps
Since v1.3.3
const int64_t BW_INFINITE = 1000000000/8; //Infinite=> 1Gbps
This value affects the sending period of the packets.
void updatePktSndPeriod()
{
// packet = payload + header
double pktsize = m_iSndAvgPayloadSize + CPacket::SRT_DATA_HDR_SIZE;
m_dPktSndPeriod = 1000*1000.0 * (pktsize/m_llSndMaxBW);
}
SRT v1.3.2 and lower had the default
maxbwvalue is 30 Mbps. Since v1.3.3 the default value is 1 Gbps (#760).The limitaion is not obvious for the end user.
v1.3.2 and earlier
Since v1.3.3
This value affects the sending period of the packets.
-1. Zero packet send period.