Skip to content

Commit b382fc2

Browse files
authored
feat: Enable AV1 by default (#1150)
* feat: Enable AV1 by default * fix the failing unit test.
1 parent 5de3401 commit b382fc2

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

jicofo-selector/src/main/resources/reference.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jicofo {
9090
codec {
9191
video {
9292
av1 {
93-
enabled = false
93+
enabled = true
9494
pt = 41
9595
// Payload type for the associated RTX stream. Set to -1 to disable RTX.
9696
rtx-pt = 42

jicofo/src/test/kotlin/org/jitsi/jicofo/CodecConfigTest.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ import org.jitsi.jicofo.codec.Config.Companion.config
2525
class CodecConfigTest : ShouldSpec() {
2626
init {
2727
context("Default configuration") {
28-
config.av1.enabled() shouldBe false
28+
config.av1.enabled() shouldBe true
29+
config.av1.pt() shouldBe 41
30+
config.av1.rtxEnabled() shouldBe true
31+
config.av1.rtxPt() shouldBe 42
2932

3033
config.vp8.enabled() shouldBe true
3134
config.vp8.pt() shouldBe 100

0 commit comments

Comments
 (0)