diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2009-05-03 14:15:21 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2009-05-03 14:15:21 +0200 |
commit | f161d1b2fe69d4fcfac37581fa60b5d9ce5ded11 (patch) | |
tree | ff65b9bcb3041e0733ebb1c59bac1203002c5903 /device.h | |
parent | 34b3d467849d0e8192c9cfbd65a630973f602863 (diff) | |
download | vdr-f161d1b2fe69d4fcfac37581fa60b5d9ce5ded11.tar.gz vdr-f161d1b2fe69d4fcfac37581fa60b5d9ce5ded11.tar.bz2 |
OSD sizes in percent; automatic update of OSD size
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.h 2.9 2009/04/05 12:12:44 kls Exp $ + * $Id: device.h 2.10 2009/05/02 12:16:20 kls Exp $ */ #ifndef __DEVICE_H @@ -56,6 +56,13 @@ enum eVideoSystem { vsPAL, vsNTSC }; +enum eVideoAspect { va4_3, + va16_9, + va221_9 + }; + +extern const char *VideoAspectString[]; + enum eVideoDisplayFormat { vdfPanAndScan, vdfLetterBox, vdfCenterCutOut @@ -377,6 +384,9 @@ public: virtual eVideoSystem GetVideoSystem(void); ///< Returns the video system of the currently displayed material ///< (default is PAL). + virtual void GetVideoSize(int &Width, int &Height, eVideoAspect &Aspect); + ///< Returns the With, Height and Aspect ratio of the currently + ///< displayed material. // Track facilities |