From 26f4d1fdee21f7240580b1d596dece8f6ea1d424 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Wed, 7 Jun 2017 14:24:46 +0200 Subject: [PATCH] MistInBuffer no longer boots if the process starting it has no data to fill it with. Optimized and simplified HTTP internal output. --- src/input/input_ts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/input_ts.cpp b/src/input/input_ts.cpp index 74337a74..38121246 100755 --- a/src/input/input_ts.cpp +++ b/src/input/input_ts.cpp @@ -47,7 +47,7 @@ void parseThread(void * ignored) { } if (liveStream.isDataTrack(tid)){ - if (!Util::startInput(globalStreamName, "push://INTERNAL_ONLY:"+cfgPointer->getString("input"))) {//manually override stream url to start the buffer + if (!Util::startInput(globalStreamName, "push://INTERNAL_ONLY:"+cfgPointer->getString("input"), true, true)) {//manually override stream url to start the buffer FAIL_MSG("Could not start buffer for %s", globalStreamName.c_str()); return; }