mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
90 lines
2.2 KiB
C++
90 lines
2.2 KiB
C++
/*
|
|
* sectionfilter.h: SAT>IP plugin for the Video Disk Recorder
|
|
*
|
|
* See the README file for copyright information and how to reach the author.
|
|
*
|
|
*/
|
|
|
|
#ifndef __SATIP_SECTIONFILTER_H
|
|
#define __SATIP_SECTIONFILTER_H
|
|
|
|
#include <vdr/device.h>
|
|
|
|
#include "common.h"
|
|
#include "statistics.h"
|
|
|
|
class cSatipSectionFilter : public cSatipSectionStatistics {
|
|
private:
|
|
enum {
|
|
eDmxMaxFilterSize = 18,
|
|
eDmxMaxSectionCount = 64,
|
|
eDmxMaxSectionSize = 4096,
|
|
eDmxMaxSectionFeedSize = (eDmxMaxSectionSize + TS_SIZE)
|
|
};
|
|
|
|
int pusiSeenM;
|
|
int feedCcM;
|
|
int doneqM;
|
|
|
|
uint8_t *secBufM;
|
|
uint8_t secBufBaseM[eDmxMaxSectionFeedSize];
|
|
uint16_t secBufpM;
|
|
uint16_t secLenM;
|
|
uint16_t tsFeedpM;
|
|
uint16_t pidM;
|
|
|
|
cRingBufferFrame *ringBufferM;
|
|
int deviceIndexM;
|
|
int socketM[2];
|
|
|
|
uint8_t filterValueM[eDmxMaxFilterSize];
|
|
uint8_t filterMaskM[eDmxMaxFilterSize];
|
|
uint8_t filterModeM[eDmxMaxFilterSize];
|
|
|
|
uint8_t maskAndModeM[eDmxMaxFilterSize];
|
|
uint8_t maskAndNotModeM[eDmxMaxFilterSize];
|
|
|
|
inline uint16_t GetLength(const uint8_t *dataP);
|
|
void New(void);
|
|
int Filter(void);
|
|
inline int Feed(void);
|
|
int CopyDump(const uint8_t *bufP, uint8_t lenP);
|
|
|
|
public:
|
|
// constructor & destructor
|
|
cSatipSectionFilter(int deviceIndexP, uint16_t pidP, uint8_t tidP, uint8_t maskP);
|
|
virtual ~cSatipSectionFilter();
|
|
void Process(const uint8_t* dataP);
|
|
bool Send(void);
|
|
int GetFd(void) { return socketM[0]; }
|
|
uint16_t GetPid(void) const { return pidM; }
|
|
};
|
|
|
|
class cSatipSectionFilterHandler : public cThread {
|
|
private:
|
|
enum {
|
|
eMaxSecFilterCount = 32
|
|
};
|
|
cRingBufferLinear *ringBufferM;
|
|
cMutex mutexM;
|
|
int deviceIndexM;
|
|
cSatipSectionFilter *filtersM[eMaxSecFilterCount];
|
|
|
|
bool Delete(unsigned int indexP);
|
|
bool IsBlackListed(u_short pidP, u_char tidP, u_char maskP) const;
|
|
|
|
protected:
|
|
virtual void Action(void);
|
|
|
|
public:
|
|
cSatipSectionFilterHandler(int deviceIndexP, unsigned int bufferLenP);
|
|
virtual ~cSatipSectionFilterHandler();
|
|
cString GetInformation(void);
|
|
int Open(u_short pidP, u_char tidP, u_char maskP);
|
|
void Close(int handleP);
|
|
int GetPid(int handleP);
|
|
void Write(u_char *bufferP, int lengthP);
|
|
};
|
|
|
|
#endif // __SATIP_SECTIONFILTER_H
|