Skip to content

Commit

Permalink
Support non-svc(L1T1) mode for vp9/av1 (#1109)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnderrauber authored Apr 18, 2024
1 parent 2fd950d commit 5e3fa62
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/tidy-suns-refuse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"livekit-client": patch
---

Add non-svc mode (L1T1) for vp9/av1
1 change: 1 addition & 0 deletions example/sample.ts
Original file line number Diff line number Diff line change
Expand Up @@ -923,6 +923,7 @@ function populateSupportedCodecs() {
function populateScalabilityModes() {
const modeSelect = $('scalability-mode');
const modes: string[] = [
'L1T1',
'L1T2',
'L1T3',
'L2T1',
Expand Down
1 change: 1 addition & 0 deletions src/room/track/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,7 @@ export function isBackupCodec(codec: string): codec is BackupVideoCodec {
* scalability modes for svc.
*/
export type ScalabilityMode =
| 'L1T1'
| 'L1T2'
| 'L1T3'
| 'L2T1'
Expand Down

0 comments on commit 5e3fa62

Please sign in to comment.