diff options
author | Frank Schmirler <vdr@schmirler.de> | 2011-03-07 21:37:08 +0100 |
---|---|---|
committer | Frank Schmirler <vdr@schmirler.de> | 2011-03-07 23:04:18 +0100 |
commit | 74ce99971c59d960babf163c191d6014a2a32c81 (patch) | |
tree | 3f4a4d933a4e095abe5b9d1a68b58a8bf5475a0b /server/connection.h | |
parent | d37f1f7d0fafd23f8bb01e9ed439810421aa2f81 (diff) | |
download | vdr-plugin-streamdev-74ce99971c59d960babf163c191d6014a2a32c81.tar.gz vdr-plugin-streamdev-74ce99971c59d960babf163c191d6014a2a32c81.tar.bz2 |
Live TV must be switched in VDR main thread (fixes #568).
Diffstat (limited to 'server/connection.h')
-rw-r--r-- | server/connection.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/server/connection.h b/server/connection.h index 01a070c..6cc6764 100644 --- a/server/connection.h +++ b/server/connection.h @@ -15,6 +15,7 @@ typedef std::pair<std::string,std::string> tStrStr; class cChannel; class cDevice; +class cSwitchLive; /* Basic capabilities of a straight text-based protocol, most functions virtual to support more complicated protocols */ @@ -33,6 +34,8 @@ private: uint m_WriteBytes; uint m_WriteIndex; + cSwitchLive *m_SwitchLive; + tStrStrMap m_Headers; /* Check if a device would be available for transfering the given @@ -108,6 +111,9 @@ public: /* Test if a call to GetDevice would return a usable device. */ bool ProvidesChannel(const cChannel *Channel, int Priority); + /* Do things which must be done in VDR's main loop */ + void MainThreadHook(); + virtual void Flushed(void) {} virtual void Detach(void) = 0; |