mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
6f9961f499
Added DEBUG mode (make DEBUG=1 plugins). OSD height is now user configurable. Added audio channel selection into Yellow key.
31 lines
552 B
C
31 lines
552 B
C
/*
|
|
* Frontend Status Monitor plugin for the Video Disk Recorder
|
|
*
|
|
* 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
|
|
}
|