This repository was archived by the owner on Apr 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -1340,6 +1340,14 @@ var tests = [
1340
1340
[ 'webm' , 'http://www.webmproject.org/' ] ,
1341
1341
[ 'ietf' , 'http://tools.ietf.org/id/draft-grange-vp9-bitstream-00.txt' ]
1342
1342
]
1343
+ } , {
1344
+ id : 'codecs.webm.av1' ,
1345
+ name : 'WebM with AV1 support' ,
1346
+ status : 'optional' ,
1347
+ urls : [
1348
+ [ 'webm' , 'http://www.webmproject.org/' ] ,
1349
+ [ 'other' , 'http://aomedia.org' ]
1350
+ ]
1343
1351
}
1344
1352
]
1345
1353
} , {
@@ -1508,6 +1516,14 @@ var tests = [
1508
1516
[ 'webm' , 'http://www.webmproject.org/' ] ,
1509
1517
[ 'ietf' , 'http://tools.ietf.org/id/draft-grange-vp9-bitstream-00.txt' ]
1510
1518
]
1519
+ } , {
1520
+ id : 'webm.av1' ,
1521
+ name : 'WebM with AV1 support' ,
1522
+ status : 'optional' ,
1523
+ urls : [
1524
+ [ 'webm' , 'http://www.webmproject.org/' ] ,
1525
+ [ 'other' , 'http://aomedia.org' ]
1526
+ ]
1511
1527
}
1512
1528
]
1513
1529
} , {
Original file line number Diff line number Diff line change @@ -2496,6 +2496,13 @@ Test9 = (function () {
2496
2496
passed : ! ! element . canPlayType && canPlayType ( element , 'video/webm; codecs="vp9"' )
2497
2497
} ) ;
2498
2498
2499
+ /* av1 in webm codec */
2500
+
2501
+ results . addItem ( {
2502
+ key : 'video.codecs.webm.av1' ,
2503
+ passed : ! ! element . canPlayType && canPlayType ( element , 'video/webm; codecs="av1.experimental.e87fb2378f01103d5d6e477a4ef6892dc714e614"' )
2504
+ } ) ;
2505
+
2499
2506
/* does codec detection work properly? */
2500
2507
2501
2508
var passed = true ;
@@ -2791,6 +2798,11 @@ Test9 = (function () {
2791
2798
key : 'streaming.video.codecs.webm.vp9' ,
2792
2799
passed : 'MediaSource' in window && MediaSource . isTypeSupported ( 'video/webm; codecs="vp9"' )
2793
2800
} ) ;
2801
+
2802
+ results . addItem ( {
2803
+ key : 'streaming.video.codecs.webm.av1' ,
2804
+ passed : 'MediaSource' in window && MediaSource . isTypeSupported ( 'video/webm; codecs="av1.experimental.e87fb2378f01103d5d6e477a4ef6892dc714e614"' )
2805
+ } ) ;
2794
2806
} ,
2795
2807
2796
2808
You can’t perform that action at this time.
0 commit comments