From c59a3b83a33c7ae58b5ab25c7572584e813cf48d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Velad=20Galv=C3=A1n?= Date: Wed, 3 Apr 2024 08:27:17 +0200 Subject: [PATCH] fix(HLS): Fix IAMF codec selection in HLS (#6389) IAMF spec: https://aomediacodec.github.io/iamf/ IAMF codec string: https://aomediacodec.github.io/iamf/#codecsparameter --- lib/util/manifest_parser_utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/util/manifest_parser_utils.js b/lib/util/manifest_parser_utils.js index dd25364aab..41321e509a 100644 --- a/lib/util/manifest_parser_utils.js +++ b/lib/util/manifest_parser_utils.js @@ -293,6 +293,7 @@ shaka.util.ManifestParserUtils.AUDIO_CODEC_REGEXPS_ = [ /^[ae]c-3$/, /^ac-4$/, /^dts[cex]$/, // DTS Digital Surround (dtsc), DTS Express (dtse), DTS:X (dtsx) + /^iamf/, ];