diff options
author | lordjaxom <lordjaxom> | 2005-02-12 17:20:35 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-02-12 17:20:35 +0000 |
commit | 523779f9aa17796b3a6c8d6a40a63efdf289e0ec (patch) | |
tree | 8b33237b3c05bed2fbfcb26541b0af326e53a13d /remux/extern.h | |
parent | 4cc684e530bef5fcee8d4cb31dd610410dfdc9e0 (diff) | |
download | vdr-plugin-streamdev-523779f9aa17796b3a6c8d6a40a63efdf289e0ec.tar.gz vdr-plugin-streamdev-523779f9aa17796b3a6c8d6a40a63efdf289e0ec.tar.bz2 |
- missing
Diffstat (limited to 'remux/extern.h')
-rw-r--r-- | remux/extern.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/remux/extern.h b/remux/extern.h new file mode 100644 index 0000000..9066680 --- /dev/null +++ b/remux/extern.h @@ -0,0 +1,23 @@ +#ifndef VDR_STREAMDEV_EXTERNREMUX_H +#define VDR_STREAMDEV_EXTERNREMUX_H + +#include "remux/tsremux.h" +#include <vdr/ringbuffer.h> + +class cTSExt; + +class cExternRemux: public cTSRemux { +private: + cRingBufferLinear *m_ResultBuffer; + cTSExt *m_Remux; + +public: + cExternRemux(int VPid, const int *APids, const int *Dpids, const int *SPids); + virtual ~cExternRemux(); + + int Put(const uchar *Data, int Count); + uchar *Get(int &Count) { return m_ResultBuffer->Get(Count); } + void Del(int Count) { m_ResultBuffer->Del(Count); } +}; + +#endif // VDR_STREAMDEV_EXTERNREMUX_H |