mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
66 lines
1.7 KiB
C++
66 lines
1.7 KiB
C++
#ifndef VDR_STREAMDEV_LIVESTREAMER_H
|
|
#define VDR_STREAMDEV_LIVESTREAMER_H
|
|
|
|
#include <vdr/config.h>
|
|
#include <vdr/receiver.h>
|
|
|
|
#include "server/streamer.h"
|
|
#include "server/livefilter.h"
|
|
#include "common.h"
|
|
|
|
#if MAXRECEIVEPIDS < 16
|
|
# error Too few receiver pids allowed! Please contact sascha@akv-soft.de!
|
|
#endif
|
|
|
|
class cTSRemux;
|
|
|
|
class cStreamdevLiveReceiver: public cReceiver {
|
|
friend class cStreamdevLiveStreamer;
|
|
|
|
private:
|
|
cStreamdevLiveStreamer *m_Streamer;
|
|
|
|
protected:
|
|
virtual void Receive(uchar *Data, int Length);
|
|
|
|
public:
|
|
cStreamdevLiveReceiver(cStreamdevLiveStreamer *Streamer, int Ca, int Priority,
|
|
const int *Pids);
|
|
virtual ~cStreamdevLiveReceiver();
|
|
};
|
|
|
|
class cStreamdevLiveStreamer: public cStreamdevStreamer {
|
|
private:
|
|
int m_Priority;
|
|
int m_Pids[MAXRECEIVEPIDS + 1];
|
|
int m_NumPids;
|
|
const cChannel *m_Channel;
|
|
cDevice *m_Device;
|
|
cStreamdevLiveReceiver *m_Receiver;
|
|
cTSRemux *m_Remux;
|
|
uchar *m_Buffer;
|
|
int m_Sequence;
|
|
|
|
protected:
|
|
virtual uchar *Process(const uchar *Data, int &Count, int &Result);
|
|
|
|
public:
|
|
cStreamdevLiveStreamer(int Priority);
|
|
virtual ~cStreamdevLiveStreamer();
|
|
|
|
void SetDevice(cDevice *Device) { m_Device = Device; }
|
|
bool SetPid(int Pid, bool On);
|
|
bool SetChannel(const cChannel *Channel, eStreamType StreamType);
|
|
bool SetFilter(u_short Pid, u_char Tid, u_char Mask, bool On);
|
|
|
|
virtual void Detach(void);
|
|
virtual void Attach(void);
|
|
|
|
virtual void Start(cTBSocket *Socket);
|
|
|
|
// Statistical purposes:
|
|
virtual cTBString Report(void);
|
|
};
|
|
|
|
#endif // VDR_STREAMDEV_LIVESTREAMER_H
|