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 = [
14331433 id : 'codecs.ogg.opus' ,
14341434 name : 'Ogg Opus support' ,
14351435 status : 'optional'
1436+ } , {
1437+ id : 'codecs.ogg.flac' ,
1438+ name : 'Ogg FLAC support' ,
1439+ status : 'optional'
14361440 } , {
14371441 id : 'codecs.webm.vorbis' ,
14381442 name : 'WebM with Vorbis support' ,
Original file line number Diff line number Diff line change @@ -2633,6 +2633,13 @@ Test9 = (function () {
26332633 passed : ! ! element . canPlayType && canPlayType ( element , 'audio/ogg; codecs="opus"' )
26342634 } ) ;
26352635
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+
26362643 /* webm vorbis codec */
26372644
26382645 results . addItem ( {
@@ -2866,6 +2873,13 @@ Test9 = (function () {
28662873 passed : 'MediaSource' in window && MediaSource . isTypeSupported ( 'audio/ogg; codecs="opus"' )
28672874 } ) ;
28682875
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+
28692883 /* vorbis in webm codec */
28702884
28712885 results . addItem ( {
You can’t perform that action at this time.
0 commit comments