summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-01-13 12:14:51 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2007-01-13 12:14:51 +0100
commit7751b6abb0b90a3d0961856e76c67b85aab66cf5 (patch)
tree04c4276125ccb9ba9d0ad3a80175330e10140218 /dvbdevice.c
parent87dd5139ff6666d64e7e343bcff632b342c4c814 (diff)
downloadvdr-7751b6abb0b90a3d0961856e76c67b85aab66cf5.tar.gz
vdr-7751b6abb0b90a3d0961856e76c67b85aab66cf5.tar.bz2
Added cDevice::HasCi() so that devices with Common Interface can be avoided when tuning to an FTA channel
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index 70f7781a..7271b4f0 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.161 2007/01/07 14:09:51 kls Exp $
+ * $Id: dvbdevice.c 1.162 2007/01/13 11:37:00 kls Exp $
*/
#include "dvbdevice.h"
@@ -509,6 +509,11 @@ cSpuDecoder *cDvbDevice::GetSpuDecoder(void)
return spuDecoder;
}
+bool cDvbDevice::HasCi(void)
+{
+ return ciAdapter;
+}
+
uchar *cDvbDevice::GrabImage(int &Size, bool Jpeg, int Quality, int SizeX, int SizeY)
{
if (devVideoIndex < 0)