mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-02-18 15:04:53 -05:00
UI: Fix preprocessor directives for platform integrations
The macros `YOUTUBE_ENABLED`, `RESTREAM_ENABLED`, and `TWITCH_ENABLED`
are not defined when the associated features are not enabled.
When the code was originally implemented, there were definitions to set
`0` if the feature is disabled. However a later commit 349372b removes
the definition. Now, the use of `#ifdef` is better than just `#if`.
This commit is contained in:
committed by
Ryan Foster
parent
8789c43959
commit
39d4b53f6b
@@ -19,7 +19,7 @@
|
||||
|
||||
#include "auth-oauth.hpp"
|
||||
#include "ui-config.h"
|
||||
#if YOUTUBE_ENABLED
|
||||
#ifdef YOUTUBE_ENABLED
|
||||
#include "youtube-api-wrappers.hpp"
|
||||
#endif
|
||||
|
||||
@@ -355,7 +355,7 @@ bool AutoConfigStreamPage::validatePage()
|
||||
} else {
|
||||
/* Default test target is 10 Mbps */
|
||||
bitrate = 10000;
|
||||
#if YOUTUBE_ENABLED
|
||||
#ifdef YOUTUBE_ENABLED
|
||||
if (IsYouTubeService(wiz->serviceName)) {
|
||||
/* Adjust upper bound to YouTube limits
|
||||
* for resolutions above 1080p */
|
||||
@@ -394,7 +394,7 @@ bool AutoConfigStreamPage::validatePage()
|
||||
if (!wiz->customServer) {
|
||||
if (wiz->serviceName == "Twitch")
|
||||
wiz->service = AutoConfig::Service::Twitch;
|
||||
#if YOUTUBE_ENABLED
|
||||
#ifdef YOUTUBE_ENABLED
|
||||
else if (IsYouTubeService(wiz->serviceName))
|
||||
wiz->service = AutoConfig::Service::YouTube;
|
||||
#endif
|
||||
@@ -450,7 +450,7 @@ void AutoConfigStreamPage::OnOAuthStreamKeyConnected()
|
||||
ui->connectedAccountLabel->setVisible(false);
|
||||
ui->connectedAccountText->setVisible(false);
|
||||
|
||||
#if YOUTUBE_ENABLED
|
||||
#ifdef YOUTUBE_ENABLED
|
||||
if (IsYouTubeService(a->service())) {
|
||||
ui->key->clear();
|
||||
|
||||
@@ -567,7 +567,7 @@ static inline bool is_external_oauth(const std::string &service)
|
||||
|
||||
void AutoConfigStreamPage::reset_service_ui_fields(std::string &service)
|
||||
{
|
||||
#if YOUTUBE_ENABLED
|
||||
#ifdef YOUTUBE_ENABLED
|
||||
// when account is already connected:
|
||||
OAuthStreamKey *a = reinterpret_cast<OAuthStreamKey *>(auth.get());
|
||||
if (a && service == a->service() && IsYouTubeService(a->service())) {
|
||||
@@ -660,7 +660,7 @@ void AutoConfigStreamPage::ServiceChanged()
|
||||
auto system_auth_service = main->auth->service();
|
||||
bool service_check = service.find(system_auth_service) !=
|
||||
std::string::npos;
|
||||
#if YOUTUBE_ENABLED
|
||||
#ifdef YOUTUBE_ENABLED
|
||||
service_check =
|
||||
service_check ? service_check
|
||||
: IsYouTubeService(system_auth_service) &&
|
||||
@@ -1083,7 +1083,7 @@ void AutoConfig::SaveStreamSettings()
|
||||
if (!customServer)
|
||||
obs_data_set_string(settings, "service", serviceName.c_str());
|
||||
obs_data_set_string(settings, "server", server.c_str());
|
||||
#if YOUTUBE_ENABLED
|
||||
#ifdef YOUTUBE_ENABLED
|
||||
if (!IsYouTubeService(serviceName))
|
||||
obs_data_set_string(settings, "key", key.c_str());
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user