diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-08-21 08:56:49 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-08-21 08:56:49 +0200 |
commit | 6de23d7d96720f89cbc864bbf504fe466e224497 (patch) | |
tree | e0fa92f9f0d7816cfd0eef3507f069758d053300 /dvbdevice.c | |
parent | ba3437f7ccbc86f67b8cbfc5a88cc6c3b4fd6ed9 (diff) | |
download | vdr-6de23d7d96720f89cbc864bbf504fe466e224497.tar.gz vdr-6de23d7d96720f89cbc864bbf504fe466e224497.tar.bz2 |
Now waiting at startup until all DVB devices are ready
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index ccd9a982..c47717bb 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 1.134 2005/08/15 14:05:23 kls Exp $ + * $Id: dvbdevice.c 1.135 2005/08/20 15:22:36 kls Exp $ */ #include "dvbdevice.h" @@ -478,6 +478,15 @@ bool cDvbDevice::HasDecoder(void) const return fd_video >= 0 && fd_audio >= 0; } +bool cDvbDevice::Ready(void) +{ + if (ciHandler) { + ciHandler->Process(); + return ciHandler->Ready(); + } + return true; +} + int cDvbDevice::ProvidesCa(const cChannel *Channel) const { if (Channel->Ca() >= 0x0100 && ciHandler) { |