Skip to content

Commit a91e448

Browse files
committed
Don't use AudioTrack API on Tizen 8+
1 parent 92e8821 commit a91e448

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/scripts/browserDeviceProfile.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,8 @@ export function canPlaySecondaryAudio(videoTestElement) {
462462
// It doesn't work in Firefox 108 even with "media.track.enabled" enabled (it only sees the first audio track)
463463
&& !browser.firefox
464464
// It seems to work on Tizen 5.5+ (2020, Chrome 69+). See https://developer.tizen.org/forums/web-application-development/video-tag-not-work-audiotracks
465-
&& (browser.tizenVersion >= 5.5 || !browser.tizen)
465+
// There are reports that additional audio track (AudioTrack API) doesn't work on Tizen 8.
466+
&& (browser.tizenVersion >= 5.5 && browser.tizenVersion < 8 || !browser.tizen)
466467
&& (browser.web0sVersion >= 4.0 || !browser.web0sVersion);
467468
}
468469

0 commit comments

Comments
 (0)