summaryrefslogtreecommitdiff
path: root/client/device.h
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-02-08 15:21:19 +0000
committerlordjaxom <lordjaxom>2005-02-08 15:21:19 +0000
commit916ed238bca58539835c4ee769ce8ddd9f5456d7 (patch)
tree50dd082f5540bc76f7567551432df669e20a55b6 /client/device.h
parent948893b25ec347b80f4b4c1f35a4356b31df6f18 (diff)
downloadvdr-plugin-streamdev-916ed238bca58539835c4ee769ce8ddd9f5456d7.tar.gz
vdr-plugin-streamdev-916ed238bca58539835c4ee769ce8ddd9f5456d7.tar.bz2
- transfer
Diffstat (limited to 'client/device.h')
-rw-r--r--client/device.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/client/device.h b/client/device.h
index b7ab3da..bdfabb6 100644
--- a/client/device.h
+++ b/client/device.h
@@ -1,5 +1,5 @@
/*
- * $Id: device.h,v 1.2 2005/01/25 14:14:43 lordjaxom Exp $
+ * $Id: device.h,v 1.3 2005/02/08 15:21:19 lordjaxom Exp $
*/
#ifndef VDR_STREAMDEV_DEVICE_H
@@ -30,7 +30,12 @@ private:
protected:
virtual bool SetChannelDevice(const cChannel *Channel, bool LiveView);
- virtual bool HasLock(int TimeoutMs) { return m_TSBuffer != NULL; } // TODO
+ virtual bool HasLock(int TimeoutMs)
+ {
+ //printf("HasLock is %d\n", (ClientSocket.DataSocket(siLive) != NULL));
+ //return ClientSocket.DataSocket(siLive) != NULL;
+ return true;
+ }
virtual bool SetPid(cPidHandle *Handle, int Type, bool On);
virtual bool OpenDvr(void);
@@ -46,6 +51,7 @@ public:
virtual ~cStreamdevDevice();
virtual bool ProvidesSource(int Source) const;
+ virtual bool ProvidesTransponder(const cChannel *Channel) const;
virtual bool ProvidesChannel(const cChannel *Channel, int Priority = -1,
bool *NeedsDetachReceivers = NULL) const;