vdr-plugin-femon/femoncfg.c

31 lines
552 B
C
Raw Normal View History

2004-02-15 03:20:00 +01:00
/*
* Frontend Status Monitor plugin for the Video Disk Recorder
2004-02-15 03:20:00 +01:00
*
* See the README file for copyright information and how to reach the author.
*
* $Id$
*/
#include "femoncfg.h"
cFemonConfig femonConfig;
cFemonConfig::cFemonConfig(void)
{
hidemenu = 0;
displaymode = 0;
position = 1;
redlimit = 33;
greenlimit = 66;
updateinterval = 5;
analyzestream = 1;
calcinterval = 20;
syslogoutput = 0;
showcasystem = 0;
#ifdef NTSC_SYSTEM
osdheight = 420;
#else
osdheight = 480;
#endif
2004-02-15 03:20:00 +01:00
}