diff options
Diffstat (limited to 'command/global.h')
-rw-r--r-- | command/global.h | 48 |
1 files changed, 23 insertions, 25 deletions
diff --git a/command/global.h b/command/global.h index d55633f..540d927 100644 --- a/command/global.h +++ b/command/global.h @@ -22,36 +22,35 @@ 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_START 1 +#define MT_STOP 2 -#define MT_COMMON 0x10 -#define MT_COMMONSTART 0x11 -#define MT_COMMONSTOP 0x12 +#define MT_ASSUMED 0x10 +#define MT_ASSUMEDSTART 0x11 +#define MT_ASSUMEDSTOP 0x12 -#define MT_ASSUMED 0x20 -#define MT_ASSUMEDSTART 0x21 -#define MT_ASSUMEDSTOP 0x22 +#define MT_LOGOCHANGE 0x20 +#define MT_LOGOSTART 0x21 +#define MT_LOGOSTOP 0x22 -#define MT_LOGOCHANGE 0x30 -#define MT_LOGOSTART 0x31 -#define MT_LOGOSTOP 0x32 +#define MT_HBORDERCHANGE 0x30 +#define MT_HBORDERSTART 0x31 +#define MT_HBORDERSTOP 0x32 -#define MT_BORDERCHANGE 0x40 -#define MT_BORDERSTART 0x41 -#define MT_BORDERSTOP 0x42 +#define MT_VBORDERCHANGE 0x40 +#define MT_VBORDERSTART 0x41 +#define MT_VBORDERSTOP 0x42 -#define MT_ASPECTCHANGE 0x50 -#define MT_ASPECTSTART 0x51 -#define MT_ASPECTSTOP 0x52 +#define MT_ASPECTCHANGE 0x50 +#define MT_ASPECTSTART 0x51 +#define MT_ASPECTSTOP 0x52 -#define MT_CHANNELCHANGE 0x60 -#define MT_CHANNELSTART 0x61 -#define MT_CHANNELSTOP 0x62 +#define MT_CHANNELCHANGE 0x60 +#define MT_CHANNELSTART 0x61 +#define MT_CHANNELSTOP 0x62 -#define MT_MOVED 0xE0 -#define MT_ALL 0xFF +#define MT_MOVED 0xE0 +#define MT_ALL 0xFF typedef struct config { @@ -76,6 +75,7 @@ typedef struct config bool Before; bool GenIndex; bool AC3Always; + bool SaveInfo; } MarkAdConfig; typedef struct MarkAdPos @@ -98,8 +98,6 @@ typedef struct MarkAdMark int ChannelsAfter; MarkAdAspectRatio AspectRatioBefore; MarkAdAspectRatio AspectRatioAfter; - bool VerticalBorders; - bool Assumed; } MarkAdMark; typedef struct MarkAdMarks |