File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
jicofo-selector/src/main/resources
jicofo/src/test/kotlin/org/jitsi/jicofo Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -25,7 +25,10 @@ import org.jitsi.jicofo.codec.Config.Companion.config
2525class 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
You can’t perform that action at this time.
0 commit comments