summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Steinhaus <hsteinhaus@gmx.de>2015-09-11 18:21:22 +0200
committerHolger Steinhaus <hsteinhaus@gmx.de>2015-09-11 18:21:22 +0200
commit2baa295a6fa561d012785b36387ed07cf914cd8d (patch)
treeb04136322f7074df795f9eb5e30c1c45c4e2418d
parent907338bb5d562a455d9e8cfa375c576bd24450f1 (diff)
downloadvdr-plugin-mcli-2baa295a6fa561d012785b36387ed07cf914cd8d.tar.gz
vdr-plugin-mcli-2baa295a6fa561d012785b36387ed07cf914cd8d.tar.bz2
increased TS buffer from 4 to 16MB to mitigate stream corruptions on slow systems
-rw-r--r--device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/device.c b/device.c
index 932d26f..e481810 100644
--- a/device.c
+++ b/device.c
@@ -60,7 +60,7 @@ cMcliDevice::cMcliDevice (void)
StartSectionHandler ();
#ifdef USE_VDR_PACKET_BUFFER
//printf ("Mcli::%s: USING VDR PACKET BUFFER \n", __FUNCTION__);
- m_PB = new cRingBufferLinear(MEGABYTE(4), TS_SIZE, false, "MCLI_TS");
+ m_PB = new cRingBufferLinear(MEGABYTE(16), TS_SIZE, false, "MCLI_TS");
m_PB->SetTimeouts (0, 100);
delivered = false;
#else