diff options
author | phintuka <phintuka> | 2009-05-03 20:37:48 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-05-03 20:37:48 +0000 |
commit | d372b890bd231b81d4e4808c69c8ab98f4ccaa3a (patch) | |
tree | 79a6aa88eaef651d1c72250cdd80d03066a16a70 | |
parent | 8c634f4462b14e1c02a94427c0aeac46968338a5 (diff) | |
download | xineliboutput-d372b890bd231b81d4e4808c69c8ab98f4ccaa3a.tar.gz xineliboutput-d372b890bd231b81d4e4808c69c8ab98f4ccaa3a.tar.bz2 |
vdr-1.7.7: GetVideoSize().
Replace default size with 720x576.
-rw-r--r-- | device.c | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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 |