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.
46 lines
687 B
C++
46 lines
687 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$
|
|
*/
|
|
|
|
#ifndef __FEMONCFG_H
|
|
#define __FEMONCFG_H
|
|
|
|
#ifdef DEBUG
|
|
#define debug(x) (x);
|
|
#else
|
|
#define debug(x) ;
|
|
#endif
|
|
|
|
enum dispModes {
|
|
modeBasic,
|
|
modeTransponder,
|
|
modeStream,
|
|
modeAC3,
|
|
modeMaxNumber
|
|
};
|
|
|
|
struct cFemonConfig
|
|
{
|
|
public:
|
|
cFemonConfig(void);
|
|
int hidemenu;
|
|
int displaymode;
|
|
int position;
|
|
int redlimit;
|
|
int greenlimit;
|
|
int updateinterval;
|
|
int analyzestream;
|
|
int calcinterval;
|
|
int syslogoutput;
|
|
int showcasystem;
|
|
int osdheight;
|
|
};
|
|
|
|
extern cFemonConfig femonConfig;
|
|
|
|
#endif // __FEMONCFG_H
|