diff options
author | Sascha Volkenandt <sascha@akv-soft.de> | 2004-01-02 23:13:00 +0100 |
---|---|---|
committer | Sascha Volkenandt <sascha@akv-soft.de> | 2004-01-02 23:13:00 +0100 |
commit | 4a775c82c82597c65345b3b1fdad71792ef2e486 (patch) | |
tree | d3a5fc2a34e6746f8d7ee51e793ff3645bf3e814 /receiver.h | |
download | vdr-plugin-osdpip-4a775c82c82597c65345b3b1fdad71792ef2e486.tar.gz vdr-plugin-osdpip-4a775c82c82597c65345b3b1fdad71792ef2e486.tar.bz2 |
Release version 0.0.1v0.0.1
- Initial revision.
Diffstat (limited to 'receiver.h')
-rw-r--r-- | receiver.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/receiver.h b/receiver.h new file mode 100644 index 0000000..7de50db --- /dev/null +++ b/receiver.h @@ -0,0 +1,29 @@ +#ifndef VDR_OSDPIP_RECEIVER_H +#define VDR_OSDPIP_RECEIVER_H + +#include <vdr/receiver.h> +#include <vdr/thread.h> + +class cRingBufferLinear; +class cTS2ESRemux; + +class cOsdPipReceiver: public cReceiver, public cThread { +private: + cRingBufferLinear *m_TSBuffer; + cRingBufferLinear *m_ESBuffer; + cTS2ESRemux *m_Remux; + + bool m_Active; + +protected: + virtual void Activate(bool On); + virtual void Receive(uchar *Data, int Length); + virtual void Action(void); + +public: + cOsdPipReceiver::cOsdPipReceiver(const cChannel *Channel, + cRingBufferLinear *ESBuffer); + virtual ~cOsdPipReceiver(); +}; + +#endif // VDR_OSDPIP_RECEIVER_H |