From 7de1748cbaf31337f1f592cc9ee47f7872333f33 Mon Sep 17 00:00:00 2001 From: chriszero Date: Thu, 19 Feb 2015 20:29:12 +0100 Subject: Supporting custom transcoding profile. --- plex.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'plex.cpp') diff --git a/plex.cpp b/plex.cpp index 3707d88..0e40847 100644 --- a/plex.cpp +++ b/plex.cpp @@ -356,6 +356,7 @@ bool cMyPlugin::SetupParse(const char *name, const char *value) //dsyslog("[plex]%s: '%s' = '%s'\n", __FUNCTION__, name, value); if (strcasecmp(name, "HideMainMenuEntry") == 0) Config::GetInstance().HideMainMenuEntry = atoi(value) ? true : false; + else if (strcasecmp(name, "UseCustomTranscodeProfile") == 0) Config::GetInstance().UseCustomTranscodeProfile = atoi(value) ? true : false; else if (strcasecmp(name, "Username") == 0) Config::GetInstance().s_username = std::string(value); else if (strcasecmp(name, "Password") == 0) Config::GetInstance().s_password = std::string(value); else if (strcasecmp(name, "UUID") == 0) Config::GetInstance().SetUUID(value); -- cgit v1.2.3