From 7cdfca45f4da02fdad4bbccebe9ba05da93610e0 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 22 Sep 2012 11:55:26 +0200 Subject: Increased the size of the TS buffer to 5MB and that of the Recorder buffer to 20MB to better handle HD recordings --- dvbdevice.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dvbdevice.c') diff --git a/dvbdevice.c b/dvbdevice.c index 55cb9127..a7635b23 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 2.71 2012/05/09 08:33:59 kls Exp $ + * $Id: dvbdevice.c 2.72 2012/09/22 11:53:57 kls Exp $ */ #include "dvbdevice.h" @@ -1540,7 +1540,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(2), CardIndex() + 1); + tsBuffer = new cTSBuffer(fd_dvr, MEGABYTE(5), CardIndex() + 1); return fd_dvr >= 0; } -- cgit v1.2.3