summaryrefslogtreecommitdiff
path: root/common.c
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-02-08 15:34:38 +0000
committerlordjaxom <lordjaxom>2005-02-08 15:34:38 +0000
commit0132230de0a894c4bf40dced2b82ea60546b9a61 (patch)
treeb5b884fc27dd5cfcf4b6dd29d043796985dbe0ab /common.c
parent916ed238bca58539835c4ee769ce8ddd9f5456d7 (diff)
downloadvdr-plugin-streamdev-0132230de0a894c4bf40dced2b82ea60546b9a61.tar.gz
vdr-plugin-streamdev-0132230de0a894c4bf40dced2b82ea60546b9a61.tar.bz2
- transfer
Diffstat (limited to 'common.c')
-rw-r--r--common.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/common.c b/common.c
index af80c6e..b615fec 100644
--- a/common.c
+++ b/common.c
@@ -1,5 +1,5 @@
/*
- * $Id: common.c,v 1.1 2004/12/30 22:43:55 lordjaxom Exp $
+ * $Id: common.c,v 1.2 2005/02/08 15:34:38 lordjaxom Exp $
*/
#include <vdr/channels.h>
@@ -18,6 +18,7 @@ const char *StreamTypes[st_Count] = {
"PES",
"PS",
"ES",
+ "", // used internally only
};
const char *SuspendModes[sm_Count] = {
@@ -118,7 +119,7 @@ void cStreamdevMenuSetupPage::AddSuspEdit(const char *Title, int &Value) {
Add(new cMenuEditStraItem(Title, &Value, sm_Count, SuspendModesTR));
}
void cStreamdevMenuSetupPage::AddTypeEdit(const char *Title, int &Value) {
- Add(new cMenuEditStraItem(Title, &Value, st_Count, StreamTypes));
+ Add(new cMenuEditStraItem(Title, &Value, st_CountSetup, StreamTypes));
}
cMenuEditIpItem::cMenuEditIpItem(const char *Name, char *Value):