From d372b890bd231b81d4e4808c69c8ab98f4ccaa3a Mon Sep 17 00:00:00 2001 From: phintuka Date: Sun, 3 May 2009 20:37:48 +0000 Subject: vdr-1.7.7: GetVideoSize(). Replace default size with 720x576. --- device.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/device.c b/device.c index ef3bd396..9bedfe2e 100644 --- a/device.c +++ b/device.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: device.c,v 1.77 2009-05-03 20:25:59 phintuka Exp $ + * $Id: device.c,v 1.78 2009-05-03 20:37:48 phintuka Exp $ * */ @@ -1504,6 +1504,14 @@ eVideoSystem cXinelibDevice::GetVideoSystem(void) return cDevice::GetVideoSystem(); } +#if VDRVERSNUM >= 10707 +void cXinelibDevice::GetVideoSize(int &Width, int &Height, eVideoAspect &Aspect) +{ + Width = 720; + Height = 576; + Aspect = va4_3; +} +#endif // // SPU decoder -- cgit v1.2.3