diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-08-15 13:05:50 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-08-15 13:05:50 +0200 |
commit | 26ffdd1c8361f714fff78fd746f209f386e6b997 (patch) | |
tree | 8ba5c9cd172cb4c93a17e4ca1c0b3d84d64e7689 /device.h | |
parent | 71283dbeb112e182a39a59734a5ce451934ac581 (diff) | |
download | vdr-26ffdd1c8361f714fff78fd746f209f386e6b997.tar.gz vdr-26ffdd1c8361f714fff78fd746f209f386e6b997.tar.bz2 |
Fixed scaling SPU bitmaps in Letterbox mode when playing NTSC material
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 9 |
1 files changed, 8 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 1.33 2003/05/11 08:50:04 kls Exp $ + * $Id: device.h 1.34 2003/08/15 13:05:50 kls Exp $ */ #ifndef __DEVICE_H @@ -45,6 +45,10 @@ enum ePlayMode { pmNone, // audio/video from decoder // KNOWN TO YOUR PLAYER. }; +enum eVideoSystem { vsPAL, + vsNTSC + }; + class cOsdBase; class cChannel; class cPlayer; @@ -248,6 +252,9 @@ public: virtual void SetVideoFormat(bool VideoFormat16_9); ///< Sets the output video format to either 16:9 or 4:3 (only useful ///< if this device has an MPEG decoder). + virtual eVideoSystem GetVideoSystem(void); + ///< Returns the video system of the currently displayed material + ///< (default is PAL). // Audio facilities |