diff options
author | Johns <johns98@gmx.net> | 2013-01-01 14:48:51 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2013-01-01 14:48:51 +0100 |
commit | acf377ec601f4a7b904e7aa85e9ef48ed5231e45 (patch) | |
tree | 6419446a3491d2fa10d1b62393598086de84609e /video.h | |
parent | 87c1c7be84a4606fc2af9b6bc298b4525e4e35d6 (diff) | |
download | vdr-plugin-softhddevice-acf377ec601f4a7b904e7aa85e9ef48ed5231e45.tar.gz vdr-plugin-softhddevice-acf377ec601f4a7b904e7aa85e9ef48ed5231e45.tar.bz2 |
Makes 4:3 and 16:9 display format configurable.
Don't use DVB display format.
Diffstat (limited to 'video.h')
-rw-r--r-- | video.h | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,7 +1,7 @@ /// /// @file video.h @brief Video module header file /// -/// Copyright (c) 2009 - 2012 by Johns. All Rights Reserved. +/// Copyright (c) 2009 - 2013 by Johns. All Rights Reserved. /// /// Contributor(s): /// @@ -115,8 +115,11 @@ extern void VideoSetOutputPosition(int, int, int, int); /// Set video mode. extern void VideoSetVideoMode(int, int, int, int); - /// Set display format. -extern void VideoSetDisplayFormat(int); + /// Set 4:3 display format. +extern void VideoSet4to3DisplayFormat(int); + + /// Set other display format. +extern void VideoSetOtherDisplayFormat(int); /// Set video fullscreen mode. extern void VideoSetFullscreen(int); |