mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
37 lines
796 B
C++
37 lines
796 B
C++
#ifndef VDR_STREAMDEV_TS2PSREMUX_H
|
|
#define VDR_STREAMDEV_TS2PSREMUX_H
|
|
|
|
#include "remux/tsremux.h"
|
|
#include "server/streamer.h"
|
|
|
|
#ifndef MAXTRACKS
|
|
#define MAXTRACKS 64
|
|
#endif
|
|
|
|
namespace Streamdev {
|
|
|
|
class cTS2PS;
|
|
|
|
class cTS2PSRemux: public cTSRemux {
|
|
private:
|
|
int m_NumTracks;
|
|
cTS2PS *m_Remux[MAXTRACKS];
|
|
cStreamdevBuffer *m_ResultBuffer;
|
|
int m_ResultSkipped;
|
|
int m_Skipped;
|
|
bool m_Synced;
|
|
bool m_IsRadio;
|
|
|
|
public:
|
|
cTS2PSRemux(int VPid, const int *Apids, const int *Dpids, const int *Spids);
|
|
virtual ~cTS2PSRemux();
|
|
|
|
int Put(const uchar *Data, int Count);
|
|
uchar *Get(int &Count);
|
|
void Del(int Count) { m_ResultBuffer->Del(Count); }
|
|
};
|
|
|
|
} // namespace Streamdev
|
|
|
|
#endif // VDR_STREAMDEV_TS2PSREMUX_H
|