We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20e7ecf commit 1caabbbCopy full SHA for 1caabbb
pkg/gcc/send_side_bwe.go
@@ -65,6 +65,22 @@ func SendSideBWEInitialBitrate(rate int) Option {
65
}
66
67
68
+// SendSideBWEMaxBitrate sets the initial bitrate of new GCC interceptors
69
+func SendSideBWEMaxBitrate(rate int) Option {
70
+ return func(e *SendSideBWE) error {
71
+ e.maxBitrate = rate
72
+ return nil
73
+ }
74
+}
75
+
76
+// SendSideBWEMinBitrate sets the initial bitrate of new GCC interceptors
77
+func SendSideBWEMinBitrate(rate int) Option {
78
79
+ e.minBitrate = rate
80
81
82
83
84
// SendSideBWEPacer sets the pacing algorithm to use.
85
func SendSideBWEPacer(p Pacer) Option {
86
return func(e *SendSideBWE) error {
0 commit comments