increased WRITERBUFSIZE. Has been reported to fix some ringbuffer overflows

(thanks to Lubo Doleel)
This commit is contained in:
Frank Schmirler 2011-09-02 13:18:01 +02:00
parent cc74cba396
commit 24a1638ddd
3 changed files with 6 additions and 1 deletions

View File

@ -189,3 +189,6 @@ Javier Bradineras
Pekko Tiitto
for providing a git mirror of streamdev's lost CVS repository
for suggesting to use mencoder params -alang and -msglevel in externremux
Lubo¨ Dole¸el
for suggesting higher buffer sizes to fix some ringbuffer overflows

View File

@ -1,6 +1,8 @@
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
prior PROV call (e.g. client side EPG scan)
- added support for VDR 1.7.19 SignalStrength/SignalQuality

View File

@ -18,7 +18,7 @@ class cServerConnection;
#endif
#define STREAMERBUFSIZE (20000 * TS_SIZE)
#define WRITERBUFSIZE (5000 * TS_SIZE)
#define WRITERBUFSIZE (20000 * TS_SIZE)
// --- cStreamdevBuffer -------------------------------------------------------