diff options
author | Jochen Dolze <vdr@dolze.de> | 2010-10-21 00:44:14 +0200 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2010-10-21 00:44:14 +0200 |
commit | 8cf0800ad613a165c07424b84fd84b60b586c6f8 (patch) | |
tree | 5adb123ac54e2405f225ba13d4df85ade52b1a36 /command/global.h | |
parent | 0acaba790948b737a35293e5a9ac91be5de563b0 (diff) | |
download | vdr-plugin-markad-8cf0800ad613a165c07424b84fd84b60b586c6f8.tar.gz vdr-plugin-markad-8cf0800ad613a165c07424b84fd84b60b586c6f8.tar.bz2 |
Added letterbox detection
Improved audiochannel-/aspect-/borderchange detection
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; |