summaryrefslogtreecommitdiff
path: root/command/global.h
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2010-05-15 21:37:48 +0200
committerJochen Dolze <vdr@dolze.de>2010-05-15 21:37:48 +0200
commit9aa6949e5f98e580f91320bb7255f985b5bd6103 (patch)
treef27c7c6f06d662f755a2f04066f0c2844199c46d /command/global.h
parent45a400d45adb2314952eb23dd3a7feb6c4b9526c (diff)
downloadvdr-plugin-markad-9aa6949e5f98e580f91320bb7255f985b5bd6103.tar.gz
vdr-plugin-markad-9aa6949e5f98e580f91320bb7255f985b5bd6103.tar.bz2
Fixed various things
Diffstat (limited to 'command/global.h')
-rw-r--r--command/global.h20
1 files changed, 13 insertions, 7 deletions
diff --git a/command/global.h b/command/global.h
index b1b2748..43e202c 100644
--- a/command/global.h
+++ b/command/global.h
@@ -22,23 +22,29 @@ typedef unsigned char uchar;
#define MA_SP_TYPE 6
#define MA_BI_TYPE 7
+#define MT_UNCERTAIN 0
+#define MT_START 1
+#define MT_STOP 2
+
#define MT_COMMON 0x10
+#define MT_COMMONSTART 0x11
+#define MT_COMMONSTOP 0x12
#define MT_ASPECTCHANGE 0x20
#define MT_ASPECTSTART 0x21
#define MT_ASPECTSTOP 0x22
#define MT_CHANNELCHANGE 0x30
-#define MT_CHANNELSTART 0x30
-#define MT_CHANNELSTOP 0x31
+#define MT_CHANNELSTART 0x31
+#define MT_CHANNELSTOP 0x32
#define MT_LOGOCHANGE 0x40
-#define MT_LOGOSTART 0x40
-#define MT_LOGOSTOP 0x41
+#define MT_LOGOSTART 0x41
+#define MT_LOGOSTOP 0x42
#define MT_BORDERCHANGE 0x50
-#define MT_BORDERSTART 0x50
-#define MT_BORDERSTOP 0x51
+#define MT_BORDERSTART 0x51
+#define MT_BORDERSTOP 0x52
#define MT_SILENCECHANGE 0x60
@@ -47,7 +53,7 @@ typedef unsigned char uchar;
typedef struct MarkAdMark
{
- int Type;
+ char Type;
int Position;
char *Comment;
} MarkAdMark;