summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2020-10-15 10:16:38 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2020-10-15 10:16:38 +0200
commit36be6abfbd34c4adc1543d6a90a5841f58b02574 (patch)
treec9ed3e5113a88043de2bf6124e88d831eafb5e44
parentf24e93ade1ddd5cbb77bfaa42e2809556501d71f (diff)
downloadvdr-36be6abfbd34c4adc1543d6a90a5841f58b02574.tar.gz
vdr-36be6abfbd34c4adc1543d6a90a5841f58b02574.tar.bz2
Increased the size of the TS buffer to 16MB, to have more reserve when recording several HD programmes
-rw-r--r--HISTORY4
-rw-r--r--dvbdevice.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/HISTORY b/HISTORY
index 5496afce..96739a01 100644
--- a/HISTORY
+++ b/HISTORY
@@ -9513,7 +9513,7 @@ Video Disk Recorder Revision History
with the main menu open.
- Official release.
-2020-10-12: Version 2.4.5
+2020-10-15: Version 2.4.5
- Updated the Italian OSD texts (thanks to Diego Pierotto).
- Fixed handling newline characters in ci.c's CopyString() (reported by Winfried Köhler).
@@ -9526,3 +9526,5 @@ Video Disk Recorder Revision History
The version numbers (both VDRVERSNUM and APIVERSNUM) have been bumped to 2.4.5 to
indicate this change.
- Fixed alignment of semi-circles in case of odd sizes.
+- Increased the size of the TS buffer to 16MB, to have more reserve when recording
+ several HD programmes.
diff --git a/dvbdevice.c b/dvbdevice.c
index 66aedd89..df9510ba 100644
--- a/dvbdevice.c
+++ b/dvbdevice.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.c 4.23 2020/06/10 14:52:43 kls Exp $
+ * $Id: dvbdevice.c 4.24 2020/10/15 10:16:38 kls Exp $
*/
#include "dvbdevice.h"
@@ -34,6 +34,8 @@ static int DvbApiVersion = 0x0000; // the version of the DVB driver actually in
#define SCR_RANDOM_TIMEOUT 500 // ms (add random value up to this when tuning SCR device to avoid lockups)
+#define TSBUFFERSIZE MEGABYTE(16)
+
// --- DVB Parameter Maps ----------------------------------------------------
const tDvbParameterMap PilotValues[] = {
@@ -2311,7 +2313,7 @@ bool cDvbDevice::OpenDvr(void)
CloseDvr();
fd_dvr = DvbOpen(DEV_DVB_DVR, adapter, frontend, O_RDONLY | O_NONBLOCK, true);
if (fd_dvr >= 0)
- tsBuffer = new cTSBuffer(fd_dvr, MEGABYTE(5), DeviceNumber() + 1);
+ tsBuffer = new cTSBuffer(fd_dvr, TSBUFFERSIZE, DeviceNumber() + 1);
return fd_dvr >= 0;
}