diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2009-06-01 14:56:28 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2009-06-01 14:56:28 +0200 |
commit | e639e3a76ad6c8d721ab3f827bd7b3847e351c05 (patch) | |
tree | 38ea5b358c89084d581071a189692b8b26c3283f /device.c | |
parent | 78d2fd3d0e2a69c27581afe710f5598862a750be (diff) | |
download | vdr-e639e3a76ad6c8d721ab3f827bd7b3847e351c05.tar.gz vdr-e639e3a76ad6c8d721ab3f827bd7b3847e351c05.tar.bz2 |
Improved cDvbDevice::GetOsdSize()
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 2.19 2009/05/09 10:02:58 kls Exp $ + * $Id: device.c 2.20 2009/06/01 14:08:45 kls Exp $ */ #include "device.h" @@ -389,11 +389,11 @@ eVideoSystem cDevice::GetVideoSystem(void) return vsPAL; } -void cDevice::GetVideoSize(int &Width, int &Height, eVideoAspect &Aspect) +void cDevice::GetVideoSize(int &Width, int &Height, double &Aspect) { Width = 0; Height = 0; - Aspect = va4_3; + Aspect = 1.0; } void cDevice::GetOsdSize(int &Width, int &Height, double &Aspect) |