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/video.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/video.h')
-rw-r--r-- | command/video.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/command/video.h b/command/video.h index 36fdf5f..0d3a0a0 100644 --- a/command/video.h +++ b/command/video.h @@ -141,14 +141,14 @@ class cMarkAdVideo { private: MarkAdContext *macontext; - MarkAdMark mark; + MarkAdMarks marks; MarkAdAspectRatio aspectratio; cMarkAdBlackBordersHoriz *hborder; cMarkAdLogo *logo; cMarkAdOverlap *overlap; - void ResetMark(); + void ResetMarks(); bool AddMark(int Type, int Position, const char *Comment); bool AspectRatioChange(MarkAdAspectRatio *a, MarkAdAspectRatio *b); @@ -158,7 +158,7 @@ public: cMarkAdVideo(MarkAdContext *maContext); ~cMarkAdVideo(); MarkAdPos *Process2ndPass(int FrameNumber, int Frames, bool BeforeAd); - MarkAdMark *Process(int FrameNumber, int FrameNumberNext); + MarkAdMarks *Process(int FrameNumber, int FrameNumberNext); void Clear(); }; |