2004-12-30 23:43:55 +01:00
|
|
|
/*
|
2010-12-02 09:57:17 +01:00
|
|
|
* $Id: device.h,v 1.10 2010/08/18 10:26:55 schmirl Exp $
|
2004-12-30 23:43:55 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VDR_STREAMDEV_DEVICE_H
|
|
|
|
#define VDR_STREAMDEV_DEVICE_H
|
|
|
|
|
|
|
|
#include <vdr/device.h>
|
|
|
|
|
|
|
|
#include "client/socket.h"
|
|
|
|
#include "client/filter.h"
|
|
|
|
|
|
|
|
class cTBString;
|
|
|
|
|
|
|
|
#define CMD_LOCK_OBJ(x) cMutexLock CmdLock((cMutex*)&(x)->m_Mutex)
|
|
|
|
|
|
|
|
class cStreamdevDevice: public cDevice {
|
|
|
|
|
|
|
|
private:
|
|
|
|
const cChannel *m_Channel;
|
|
|
|
cTSBuffer *m_TSBuffer;
|
|
|
|
cStreamdevFilters *m_Filters;
|
2007-04-24 12:43:40 +02:00
|
|
|
int m_Pids;
|
2010-12-02 09:57:17 +01:00
|
|
|
int m_Priority;
|
|
|
|
bool m_UpdatePriority;
|
2007-04-24 12:43:40 +02:00
|
|
|
bool m_DvrClosed;
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
static cStreamdevDevice *m_Device;
|
|
|
|
|
2007-04-24 12:43:40 +02:00
|
|
|
bool OpenDvrInt(void);
|
|
|
|
void CloseDvrInt(void);
|
|
|
|
|
2004-12-30 23:43:55 +01:00
|
|
|
protected:
|
|
|
|
virtual bool SetChannelDevice(const cChannel *Channel, bool LiveView);
|
2005-02-08 16:21:19 +01:00
|
|
|
virtual bool HasLock(int TimeoutMs)
|
|
|
|
{
|
|
|
|
//printf("HasLock is %d\n", (ClientSocket.DataSocket(siLive) != NULL));
|
|
|
|
//return ClientSocket.DataSocket(siLive) != NULL;
|
|
|
|
return true;
|
|
|
|
}
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
virtual bool SetPid(cPidHandle *Handle, int Type, bool On);
|
|
|
|
virtual bool OpenDvr(void);
|
|
|
|
virtual void CloseDvr(void);
|
|
|
|
virtual bool GetTSPacket(uchar *&Data);
|
|
|
|
|
|
|
|
virtual int OpenFilter(u_short Pid, u_char Tid, u_char Mask);
|
|
|
|
|
|
|
|
public:
|
|
|
|
cStreamdevDevice(void);
|
|
|
|
virtual ~cStreamdevDevice();
|
|
|
|
|
2008-10-02 09:14:47 +02:00
|
|
|
virtual bool HasInternalCam(void) { return true; }
|
2004-12-30 23:43:55 +01:00
|
|
|
virtual bool ProvidesSource(int Source) const;
|
2007-04-23 13:42:16 +02:00
|
|
|
virtual bool ProvidesTransponder(const cChannel *Channel) const;
|
2004-12-30 23:43:55 +01:00
|
|
|
virtual bool ProvidesChannel(const cChannel *Channel, int Priority = -1,
|
|
|
|
bool *NeedsDetachReceivers = NULL) const;
|
2009-06-23 12:26:54 +02:00
|
|
|
#if APIVERSNUM >= 10700
|
|
|
|
virtual int NumProvidedSystems(void) const { return 1; }
|
|
|
|
#endif
|
2007-04-23 13:42:16 +02:00
|
|
|
virtual bool IsTunedToTransponder(const cChannel *Channel);
|
2004-12-30 23:43:55 +01:00
|
|
|
|
2010-12-02 09:57:17 +01:00
|
|
|
static void UpdatePriority(void);
|
2004-12-30 23:43:55 +01:00
|
|
|
static bool Init(void);
|
|
|
|
static bool ReInit(void);
|
|
|
|
|
|
|
|
static cStreamdevDevice *GetDevice(void) { return m_Device; }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VDR_STREAMDEV_DEVICE_H
|