diff options
author | Johns <johns98@gmx.net> | 2012-02-22 15:06:05 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-02-22 15:06:05 +0100 |
commit | 6ce760ccd807545ff77722baca338c4d56833608 (patch) | |
tree | 97044fe27a65d5bcfe50f412a13455e84af52909 /video.c | |
parent | 2f869884baa4f7487196fc73922437effa7c5d71 (diff) | |
download | vdr-plugin-softhddevice-6ce760ccd807545ff77722baca338c4d56833608.tar.gz vdr-plugin-softhddevice-6ce760ccd807545ff77722baca338c4d56833608.tar.bz2 |
60Hz display mode configurable with setup.conf.
Diffstat (limited to 'video.c')
-rw-r--r-- | video.c | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -8914,6 +8914,17 @@ int VideoSetGeometry(const char *geometry) return 0; } +/// Set 60hz display mode. +/// +/// Pull up 50 Hz video for 60 Hz display. +/// +/// @param onoff enable / disable the 60 Hz mode. +/// +void VideoSet60HzMode(int onoff) +{ + Video60HzMode = onoff; +} + /// /// Set video output position. /// |