Decreased TS buffer timeouts to 10ms.

This commit is contained in:
Rolf Ahrenberg 2014-12-01 18:12:12 +02:00
parent e6e185cbd7
commit 9b88c0d55f
2 changed files with 3 additions and 1 deletions

View File

@ -85,3 +85,5 @@ VDR Plugin 'satip' Revision History
- Refactored tuner implementation.
- Updated against SAT>IP protocol specification
version 1.2.1.
- Added plenty of performance tweaks (Thanks to
Stefan Schallenberg).

View File

@ -29,7 +29,7 @@ cSatipDevice::cSatipDevice(unsigned int indexP)
tsBufferM = new cRingBufferLinear(bufsize + 1, TS_SIZE, false,
*cString::sprintf("SAT>IP TS %d", deviceIndexM));
if (tsBufferM) {
tsBufferM->SetTimeouts(100, 100);
tsBufferM->SetTimeouts(10, 10);
tsBufferM->SetIoThrottle();
pTunerM = new cSatipTuner(*this, tsBufferM->Free());
}