diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-08-15 14:49:34 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-08-15 14:49:34 +0200 |
commit | d9e56db9fca760da1f2dc29288f0b55b2d67ec6f (patch) | |
tree | db05afb1bd0cd57c88a35cf4d95a570770dc764b /transfer.h | |
parent | 2ee1e61d35d87d17c23b69525790a560dac69156 (diff) | |
download | vdr-d9e56db9fca760da1f2dc29288f0b55b2d67ec6f.tar.gz vdr-d9e56db9fca760da1f2dc29288f0b55b2d67ec6f.tar.bz2 |
First step towards switching to TS (Transport Stream) as recording format
Diffstat (limited to 'transfer.h')
-rw-r--r-- | transfer.h | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: transfer.h 1.12 2007/01/07 14:45:45 kls Exp $ + * $Id: transfer.h 2.1 2008/05/25 12:44:49 kls Exp $ */ #ifndef __TRANSFER_H @@ -13,17 +13,13 @@ #include "player.h" #include "receiver.h" #include "remux.h" -#include "ringbuffer.h" -#include "thread.h" -class cTransfer : public cReceiver, public cPlayer, public cThread { +class cTransfer : public cReceiver, public cPlayer { private: - cRingBufferLinear *ringBuffer; - cRemux *remux; + cPatPmtGenerator patPmtGenerator; protected: virtual void Activate(bool On); virtual void Receive(uchar *Data, int Length); - virtual void Action(void); public: cTransfer(tChannelID ChannelID, int VPid, const int *APids, const int *DPids, const int *SPids); virtual ~cTransfer(); |