mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
- Add bugfix for infosatepg grabbing a non-first tuner device that
still was in use. (like when the sat tuner was on /dev/dvb/adapter8.) - Bump PORTREVISION.
This commit is contained in:
parent
a9c5e00be3
commit
03d1d00ad2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=273917
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= vdr-plugin-infosatepg
|
||||
PORTVERSION= 0.0.11
|
||||
PORTREVISION= 7
|
||||
PORTREVISION= 8
|
||||
CATEGORIES= multimedia
|
||||
MASTER_SITES= http://projects.vdr-developer.org/attachments/download/342/
|
||||
DISTNAME= ${PORTNAME:S/-plugin-/-/}-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX}
|
||||
|
@ -1,5 +1,14 @@
|
||||
--- a/infosatepg.cpp
|
||||
+++ b/infosatepg.cpp
|
||||
@@ -193,7 +193,7 @@ void cPluginInfosatepg::MainThreadHook(v
|
||||
if (EITScanner.UsesDevice(dev)) continue; // EITScanner is updating EPG -> skip
|
||||
if (dev->Receiving()) continue; // device is recording -> skip
|
||||
if (dev->IsPrimaryDevice()) continue; // device is primary -> skip
|
||||
- if (cDevice::ActualDevice()->CardIndex()==i) continue; // device is live viewing -> skip
|
||||
+ if (cDevice::ActualDevice()->CardIndex()==dev->CardIndex()) continue; // device is live viewing -> skip
|
||||
if (dev->IsTunedToTransponder(chan))
|
||||
{
|
||||
// we already have a device which is tuned (maybe switched manually?)
|
||||
@@ -403,7 +403,7 @@ cString cPluginInfosatepg::SVDRPCommand(
|
||||
cString head2;
|
||||
head2="\n" \
|
||||
|
Loading…
Reference in New Issue
Block a user