2007-09-15 17:38:38 +02:00
|
|
|
/*
|
|
|
|
* config.c: IPTV plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
2007-09-30 23:38:31 +02:00
|
|
|
* $Id: config.c,v 1.11 2007/09/30 21:38:31 rahrenbe Exp $
|
2007-09-15 17:38:38 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
cIptvConfig IptvConfig;
|
|
|
|
|
|
|
|
cIptvConfig::cIptvConfig(void)
|
2007-09-28 18:44:59 +02:00
|
|
|
: readBufferTsCount(48),
|
|
|
|
tsBufferSize(2),
|
2007-09-30 23:38:31 +02:00
|
|
|
tsBufferPrefillRatio(0),
|
|
|
|
sectionFiltering(1),
|
|
|
|
sidScanning(1)
|
2007-09-15 17:38:38 +02:00
|
|
|
{
|
|
|
|
}
|