diff options
author | Holger Steinhaus <hsteinhaus@gmx.de> | 2015-11-12 09:22:32 +0100 |
---|---|---|
committer | Holger Steinhaus <hsteinhaus@gmx.de> | 2015-11-12 09:22:32 +0100 |
commit | 461afe293abb199d8b84c8976b69f114c115c8ab (patch) | |
tree | 54d361d955cf342dd15bd7a032adbdffbd384d1a | |
parent | c6f1ec91cbf6f608493bd61f1f508d9e045f9339 (diff) | |
download | vdr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |