Merge branch 'development' into LTS_development

# Conflicts:
#	src/output/output_rtmp.cpp
This commit is contained in:
Thulinma 2016-07-21 00:01:47 +02:00
commit 1e3d4f6ee1

View file

@ -10,6 +10,7 @@
namespace Mist {
OutRTMP::OutRTMP(Socket::Connection & conn) : Output(conn) {
isPushing = false;
maxbps = config->getInteger("maxkbps")*128;
if (config->getString("target").size() && config->getString("target").substr(0, 7) == "rtmp://"){
streamName = config->getString("streamname");
@ -147,7 +148,6 @@ namespace Mist {
maxSkipAhead = 1500;
minSkipAhead = 500;
isPushing = false;
}
bool OutRTMP::listenMode(){