Skip to content
Snippets Groups Projects
Commit 1c497f16 authored by Aline Gondim Santos's avatar Aline Gondim Santos Committed by Andreas Traczyk
Browse files

multistream: enable for windows and GNU/Linux platforms

Change-Id: Iaae6944d08304df08c916b4ba901e8530f220824
parent f02603b0
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,11 @@ Account::Account(const std::string& accountID)
, upnpEnabled_(true)
, localModeratorsEnabled_(true)
, allModeratorsEnabled_(true)
#if (defined(__linux__) and not defined(__ANDROID__)) || defined(WIN32)
, multiStreamEnabled_(true)
#else
, multiStreamEnabled_(false)
#endif
, iceCompIdRfc5245Compliant_(false)
{
// Initialize the codec order, used when creating a new account
......
......@@ -566,8 +566,8 @@ protected:
bool localModeratorsEnabled_;
bool allModeratorsEnabled_;
bool multiStreamEnabled_;
bool iceCompIdRfc5245Compliant_;
bool multiStreamEnabled_ {false};
bool iceCompIdRfc5245Compliant_ {false};
/**
* private account codec searching functions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment