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 | c06970123cd68bd1b2f2695326596430d236f230 (patch) | |
tree | 3f4a4d933a4e095abe5b9d1a68b58a8bf5475a0b /server/connection.h | |
parent | ee7929bd39101f877ee731c96c457b5e38565b37 (diff) | |
download | vdr-plugin-streamdev-c06970123cd68bd1b2f2695326596430d236f230.tar.gz vdr-plugin-streamdev-c06970123cd68bd1b2f2695326596430d236f230.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; |