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.c | |
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.c')
-rw-r--r-- | device.c | 7 |
1 files changed, 6 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.c 1.46 2003/08/02 11:44:28 kls Exp $ + * $Id: device.c 1.47 2003/08/15 12:34:36 kls Exp $ */ #include "device.h" @@ -216,6 +216,11 @@ void cDevice::SetVideoFormat(bool VideoFormat16_9) { } +eVideoSystem cDevice::GetVideoSystem(void) +{ + return vsPAL; +} + //#define PRINTPIDS(s) { char b[500]; char *q = b; q += sprintf(q, "%d %s ", CardIndex(), s); for (int i = 0; i < MAXPIDHANDLES; i++) q += sprintf(q, " %s%4d %d", i == ptOther ? "* " : "", pidHandles[i].pid, pidHandles[i].used); dsyslog(b); } #define PRINTPIDS(s) |