summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Steinhaus <hsteinhaus@gmx.de>2015-11-12 09:22:32 +0100
committerHolger Steinhaus <hsteinhaus@gmx.de>2015-11-12 09:22:32 +0100
commit461afe293abb199d8b84c8976b69f114c115c8ab (patch)
tree54d361d955cf342dd15bd7a032adbdffbd384d1a
parentc6f1ec91cbf6f608493bd61f1f508d9e045f9339 (diff)
downloadvdr-plugin-mcli-461afe293abb199d8b84c8976b69f114c115c8ab.tar.gz
vdr-plugin-mcli-461afe293abb199d8b84c8976b69f114c115c8ab.tar.bz2
Revert "increased TS buffer from 4 to 16MB to mitigate stream corruptions on slow systems"
This reverts commit 2baa295a6fa561d012785b36387ed07cf914cd8d.
-rw-r--r--device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/device.c b/device.c
index 676750e..92405dc 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(16), TS_SIZE, false, "MCLI_TS");
+ m_PB = new cRingBufferLinear(MEGABYTE(4), TS_SIZE, false, "MCLI_TS");
m_PB->SetTimeouts (0, 100);
delivered = false;
#else