-
Notifications
You must be signed in to change notification settings - Fork 851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] group backup link bstats.mbpsMaxBW is 1250 #2200
Comments
|
Note that bstats.mbpsBandwidth (Path Max Bandwidth) is returned for both paths. |
Steps to reproduceUsing the (receive on two ports)
srt-xtransmit receive srt://:4200 srt://:4201
(generate, main/backup mode)
srt-xtransmit generate --sendrate 1Mbps "srt://127.0.0.1:4200?maxbw=0&grouptype=backup" srt://127.0.0.1:4201 \
--statsfile group-snd.csv --statsfreq 1s -v --duration 5s The resulting Analysis (What to Do?)
That's exactly the reason.
Might be true for the main/backup mode. But not for the broadcast mode. |
Our reference: NKE-1458
Sender/Listener
SRTO_GROUPCONNECT=1
SRTO_MAXBW=0 //auto
SRTO_INPUTBW=0 //auto
SRTO_MININPUTBW=1884kbps //streamer output (1.5Mbps video+audio+MPEG overhead)
SRTO_OHEADBW=25
Active link report bstats.mbpsMaxBW=2 355 kbps (~1 8841.25)
Backup link reports bstats.mbpsMaxBW=1 250 000 kbps (1Gbps1.25)
Like if SRTO_MAXBW was set to -1 (infinite).
most likely caused by no traffic measured on the backup link since if active-backup links swap 2355 will be reported on both links. Even if technically the traffic is measured at the link level, it is submitted at the group level and this is what should define the snd BW ceiling.
The text was updated successfully, but these errors were encountered: