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 +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -1433,6 +1433,10 @@ var tests = [
1433
1433
id : 'codecs.ogg.opus' ,
1434
1434
name : 'Ogg Opus support' ,
1435
1435
status : 'optional'
1436
+ } , {
1437
+ id : 'codecs.ogg.flac' ,
1438
+ name : 'Ogg FLAC support' ,
1439
+ status : 'optional'
1436
1440
} , {
1437
1441
id : 'codecs.webm.vorbis' ,
1438
1442
name : 'WebM with Vorbis support' ,
Original file line number Diff line number Diff line change @@ -2633,6 +2633,13 @@ Test9 = (function () {
2633
2633
passed : ! ! element . canPlayType && canPlayType ( element , 'audio/ogg; codecs="opus"' )
2634
2634
} ) ;
2635
2635
2636
+ /* ogg flac codec */
2637
+
2638
+ results . addItem ( {
2639
+ key : 'audio.codecs.ogg.flac' ,
2640
+ passed : ! ! element . canPlayType && canPlayType ( element , 'audio/ogg; codecs="flac"' )
2641
+ } ) ;
2642
+
2636
2643
/* webm vorbis codec */
2637
2644
2638
2645
results . addItem ( {
@@ -2866,6 +2873,13 @@ Test9 = (function () {
2866
2873
passed : 'MediaSource' in window && MediaSource . isTypeSupported ( 'audio/ogg; codecs="opus"' )
2867
2874
} ) ;
2868
2875
2876
+ /* flac in ogg codec */
2877
+
2878
+ results . addItem ( {
2879
+ key : 'streaming.audio.codecs.ogg.flac' ,
2880
+ passed : 'MediaSource' in window && MediaSource . isTypeSupported ( 'audio/ogg; codecs="flac"' )
2881
+ } ) ;
2882
+
2869
2883
/* vorbis in webm codec */
2870
2884
2871
2885
results . addItem ( {
You can’t perform that action at this time.
0 commit comments