From 54e26f3ef4362620f6f78342e1b64cdbb193ad9b Mon Sep 17 00:00:00 2001 From: Thulinma Date: Mon, 30 Apr 2018 17:06:05 +0200 Subject: [PATCH] Fixed HEVC codec display in HLS output --- src/output/output_hls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output/output_hls.cpp b/src/output/output_hls.cpp index a80dd013..81742d83 100644 --- a/src/output/output_hls.cpp +++ b/src/output/output_hls.cpp @@ -74,7 +74,7 @@ namespace Mist { if (hasSubs){ result << ",SUBTITLES=\"sub1\""; } - if (it->second.codec == "H264" || it->second.codec == "H256"){ + if (it->second.codec == "H264" || it->second.codec == "HEVC"){ result << ",CODECS=\""; if (it->second.codec == "H264"){ result << "avc1." << h264init(it->second.init);