feat: Add an option to enable VLA. (#1979)

pull/1980/head
bgrozev 2 months ago committed by GitHub
parent 95275454cf
commit eea18b101b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      docker-compose.yml
  2. 5
      jicofo/rootfs/defaults/jicofo.conf
  3. 1
      jvb/rootfs/defaults/jvb.conf

@ -103,6 +103,7 @@ services:
- ENABLE_TALK_WHILE_MUTED - ENABLE_TALK_WHILE_MUTED
- ENABLE_TCC - ENABLE_TCC
- ENABLE_TRANSCRIPTIONS - ENABLE_TRANSCRIPTIONS
- ENABLE_VLA
- ENABLE_XMPP_WEBSOCKET - ENABLE_XMPP_WEBSOCKET
- ENABLE_JAAS_COMPONENTS - ENABLE_JAAS_COMPONENTS
- ETHERPAD_PUBLIC_URL - ETHERPAD_PUBLIC_URL

@ -135,6 +135,11 @@ jicofo {
} }
{{ end }} {{ end }}
} }
rtp-extensions {
video-layers-allocation {
enabled = {{ .Env.ENABLE_VLA | default "0" | toBool }}
}
}
} }
conference { conference {

@ -35,6 +35,7 @@
videobridge { videobridge {
cc { cc {
use-vla-target-bitrate = {{ .Env.ENABLE_VLA | default "0" | toBool }}
trust-bwe = {{ $JVB_CC_TRUST_BWE }} trust-bwe = {{ $JVB_CC_TRUST_BWE }}
} }
ice { ice {

Loading…
Cancel
Save