Skip to content

Commit

Permalink
add vp9 to codec list
Browse files Browse the repository at this point in the history
  • Loading branch information
theomonnom committed Dec 8, 2023
1 parent 5ce2ef3 commit 29cf7ed
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions livekit/src/room/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ use livekit_protocol as proto;
pub enum VideoCodec {
VP8,
H264,
VP9,
AV1,
}

Expand All @@ -28,6 +29,7 @@ impl VideoCodec {
match self {
VideoCodec::VP8 => "vp8",
VideoCodec::H264 => "h264",
VideoCodec::VP9 => "vp9",
VideoCodec::AV1 => "av1",
}
}
Expand Down

0 comments on commit 29cf7ed

Please sign in to comment.