diff options
-rw-r--r-- | CONTRIBUTORS | 3 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | server/streamer.h | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index ca6bb33..052724c 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -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 @@ -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 diff --git a/server/streamer.h b/server/streamer.h index 988775a..c34db54 100644 --- a/server/streamer.h +++ b/server/streamer.h @@ -18,7 +18,7 @@ class cServerConnection; #endif #define STREAMERBUFSIZE (20000 * TS_SIZE) -#define WRITERBUFSIZE (5000 * TS_SIZE) +#define WRITERBUFSIZE (20000 * TS_SIZE) // --- cStreamdevBuffer ------------------------------------------------------- |