Skip to content

Commit

Permalink
Merge pull request #4993 from rafma0/backport-fix-tizen-flac
Browse files Browse the repository at this point in the history
  • Loading branch information
thornbill authored Nov 14, 2023
2 parents 4b6bbcf + 6c97b7a commit f4c4942
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scripts/browserDeviceProfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,8 @@ export function canPlaySecondaryAudio(videoTestElement) {
}
}

if (canPlayAudioFormat('flac')) {
// FLAC audio in video plays with a delay on Tizen
if (canPlayAudioFormat('flac') && !browser.tizen) {
videoAudioCodecs.push('flac');
hlsInFmp4VideoAudioCodecs.push('flac');
}
Expand Down

0 comments on commit f4c4942

Please sign in to comment.