diff options
author | Jochen Dolze <vdr@dolze.de> | 2016-09-25 10:13:45 +0200 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2016-09-25 10:13:45 +0200 |
commit | c3ca6bd8fc34f048499f8915c63c8eba710b89bd (patch) | |
tree | c4e50564b68e3b1aa1cc7119efdf9f76f3f96b19 /command/global.h | |
parent | 74e2a8c5382fa8bfacd12274899112724a1e0d51 (diff) | |
download | vdr-plugin-markad-c3ca6bd8fc34f048499f8915c63c8eba710b89bd.tar.gz vdr-plugin-markad-c3ca6bd8fc34f048499f8915c63c8eba710b89bd.tar.bz2 |
Added new/updated logos: ServusTV, Pro7MAXX, EinsPlus
Updated vertical border detection
Diffstat (limited to 'command/global.h')
-rw-r--r-- | command/global.h | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/command/global.h b/command/global.h index 22cee6a..311d25b 100644 --- a/command/global.h +++ b/command/global.h @@ -22,37 +22,37 @@ typedef unsigned char uchar; #define MA_SP_TYPE 6 #define MA_BI_TYPE 7 -#define MT_START 1 -#define MT_STOP 2 +#define MT_START (unsigned char) 1 +#define MT_STOP (unsigned char) 2 -#define MT_ASSUMED 0x10 -#define MT_ASSUMEDSTART 0x11 -#define MT_ASSUMEDSTOP 0x12 +#define MT_ASSUMED (unsigned char) 0x10 +#define MT_ASSUMEDSTART (unsigned char) 0x11 +#define MT_ASSUMEDSTOP (unsigned char) 0x12 -#define MT_LOGOCHANGE 0x20 -#define MT_LOGOSTART 0x21 -#define MT_LOGOSTOP 0x22 +#define MT_LOGOCHANGE (unsigned char) 0x20 +#define MT_LOGOSTART (unsigned char) 0x21 +#define MT_LOGOSTOP (unsigned char) 0x22 -#define MT_HBORDERCHANGE 0x30 -#define MT_HBORDERSTART 0x31 -#define MT_HBORDERSTOP 0x32 +#define MT_HBORDERCHANGE (unsigned char) 0x30 +#define MT_HBORDERSTART (unsigned char) 0x31 +#define MT_HBORDERSTOP (unsigned char) 0x32 -#define MT_VBORDERCHANGE 0x40 -#define MT_VBORDERSTART 0x41 -#define MT_VBORDERSTOP 0x42 +#define MT_VBORDERCHANGE (unsigned char) 0x40 +#define MT_VBORDERSTART (unsigned char) 0x41 +#define MT_VBORDERSTOP (unsigned char) 0x42 -#define MT_ASPECTCHANGE 0x50 -#define MT_ASPECTSTART 0x51 -#define MT_ASPECTSTOP 0x52 +#define MT_ASPECTCHANGE (unsigned char) 0x50 +#define MT_ASPECTSTART (unsigned char) 0x51 +#define MT_ASPECTSTOP (unsigned char) 0x52 -#define MT_CHANNELCHANGE 0x60 -#define MT_CHANNELSTART 0x61 -#define MT_CHANNELSTOP 0x62 +#define MT_CHANNELCHANGE (unsigned char) 0x60 +#define MT_CHANNELSTART (unsigned char) 0x61 +#define MT_CHANNELSTOP (unsigned char) 0x62 -#define MT_RECORDINGSTART 0xD1 -#define MT_RECORDINGSTOP 0xD2 -#define MT_MOVED 0xE0 -#define MT_ALL 0xFF +#define MT_RECORDINGSTART (unsigned char) 0xD1 +#define MT_RECORDINGSTOP (unsigned char) 0xD2 +#define MT_MOVED (unsigned char) 0xE0 +#define MT_ALL (unsigned char) 0xFF typedef struct config { |