mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
increased WRITERBUFSIZE. Has been reported to fix some ringbuffer overflows
(thanks to Lubo Doleel)
This commit is contained in:
parent
cc74cba396
commit
24a1638ddd
@ -189,3 +189,6 @@ Javier Bradineras
|
|||||||
Pekko Tiitto
|
Pekko Tiitto
|
||||||
for providing a git mirror of streamdev's lost CVS repository
|
for providing a git mirror of streamdev's lost CVS repository
|
||||||
for suggesting to use mencoder params -alang and -msglevel in externremux
|
for suggesting to use mencoder params -alang and -msglevel in externremux
|
||||||
|
|
||||||
|
Lubo¨ Dole¸el
|
||||||
|
for suggesting higher buffer sizes to fix some ringbuffer overflows
|
||||||
|
2
HISTORY
2
HISTORY
@ -1,6 +1,8 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
VDR Plugin 'streamdev' Revision History
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
- increased WRITERBUFSIZE. Has been reported to fix some ringbuffer
|
||||||
|
overflows (thanks to Lubo¨ Dole¸el)
|
||||||
- check availability of channel if VTP command TUNE is called without
|
- check availability of channel if VTP command TUNE is called without
|
||||||
prior PROV call (e.g. client side EPG scan)
|
prior PROV call (e.g. client side EPG scan)
|
||||||
- added support for VDR 1.7.19 SignalStrength/SignalQuality
|
- added support for VDR 1.7.19 SignalStrength/SignalQuality
|
||||||
|
@ -18,7 +18,7 @@ class cServerConnection;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define STREAMERBUFSIZE (20000 * TS_SIZE)
|
#define STREAMERBUFSIZE (20000 * TS_SIZE)
|
||||||
#define WRITERBUFSIZE (5000 * TS_SIZE)
|
#define WRITERBUFSIZE (20000 * TS_SIZE)
|
||||||
|
|
||||||
// --- cStreamdevBuffer -------------------------------------------------------
|
// --- cStreamdevBuffer -------------------------------------------------------
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user