From 706b18cb7cab02a5e6fbb2fb538b0aba1b5ec66c Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 17 Jun 2001 15:19:28 +0200 Subject: [PATCH] Avoiding error message when setting PIDs --- HISTORY | 5 +++++ dvbapi.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/HISTORY b/HISTORY index 6d411818..188b3b18 100644 --- a/HISTORY +++ b/HISTORY @@ -525,3 +525,8 @@ Video Disk Recorder Revision History - Setting all PIDs to 0x1FFF before switching channel. - New setup parameter "VideoFormat" to define the aspect ratio of the tv set in use (4:3 or 16:9). + +2001-06-17: Version 0.83 + +- Avoiding "Device or resource busy" error message when setting PIDs. + diff --git a/dvbapi.c b/dvbapi.c index 4bab4cdf..49c83209 100644 --- a/dvbapi.c +++ b/dvbapi.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbapi.c 1.78 2001/06/16 14:38:07 kls Exp $ + * $Id: dvbapi.c 1.79 2001/06/17 15:18:11 kls Exp $ */ #include "dvbapi.h" @@ -2048,7 +2048,7 @@ bool cDvbApi::SetPid(int fd, dmxPesType_t PesType, dvb_pid_t Pid, dmxOutput_t Ou pesFilterParams.pesType = PesType; pesFilterParams.flags = DMX_IMMEDIATE_START; if (ioctl(fd, DMX_SET_PES_FILTER, &pesFilterParams) < 0) { - if (Pid != 0x1FFF) + if (Pid != 0 && Pid != 0x1FFF) LOG_ERROR; return false; }