diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-03-12 13:09:30 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-03-12 13:09:30 +0100 |
commit | 11cca8015c0c1b66a9a4bb9255ab0b1183cca529 (patch) | |
tree | c8d400dfda1f60dac1c46deaa1e266fac1f41156 /dvbsubtitle.h | |
parent | 39c0065fe09d07a2248fd46d6a0f4f1d64ff369f (diff) | |
download | vdr-11cca8015c0c1b66a9a4bb9255ab0b1183cca529.tar.gz vdr-11cca8015c0c1b66a9a4bb9255ab0b1183cca529.tar.bz2 |
Now storing the original display size when handling DVB subtitles
Diffstat (limited to 'dvbsubtitle.h')
-rw-r--r-- | dvbsubtitle.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/dvbsubtitle.h b/dvbsubtitle.h index 68886610..69572b49 100644 --- a/dvbsubtitle.h +++ b/dvbsubtitle.h @@ -6,7 +6,7 @@ * * Original author: Marco Schlüßler <marco@lordzodiac.de> * - * $Id: dvbsubtitle.h 2.3 2010/05/13 14:43:44 kls Exp $ + * $Id: dvbsubtitle.h 2.4 2011/03/12 13:07:59 kls Exp $ */ #ifndef __DVBSUBTITLE_H @@ -29,8 +29,10 @@ private: int ddsVersionNumber; int displayWidth; int displayHeight; - int displayHorizontalOffset; - int displayVerticalOffset; + int windowHorizontalOffset; + int windowVerticalOffset; + int windowWidth; + int windowHeight; cList<cDvbSubtitlePage> *pages; cList<cDvbSubtitleBitmaps> *bitmaps; tColor yuv2rgb(int Y, int Cb, int Cr); |