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"); }