From 3373a41f483a8807d4de7effe7310fdf488999a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Velad=20Galv=C3=A1n?= Date: Wed, 28 Jun 2023 12:14:24 +0200 Subject: [PATCH] fix(HLS): Fix dvh1 and dvhe detection as video codec (#5364) --- lib/util/manifest_parser_utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/manifest_parser_utils.js b/lib/util/manifest_parser_utils.js index 33c9b31775..122511611f 100644 --- a/lib/util/manifest_parser_utils.js +++ b/lib/util/manifest_parser_utils.js @@ -168,7 +168,7 @@ shaka.util.ManifestParserUtils.VIDEO_CODEC_REGEXPS_ = [ /^hvc/, /^vp0?[89]/, /^av01/, - /^dvhe/, + /^dvh/, ];