diff options
author | lordjaxom <lordjaxom> | 2005-02-08 15:34:38 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-02-08 15:34:38 +0000 |
commit | 0132230de0a894c4bf40dced2b82ea60546b9a61 (patch) | |
tree | b5b884fc27dd5cfcf4b6dd29d043796985dbe0ab /client/setup.c | |
parent | 916ed238bca58539835c4ee769ce8ddd9f5456d7 (diff) | |
download | vdr-plugin-streamdev-0132230de0a894c4bf40dced2b82ea60546b9a61.tar.gz vdr-plugin-streamdev-0132230de0a894c4bf40dced2b82ea60546b9a61.tar.bz2 |
- transfer
Diffstat (limited to 'client/setup.c')
-rw-r--r-- | client/setup.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/client/setup.c b/client/setup.c index f8f53db..8d7b9cb 100644 --- a/client/setup.c +++ b/client/setup.c @@ -1,5 +1,5 @@ /* - * $Id: setup.c,v 1.1 2004/12/30 22:44:03 lordjaxom Exp $ + * $Id: setup.c,v 1.2 2005/02/08 15:34:38 lordjaxom Exp $ */ #include <vdr/menuitems.h> @@ -13,7 +13,6 @@ cStreamdevClientSetup StreamdevClientSetup; cStreamdevClientSetup::cStreamdevClientSetup(void) { StartClient = false; RemotePort = 2004; - StreamPIDS = true; #if VDRVERSNUM >= 10300 StreamFilters = false; #endif @@ -30,7 +29,6 @@ bool cStreamdevClientSetup::SetupParse(const char *Name, const char *Value) { strcpy(RemoteIp, Value); } else if (strcmp(Name, "RemotePort") == 0) RemotePort = atoi(Value); - else if (strcmp(Name, "StreamPIDS") == 0) StreamPIDS = atoi(Value); #if VDRVERSNUM >= 10300 else if (strcmp(Name, "StreamFilters") == 0) StreamFilters = atoi(Value); #endif @@ -45,7 +43,6 @@ cStreamdevClientMenuSetupPage::cStreamdevClientMenuSetupPage(void) { AddBoolEdit (tr("Start Client"), m_NewSetup.StartClient); AddIpEdit (tr("Remote IP"), m_NewSetup.RemoteIp); AddShortEdit(tr("Remote Port"), m_NewSetup.RemotePort); - AddBoolEdit (tr("MultiPID Streaming"), m_NewSetup.StreamPIDS); #if VDRVERSNUM >= 10300 AddBoolEdit (tr("Filter Streaming"), m_NewSetup.StreamFilters); #endif @@ -70,7 +67,6 @@ void cStreamdevClientMenuSetupPage::Store(void) { else SetupStore("RemoteIp", m_NewSetup.RemoteIp); SetupStore("RemotePort", m_NewSetup.RemotePort); - SetupStore("StreamPIDS", m_NewSetup.StreamPIDS); #if VDRVERSNUM >= 10300 SetupStore("StreamFilters", m_NewSetup.StreamFilters); #endif |