summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2020-11-24 21:19:49 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2020-11-24 21:19:49 +0100
commit56e2ed262838e05cbeb2848571dd4c8d45425506 (patch)
treeb0b443369341f17bf2dfc7a9f9df1ece954df29d /dvbdevice.c
parentad55da4ef95044f68cc337a4b0265b984467cc6f (diff)
downloadvdr-56e2ed262838e05cbeb2848571dd4c8d45425506.tar.gz
vdr-56e2ed262838e05cbeb2848571dd4c8d45425506.tar.bz2
Fixed "read incomplete section" errors
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index a7797203..b5153db0 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.27 2020/10/16 13:58:45 kls Exp $
+ * $Id: dvbdevice.c 4.28 2020/11/24 21:19:49 kls Exp $
*/
#include "dvbdevice.h"
@@ -2138,11 +2138,17 @@ bool cDvbDevice::SetPid(cPidHandle *Handle, int Type, bool On)
return true;
}
+#define RB_NUM_SECTIONS 8 // default: 2 sections = 8192 bytes
+
int cDvbDevice::OpenFilter(u_short Pid, u_char Tid, u_char Mask)
{
cString FileName = DvbName(DEV_DVB_DEMUX, adapter, frontend);
int f = open(FileName, O_RDWR | O_NONBLOCK);
if (f >= 0) {
+ if (Pid == EITPID) { // increase ringbuffer size for EIT
+ if (ioctl(f, DMX_SET_BUFFER_SIZE, MAX_SECTION_SIZE * RB_NUM_SECTIONS) < 0)
+ dsyslog("OpenFilter (pid=%d, tid=%02X): ioctl DMX_SET_BUFFER_SIZE failed", Pid, Tid);
+ }
dmx_sct_filter_params sctFilterParams;
memset(&sctFilterParams, 0, sizeof(sctFilterParams));
sctFilterParams.pid = Pid;