mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
Decreased TS buffer timeouts to 10ms.
This commit is contained in:
parent
e6e185cbd7
commit
9b88c0d55f
2
HISTORY
2
HISTORY
@ -85,3 +85,5 @@ VDR Plugin 'satip' Revision History
|
|||||||
- Refactored tuner implementation.
|
- Refactored tuner implementation.
|
||||||
- Updated against SAT>IP protocol specification
|
- Updated against SAT>IP protocol specification
|
||||||
version 1.2.1.
|
version 1.2.1.
|
||||||
|
- Added plenty of performance tweaks (Thanks to
|
||||||
|
Stefan Schallenberg).
|
||||||
|
2
device.c
2
device.c
@ -29,7 +29,7 @@ cSatipDevice::cSatipDevice(unsigned int indexP)
|
|||||||
tsBufferM = new cRingBufferLinear(bufsize + 1, TS_SIZE, false,
|
tsBufferM = new cRingBufferLinear(bufsize + 1, TS_SIZE, false,
|
||||||
*cString::sprintf("SAT>IP TS %d", deviceIndexM));
|
*cString::sprintf("SAT>IP TS %d", deviceIndexM));
|
||||||
if (tsBufferM) {
|
if (tsBufferM) {
|
||||||
tsBufferM->SetTimeouts(100, 100);
|
tsBufferM->SetTimeouts(10, 10);
|
||||||
tsBufferM->SetIoThrottle();
|
tsBufferM->SetIoThrottle();
|
||||||
pTunerM = new cSatipTuner(*this, tsBufferM->Free());
|
pTunerM = new cSatipTuner(*this, tsBufferM->Free());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user