diff options
author | Jochen Dolze <vdr@dolze.de> | 2010-10-07 20:27:51 +0200 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2010-10-07 20:27:51 +0200 |
commit | c84d6dba338bc863f0cb64f13b08ef87b65eba65 (patch) | |
tree | 808806f210823da5e3a5dc0d9584681670c85b02 /command/global.h | |
parent | 8cf797691409510a1957156d9d2c9cfa104ef6b4 (diff) | |
download | vdr-plugin-markad-c84d6dba338bc863f0cb64f13b08ef87b65eba65.tar.gz vdr-plugin-markad-c84d6dba338bc863f0cb64f13b08ef87b65eba65.tar.bz2 |
Added support for totally broken info files
Code cleanups
Diffstat (limited to 'command/global.h')
-rw-r--r-- | command/global.h | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/command/global.h b/command/global.h index 71016e0..8062cf9 100644 --- a/command/global.h +++ b/command/global.h @@ -30,23 +30,27 @@ typedef unsigned char uchar; #define MT_COMMONSTART 0x11 #define MT_COMMONSTOP 0x12 -#define MT_ASPECTCHANGE 0x20 -#define MT_ASPECTSTART 0x21 -#define MT_ASPECTSTOP 0x22 +#define MT_ASSUMED 0x20 +#define MT_ASSUMEDSTART 0x21 +#define MT_ASSUMEDSTOP 0x22 -#define MT_CHANNELCHANGE 0x30 -#define MT_CHANNELSTART 0x31 -#define MT_CHANNELSTOP 0x32 +#define MT_ASPECTCHANGE 0x30 +#define MT_ASPECTSTART 0x31 +#define MT_ASPECTSTOP 0x32 -#define MT_LOGOCHANGE 0x40 -#define MT_LOGOSTART 0x41 -#define MT_LOGOSTOP 0x42 +#define MT_CHANNELCHANGE 0x40 +#define MT_CHANNELSTART 0x41 +#define MT_CHANNELSTOP 0x42 -#define MT_BORDERCHANGE 0x50 -#define MT_BORDERSTART 0x51 -#define MT_BORDERSTOP 0x52 +#define MT_LOGOCHANGE 0x50 +#define MT_LOGOSTART 0x51 +#define MT_LOGOSTOP 0x52 -#define MT_SILENCECHANGE 0x60 +#define MT_BORDERCHANGE 0x60 +#define MT_BORDERSTART 0x61 +#define MT_BORDERSTOP 0x62 + +#define MT_SILENCECHANGE 0x90 #define MT_MOVED 0xE0 #define MT_ALL 0xFF |