diff options
author | schmirl <schmirl> | 2009-01-29 07:48:58 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2009-01-29 07:48:58 +0000 |
commit | 0e0b4b587d90efa7bbe8a37c707dda4c3e94aceb (patch) | |
tree | beba72db47e9d740d6bcb61d9b7662f754a4530a /client/device.c | |
parent | 9af6ceb00705470484c4b23cf71f9bb11d2af271 (diff) | |
download | vdr-plugin-streamdev-0e0b4b587d90efa7bbe8a37c707dda4c3e94aceb.tar.gz vdr-plugin-streamdev-0e0b4b587d90efa7bbe8a37c707dda4c3e94aceb.tar.bz2 |
Added min/max priority (#508)
Modified Files:
HISTORY README client/device.c client/setup.c client/setup.h
po/de_DE.po po/fi_FI.po po/fr_FR.po po/it_IT.po po/ru_RU.po
Diffstat (limited to 'client/device.c')
-rw-r--r-- | client/device.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/client/device.c b/client/device.c index 4a2ccd1..9b0dfb5 100644 --- a/client/device.c +++ b/client/device.c @@ -1,5 +1,5 @@ /* - * $Id: device.c,v 1.21 2009/01/14 07:35:51 schmirl Exp $ + * $Id: device.c,v 1.22 2009/01/29 07:48:58 schmirl Exp $ */ #include "client/device.h" @@ -85,6 +85,19 @@ bool cStreamdevDevice::ProvidesChannel(const cChannel *Channel, int Priority, Dprintf("ProvidesChannel, Channel=%s, Prio=%d\n", Channel->Name(), Priority); + if (StreamdevClientSetup.MinPriority <= StreamdevClientSetup.MaxPriority) + { + if (Priority < StreamdevClientSetup.MinPriority || + Priority > StreamdevClientSetup.MaxPriority) + return false; + } + else + { + if (Priority < StreamdevClientSetup.MinPriority && + Priority > StreamdevClientSetup.MaxPriority) + return false; + } + if (ClientSocket.DataSocket(siLive) != NULL && TRANSPONDER(Channel, m_Channel)) res = true; |