Skip to content

Commit

Permalink
feat: Add an option to enable VLA. (#1979)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrozev authored Dec 13, 2024
1 parent 9527545 commit eea18b1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ services:
- ENABLE_TALK_WHILE_MUTED
- ENABLE_TCC
- ENABLE_TRANSCRIPTIONS
- ENABLE_VLA
- ENABLE_XMPP_WEBSOCKET
- ENABLE_JAAS_COMPONENTS
- ETHERPAD_PUBLIC_URL
Expand Down
5 changes: 5 additions & 0 deletions jicofo/rootfs/defaults/jicofo.conf
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ jicofo {
}
{{ end }}
}
rtp-extensions {
video-layers-allocation {
enabled = {{ .Env.ENABLE_VLA | default "0" | toBool }}
}
}
}

conference {
Expand Down
1 change: 1 addition & 0 deletions jvb/rootfs/defaults/jvb.conf
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

videobridge {
cc {
use-vla-target-bitrate = {{ .Env.ENABLE_VLA | default "0" | toBool }}
trust-bwe = {{ $JVB_CC_TRUST_BWE }}
}
ice {
Expand Down

0 comments on commit eea18b1

Please sign in to comment.