mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-19 05:51:16 -04:00
UI: Remove FTL support
This commit is contained in:
@@ -228,9 +228,6 @@ void AutoConfigTestPage::TestBandwidthThread()
|
||||
wiz->serviceName == "Restream.io - RTMP") {
|
||||
string_depad_key(key);
|
||||
key += "?test=true";
|
||||
} else if (wiz->serviceName == "Restream.io - FTL") {
|
||||
string_depad_key(key);
|
||||
key += "?test";
|
||||
}
|
||||
|
||||
obs_data_set_string(service_settings, "service",
|
||||
|
||||
@@ -20,7 +20,6 @@ volatile bool recording_paused = false;
|
||||
volatile bool replaybuf_active = false;
|
||||
volatile bool virtualcam_active = false;
|
||||
|
||||
#define FTL_PROTOCOL "ftl"
|
||||
#define RTMP_PROTOCOL "rtmp"
|
||||
#define SRT_PROTOCOL "srt"
|
||||
#define RIST_PROTOCOL "rist"
|
||||
|
||||
@@ -1501,9 +1501,8 @@ bool OBSBasic::LoadService()
|
||||
if (!service)
|
||||
return false;
|
||||
|
||||
/* Enforce Opus on FTL if needed */
|
||||
if (strcmp(obs_service_get_protocol(service), "FTL") == 0 ||
|
||||
strcmp(obs_service_get_protocol(service), "WHIP") == 0) {
|
||||
/* Enforce Opus on WHIP if needed */
|
||||
if (strcmp(obs_service_get_protocol(service), "WHIP") == 0) {
|
||||
const char *option = config_get_string(
|
||||
basicConfig, "SimpleOutput", "StreamAudioEncoder");
|
||||
if (strcmp(option, "opus") != 0)
|
||||
|
||||
@@ -746,9 +746,6 @@ QString OBSBasicSettings::FindProtocol()
|
||||
server.startsWith("rtmps://"))
|
||||
return QString("RTMPS");
|
||||
|
||||
if (server.startsWith("ftl://"))
|
||||
return QString("FTL");
|
||||
|
||||
if (server.startsWith("srt://"))
|
||||
return QString("SRT");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user