Skip to content

Commit 68b5487

Browse files
committed
VP[8|9] only
1 parent bba6778 commit 68b5487

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

livekit/tests/video_test.rs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,10 @@ struct VideoTestParams {
4040
#[test_log::test(tokio::test)]
4141
async fn test_video() -> Result<()> {
4242
let test_params = [
43-
VideoTestParams { codec: VideoCodec::VP8, width: 640, height: 360, simulcast: false },
44-
VideoTestParams { codec: VideoCodec::VP8, width: 1280, height: 720, simulcast: true },
45-
VideoTestParams { codec: VideoCodec::H264, width: 640, height: 360, simulcast: false },
46-
VideoTestParams { codec: VideoCodec::H264, width: 1280, height: 720, simulcast: true },
47-
VideoTestParams { codec: VideoCodec::H265, width: 640, height: 360, simulcast: false },
48-
VideoTestParams { codec: VideoCodec::H265, width: 1280, height: 720, simulcast: true },
49-
VideoTestParams { codec: VideoCodec::VP9, width: 640, height: 360, simulcast: false },
43+
VideoTestParams { codec: VideoCodec::VP8, width: 1280, height: 720, simulcast: false },
44+
VideoTestParams { codec: VideoCodec::VP8, width: 1280, height: 720, simulcast: true },
45+
VideoTestParams { codec: VideoCodec::VP9, width: 1280, height: 720, simulcast: false },
46+
VideoTestParams { codec: VideoCodec::VP9, width: 1280, height: 720, simulcast: true },
5047
];
5148
for params in test_params {
5249
log::info!("Testing with {}", params);

0 commit comments

Comments
 (0)