vdr-plugin-iptv/config.c

24 lines
502 B
C
Raw Normal View History

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-28 00:30:50 +02:00
* $Id: config.c,v 1.6 2007/09/27 22:30:50 rahrenbe Exp $
2007-09-15 17:38:38 +02:00
*/
#include "common.h"
#include "config.h"
cIptvConfig IptvConfig;
cIptvConfig::cIptvConfig(void)
2007-09-28 00:30:50 +02:00
: tsBufferSize(2),
2007-09-16 15:38:20 +02:00
tsBufferPrefillRatio(0),
2007-09-28 00:30:50 +02:00
udpBufferSize(20),
rtpBufferSize(20),
httpBufferSize(20),
fileBufferSize(20),
maxBufferSize(40) // must be bigger than protocol buffer sizes!
2007-09-15 17:38:38 +02:00
{
}