From a555c5b43cd5f74c69774c06d679a28d826debbe Mon Sep 17 00:00:00 2001 From: Thulinma Date: Fri, 6 Feb 2015 00:42:43 +0100 Subject: [PATCH] Fixed several --json misconfigurations in inputs. --- src/input/input_dtsc.cpp | 2 +- src/input/input_flv.cpp | 2 +- src/input/input_ogg.cpp | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/input/input_dtsc.cpp b/src/input/input_dtsc.cpp index 07360274..41e6e1ee 100644 --- a/src/input/input_dtsc.cpp +++ b/src/input/input_dtsc.cpp @@ -12,7 +12,7 @@ namespace Mist { inputDTSC::inputDTSC(Util::Config * cfg) : Input(cfg) { capa["name"] = "DTSC"; - capa["decs"] = "Enables DTSC Input"; + capa["desc"] = "Enables DTSC Input"; capa["priority"] = 9ll; capa["source_match"] = "/*.dtsc"; capa["codecs"][0u][0u].append("H264"); diff --git a/src/input/input_flv.cpp b/src/input/input_flv.cpp index dbd97885..dc22473d 100644 --- a/src/input/input_flv.cpp +++ b/src/input/input_flv.cpp @@ -14,7 +14,7 @@ namespace Mist { inputFLV::inputFLV(Util::Config * cfg) : Input(cfg) { capa["name"] = "FLV"; - capa["decs"] = "Enables FLV Input"; + capa["desc"] = "Enables FLV Input"; capa["source_match"] = "/*.flv"; capa["priority"] = 9ll; capa["codecs"][0u][0u].append("H264"); diff --git a/src/input/input_ogg.cpp b/src/input/input_ogg.cpp index d4fe6099..d70701f6 100644 --- a/src/input/input_ogg.cpp +++ b/src/input/input_ogg.cpp @@ -46,6 +46,7 @@ namespace Mist { inputOGG::inputOGG(Util::Config * cfg) : Input(cfg){ capa["name"] = "OGG"; capa["desc"] = "Enables OGG input"; + capa["source_match"] = "/*.ogg"; capa["codecs"][0u][0u].append("theora"); capa["codecs"][0u][1u].append("vorbis"); }