@@ -40,13 +40,10 @@ struct VideoTestParams {
4040#[ test_log:: test( tokio:: test) ]
4141async 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