From 1b84897e3423bad998290ff04a397be09f720c0c Mon Sep 17 00:00:00 2001 From: Thulinma Date: Tue, 17 Dec 2013 11:22:46 +0100 Subject: [PATCH] Updated working of invalid H264 check for live stream to match VoD wording. --- src/controller/controller_streams.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controller/controller_streams.cpp b/src/controller/controller_streams.cpp index 74b39e6f..147ef6d8 100644 --- a/src/controller/controller_streams.cpp +++ b/src/controller/controller_streams.cpp @@ -177,7 +177,7 @@ namespace Controller { if (trIt->second.isMember("init")){ if (trIt->second["init"].asString().size() < 4){ Log("WARN", "Live stream "+jit->first+" does not contain H264 init data that MistServer can interpret."); - jit->second["error"] = "Invalid?"; + jit->second["error"] = "Stream offline: Invalid?"; }else{ if (trIt->second["init"].asString().c_str()[1] != 0x42){ Log("WARN", "Live stream "+jit->first+" is not H264 Baseline - convert to baseline profile for best compatibility.");