Skip to content

Commit

Permalink
feat: Enable AV1 by default (#1150)
Browse files Browse the repository at this point in the history
* feat: Enable AV1 by default

* fix the failing unit test.
  • Loading branch information
jallamsetty1 committed Apr 19, 2024
1 parent 5de3401 commit b382fc2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jicofo-selector/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jicofo {
codec {
video {
av1 {
enabled = false
enabled = true
pt = 41
// Payload type for the associated RTX stream. Set to -1 to disable RTX.
rtx-pt = 42
Expand Down
5 changes: 4 additions & 1 deletion jicofo/src/test/kotlin/org/jitsi/jicofo/CodecConfigTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ import org.jitsi.jicofo.codec.Config.Companion.config
class CodecConfigTest : ShouldSpec() {
init {
context("Default configuration") {
config.av1.enabled() shouldBe false
config.av1.enabled() shouldBe true
config.av1.pt() shouldBe 41
config.av1.rtxEnabled() shouldBe true
config.av1.rtxPt() shouldBe 42

config.vp8.enabled() shouldBe true
config.vp8.pt() shouldBe 100
Expand Down

0 comments on commit b382fc2

Please sign in to comment.