summaryrefslogtreecommitdiffstats
path: root/src/ConfigParser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ConfigParser.cpp')
-rw-r--r--src/ConfigParser.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ConfigParser.cpp b/src/ConfigParser.cpp
index bdc2099..2a8d3da 100644
--- a/src/ConfigParser.cpp
+++ b/src/ConfigParser.cpp
@@ -55,6 +55,7 @@
#include "input/Prbs.h"
#include "input/Zmq.h"
+#include "input/File.h"
#ifdef _WIN32
@@ -930,6 +931,16 @@ static void setup_subchannel_from_ptree(DabSubchannel* subchan,
if (nonblock) {
// TODO
}
+
+ if (type == "audio") {
+ subchan->input = make_shared<Inputs::MPEGFile>();
+ }
+ else if (type == "dabplus") {
+ subchan->input = make_shared<Inputs::DABPlusFile>();
+ }
+ else {
+ throw logic_error("Incomplete handling of file input");
+ }
}
else if (proto == "tcp" ||
proto == "epgm" ||