mirror of
https://github.com/strukturag/nextcloud-spreed-signaling
synced 2026-03-14 14:35:44 +01:00
Update generated files.
This commit is contained in:
parent
fae3f3e779
commit
42fbda20cf
1 changed files with 33 additions and 0 deletions
|
|
@ -210,6 +210,24 @@ func easyjsonC1cedd36DecodeGithubComStrukturagNextcloudSpreedSignalingEtcd1(in *
|
|||
} else {
|
||||
out.MaxScreenBitrate = api.Bandwidth(in.Uint64())
|
||||
}
|
||||
case "bitrateperroom":
|
||||
if in.IsNull() {
|
||||
in.Skip()
|
||||
} else {
|
||||
out.BandwidthPerRoom = api.Bandwidth(in.Uint64())
|
||||
}
|
||||
case "minpublisherbitrate":
|
||||
if in.IsNull() {
|
||||
in.Skip()
|
||||
} else {
|
||||
out.MinPublisherBandwidth = api.Bandwidth(in.Uint64())
|
||||
}
|
||||
case "maxpublisherbitrate":
|
||||
if in.IsNull() {
|
||||
in.Skip()
|
||||
} else {
|
||||
out.MaxPublisherBandwidth = api.Bandwidth(in.Uint64())
|
||||
}
|
||||
case "sessionlimit":
|
||||
if in.IsNull() {
|
||||
in.Skip()
|
||||
|
|
@ -275,6 +293,21 @@ func easyjsonC1cedd36EncodeGithubComStrukturagNextcloudSpreedSignalingEtcd1(out
|
|||
out.RawString(prefix)
|
||||
out.Uint64(uint64(in.MaxScreenBitrate))
|
||||
}
|
||||
if in.BandwidthPerRoom != 0 {
|
||||
const prefix string = ",\"bitrateperroom\":"
|
||||
out.RawString(prefix)
|
||||
out.Uint64(uint64(in.BandwidthPerRoom))
|
||||
}
|
||||
if in.MinPublisherBandwidth != 0 {
|
||||
const prefix string = ",\"minpublisherbitrate\":"
|
||||
out.RawString(prefix)
|
||||
out.Uint64(uint64(in.MinPublisherBandwidth))
|
||||
}
|
||||
if in.MaxPublisherBandwidth != 0 {
|
||||
const prefix string = ",\"maxpublisherbitrate\":"
|
||||
out.RawString(prefix)
|
||||
out.Uint64(uint64(in.MaxPublisherBandwidth))
|
||||
}
|
||||
if in.SessionLimit != 0 {
|
||||
const prefix string = ",\"sessionlimit\":"
|
||||
out.RawString(prefix)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue