2007-09-15 17:38:38 +02:00
|
|
|
/*
|
|
|
|
* config.h: IPTV plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IPTV_CONFIG_H
|
|
|
|
#define __IPTV_CONFIG_H
|
|
|
|
|
|
|
|
#include <vdr/menuitems.h>
|
2007-10-07 22:08:44 +02:00
|
|
|
#include "common.h"
|
2007-09-15 17:38:38 +02:00
|
|
|
|
|
|
|
class cIptvConfig
|
|
|
|
{
|
2007-10-20 00:54:03 +02:00
|
|
|
private:
|
2013-02-23 14:31:11 +01:00
|
|
|
unsigned int tsBufferSizeM;
|
|
|
|
unsigned int tsBufferPrefillRatioM;
|
|
|
|
unsigned int extProtocolBasePortM;
|
|
|
|
unsigned int useBytesM;
|
|
|
|
unsigned int sectionFilteringM;
|
|
|
|
int disabledFiltersM[SECTION_FILTER_TABLE_SIZE];
|
|
|
|
char configDirectoryM[PATH_MAX];
|
2007-09-28 18:44:59 +02:00
|
|
|
|
2007-09-15 17:38:38 +02:00
|
|
|
public:
|
|
|
|
cIptvConfig();
|
2013-02-23 14:31:11 +01:00
|
|
|
unsigned int GetTsBufferSize(void) const { return tsBufferSizeM; }
|
|
|
|
unsigned int GetTsBufferPrefillRatio(void) const { return tsBufferPrefillRatioM; }
|
|
|
|
unsigned int GetExtProtocolBasePort(void) const { return extProtocolBasePortM; }
|
|
|
|
unsigned int GetUseBytes(void) const { return useBytesM; }
|
|
|
|
unsigned int GetSectionFiltering(void) const { return sectionFilteringM; }
|
|
|
|
const char *GetConfigDirectory(void) const { return configDirectoryM; }
|
2008-01-05 00:36:37 +01:00
|
|
|
unsigned int GetDisabledFiltersCount(void) const;
|
2013-02-23 14:31:11 +01:00
|
|
|
int GetDisabledFilters(unsigned int indexP) const;
|
|
|
|
void SetTsBufferSize(unsigned int sizeP) { tsBufferSizeM = sizeP; }
|
|
|
|
void SetTsBufferPrefillRatio(unsigned int ratioP) { tsBufferPrefillRatioM = ratioP; }
|
|
|
|
void SetExtProtocolBasePort(unsigned int portNumberP) { extProtocolBasePortM = portNumberP; }
|
|
|
|
void SetUseBytes(unsigned int onOffP) { useBytesM = onOffP; }
|
|
|
|
void SetSectionFiltering(unsigned int onOffP) { sectionFilteringM = onOffP; }
|
|
|
|
void SetDisabledFilters(unsigned int indexP, int numberP);
|
2007-10-20 00:54:03 +02:00
|
|
|
void SetConfigDirectory(const char *directoryP);
|
2007-09-15 17:38:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern cIptvConfig IptvConfig;
|
|
|
|
|
|
|
|
#endif // __IPTV_CONFIG_H
|