mirror of
https://github.com/rofafor/vdr-plugin-iptv.git
synced 2023-10-10 13:37:03 +02:00
19 lines
347 B
C
19 lines
347 B
C
/*
|
|
* config.c: IPTV plugin for the Video Disk Recorder
|
|
*
|
|
* See the README file for copyright information and how to reach the author.
|
|
*
|
|
* $Id: config.c,v 1.2 2007/09/15 21:27:00 rahrenbe Exp $
|
|
*/
|
|
|
|
#include "common.h"
|
|
#include "config.h"
|
|
|
|
cIptvConfig IptvConfig;
|
|
|
|
cIptvConfig::cIptvConfig(void)
|
|
: bufferSizeMB(8),
|
|
bufferPrefillRatio(0)
|
|
{
|
|
}
|