diff options
Diffstat (limited to 'command/global.h')
-rw-r--r-- | command/global.h | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/command/global.h b/command/global.h index bfd4703..51da106 100644 --- a/command/global.h +++ b/command/global.h @@ -86,11 +86,22 @@ typedef struct MarkAdPos char *CommentAfter; } MarkAdPos; +typedef struct MarkAdAspectRatio +{ + int Num; + int Den; +} MarkAdAspectRatio; + typedef struct MarkAdMark { char Type; int Position; - char *Comment; + int ChannelsBefore; + int ChannelsAfter; + MarkAdAspectRatio AspectRatioBefore; + MarkAdAspectRatio AspectRatioAfter; + bool VerticalBorders; + bool Assumed; } MarkAdMark; typedef struct MarkAdMarks @@ -100,12 +111,6 @@ typedef struct MarkAdMarks int Count; } MarkAdMarks; -typedef struct MarkAdAspectRatio -{ - int Num; - int Den; -} MarkAdAspectRatio; - #define MARKAD_PIDTYPE_VIDEO_H262 0x10 #define MARKAD_PIDTYPE_VIDEO_H264 0x11 #define MARKAD_PIDTYPE_AUDIO_AC3 0x20 |