summaryrefslogtreecommitdiff
path: root/dvbsubtitle.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-03-20 15:19:28 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2011-03-20 15:19:28 +0100
commitd7d57c3d2ab37677a397ec8338daf26041439e0f (patch)
tree0fee6e8fa74ad8299781f34f17b79134f1b0eae5 /dvbsubtitle.h
parent31d4abab378d5b069ef02584617858c7c7f3bfe5 (diff)
downloadvdr-d7d57c3d2ab37677a397ec8338daf26041439e0f.tar.gz
vdr-d7d57c3d2ab37677a397ec8338daf26041439e0f.tar.bz2
Fixed horizontal scaling of subtitles
Diffstat (limited to 'dvbsubtitle.h')
-rw-r--r--dvbsubtitle.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/dvbsubtitle.h b/dvbsubtitle.h
index 6e717659..1139b800 100644
--- a/dvbsubtitle.h
+++ b/dvbsubtitle.h
@@ -6,7 +6,7 @@
*
* Original author: Marco Schlüßler <marco@lordzodiac.de>
*
- * $Id: dvbsubtitle.h 2.5 2011/03/12 14:03:42 kls Exp $
+ * $Id: dvbsubtitle.h 2.6 2011/03/20 15:10:30 kls Exp $
*/
#ifndef __DVBSUBTITLE_H
@@ -35,7 +35,8 @@ private:
int windowHeight;
int osdDeltaX;
int osdDeltaY;
- double osdFactor;
+ double osdFactorX;
+ double osdFactorY;
cList<cDvbSubtitlePage> *pages;
cList<cDvbSubtitleBitmaps> *bitmaps;
tColor yuv2rgb(int Y, int Cb, int Cr);