2014-03-08 12:07:47 +01:00
|
|
|
/*
|
|
|
|
* config.h: SAT>IP plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SATIP_CONFIG_H
|
|
|
|
#define __SATIP_CONFIG_H
|
|
|
|
|
|
|
|
#include <vdr/menuitems.h>
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
class cSatipConfig
|
|
|
|
{
|
|
|
|
private:
|
2014-03-10 20:21:08 +01:00
|
|
|
unsigned int operatingModeM;
|
2014-03-08 12:07:47 +01:00
|
|
|
unsigned int eitScanM;
|
|
|
|
unsigned int useBytesM;
|
|
|
|
int disabledFiltersM[SECTION_FILTER_TABLE_SIZE];
|
|
|
|
char configDirectoryM[PATH_MAX];
|
|
|
|
|
|
|
|
public:
|
2014-03-10 20:21:08 +01:00
|
|
|
enum {
|
2014-03-13 17:23:55 +01:00
|
|
|
eOperatingModeOff = 0,
|
|
|
|
eOperatingModeLow,
|
|
|
|
eOperatingModeNormal,
|
|
|
|
eOperatingModeHigh,
|
|
|
|
eOperatingModeCount
|
2014-03-10 20:21:08 +01:00
|
|
|
};
|
2014-03-08 12:07:47 +01:00
|
|
|
cSatipConfig();
|
2014-03-10 20:21:08 +01:00
|
|
|
unsigned int GetOperatingMode(void) const { return operatingModeM; }
|
2014-03-13 17:23:55 +01:00
|
|
|
bool IsOperatingModeOff(void) const { return (operatingModeM == eOperatingModeOff); }
|
|
|
|
bool IsOperatingModeLow(void) const { return (operatingModeM == eOperatingModeLow); }
|
|
|
|
bool IsOperatingModeNormal(void) const { return (operatingModeM == eOperatingModeNormal); }
|
|
|
|
bool IsOperatingModeHigh(void) const { return (operatingModeM == eOperatingModeHigh); }
|
|
|
|
void ToggleOperatingMode(void) { operatingModeM = (operatingModeM + 1) % eOperatingModeCount; }
|
2014-03-08 12:07:47 +01:00
|
|
|
unsigned int GetEITScan(void) const { return eitScanM; }
|
|
|
|
unsigned int GetUseBytes(void) const { return useBytesM; }
|
|
|
|
const char *GetConfigDirectory(void) const { return configDirectoryM; }
|
|
|
|
unsigned int GetDisabledFiltersCount(void) const;
|
|
|
|
int GetDisabledFilters(unsigned int indexP) const;
|
|
|
|
|
2014-03-10 20:21:08 +01:00
|
|
|
void SetOperatingMode(unsigned int operatingModeP) { operatingModeM = operatingModeP; }
|
2014-03-08 12:07:47 +01:00
|
|
|
void SetEITScan(unsigned int onOffP) { eitScanM = onOffP; }
|
|
|
|
void SetUseBytes(unsigned int onOffP) { useBytesM = onOffP; }
|
|
|
|
void SetConfigDirectory(const char *directoryP);
|
|
|
|
void SetDisabledFilters(unsigned int indexP, int numberP);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern cSatipConfig SatipConfig;
|
|
|
|
|
|
|
|
#endif // __SATIP_CONFIG_H
|