mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
26 lines
561 B
C++
26 lines
561 B
C++
#ifndef VDR_STREAMDEV_TS2ESREMUX_H
|
|
#define VDR_STREAMDEV_TS2ESREMUX_H
|
|
|
|
#include "remux/tsremux.h"
|
|
#include <vdr/ringbuffer.h>
|
|
|
|
class cTS2ES;
|
|
class cRingBufferLinear;
|
|
|
|
class cTS2ESRemux: public cTSRemux {
|
|
private:
|
|
int m_Pid;
|
|
cRingBufferLinear *m_ResultBuffer;
|
|
cTS2ES *m_Remux;
|
|
|
|
public:
|
|
cTS2ESRemux(int Pid);
|
|
virtual ~cTS2ESRemux();
|
|
|
|
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_TS2ESREMUX_H
|