diff options
Diffstat (limited to 'command/global.h')
-rw-r--r-- | command/global.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/command/global.h b/command/global.h index e7cc76c..30c5896 100644 --- a/command/global.h +++ b/command/global.h @@ -95,6 +95,13 @@ typedef struct MarkAdMark char *Comment; } MarkAdMark; +typedef struct MarkAdMarks +{ + static const int maxCount=4; + MarkAdMark Number[maxCount]; + int Count; +} MarkAdMarks; + typedef struct MarkAdAspectRatio { int Num; @@ -119,6 +126,7 @@ typedef struct MarkAdContext struct Info { int Length; // in seconds + int Channels; char *ChannelName; MarkAdAspectRatio AspectRatio; MarkAdPid VPid; @@ -157,7 +165,7 @@ typedef struct MarkAdContext { struct Info { - bool DolbyDigital51; + //bool DolbyDigital51; int Channels; // number of audio channels int SampleRate; } Info; |