From 16b40c6774dc0f8eb513ddae458cb9f016ec53a0 Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Fri, 1 Feb 2008 21:58:22 +0000 Subject: [PATCH] Reset timeout if channel locking fails. --- HISTORY | 1 + pidscanner.c | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/HISTORY b/HISTORY index 8827b77..e87c890 100644 --- a/HISTORY +++ b/HISTORY @@ -46,3 +46,4 @@ VDR Plugin 'iptv' Revision History - Added preliminary automatic Pid scanning functionality. - Modified channels.conf format to enable/disable channel specific pid and sid scanning functionality. +- Removed the general sid scanning setup option. diff --git a/pidscanner.c b/pidscanner.c index ae04238..7c3428b 100644 --- a/pidscanner.c +++ b/pidscanner.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: pidscanner.c,v 1.2 2008/02/01 21:54:24 rahrenbe Exp $ + * $Id: pidscanner.c,v 1.3 2008/02/01 21:58:22 rahrenbe Exp $ */ #include "common.h" @@ -84,8 +84,10 @@ void cPidScanner::Process(const uint8_t* buf) } } if (numVpids > 10 && numApids > 5) { - if (!Channels.Lock(true, 10)) + if (!Channels.Lock(true, 10)) { + timeout.Set(PIDSCANNER_TIMEOUT_IN_MS); return; + } debug("cPidScanner::Process(): Vpid=0x%04X, Apid=0x%04X\n", Vpid, Apid); cChannel *IptvChannel = Channels.GetByChannelID(channel.GetChannelID()); int Apids[MAXAPIDS + 1] = { 0 }; // these lists are zero-terminated