2003-12-22 13:29:24 +01:00
|
|
|
/*
|
|
|
|
* pat.h: PAT section filter
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2016-12-23 14:08:14 +01:00
|
|
|
* $Id: pat.h 4.1 2016/12/23 14:03:24 kls Exp $
|
2003-12-22 13:29:24 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PAT_H
|
|
|
|
#define __PAT_H
|
|
|
|
|
2004-03-13 10:35:38 +01:00
|
|
|
#include <stdint.h>
|
2006-03-26 14:12:08 +02:00
|
|
|
#include "filter.h"
|
2014-02-18 13:12:39 +01:00
|
|
|
#include "thread.h"
|
2004-01-04 12:30:00 +01:00
|
|
|
|
|
|
|
#define MAXPMTENTRIES 64
|
2003-12-22 13:29:24 +01:00
|
|
|
|
|
|
|
class cPatFilter : public cFilter {
|
|
|
|
private:
|
2014-02-18 13:12:39 +01:00
|
|
|
cMutex mutex;
|
|
|
|
cTimeMs timer;
|
|
|
|
int patVersion;
|
2003-12-22 13:29:24 +01:00
|
|
|
int pmtIndex;
|
2014-02-18 13:12:39 +01:00
|
|
|
int pmtId[MAXPMTENTRIES];
|
|
|
|
int pmtVersion[MAXPMTENTRIES];
|
2004-01-04 12:30:00 +01:00
|
|
|
int numPmtEntries;
|
2014-02-18 13:12:39 +01:00
|
|
|
int sid;
|
|
|
|
int GetPmtPid(int Index) { return pmtId[Index] & 0x0000FFFF; }
|
|
|
|
int MakePmtId(int PmtPid, int Sid) { return PmtPid | (Sid << 16); }
|
|
|
|
bool PmtVersionChanged(int PmtPid, int Sid, int Version, bool SetNewVersion = false);
|
|
|
|
void SwitchToNextPmtPid(void);
|
2003-12-22 13:29:24 +01:00
|
|
|
protected:
|
|
|
|
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length);
|
|
|
|
public:
|
|
|
|
cPatFilter(void);
|
|
|
|
virtual void SetStatus(bool On);
|
2014-02-18 13:12:39 +01:00
|
|
|
void Trigger(int Sid = -1);
|
2003-12-22 13:29:24 +01:00
|
|
|
};
|
|
|
|
|
2016-12-23 14:08:14 +01:00
|
|
|
void GetCaDescriptors(int Source, int Transponder, int ServiceId, const int *CaSystemIds, cDynamicBuffer &Buffer, int EsPid);
|
2003-12-22 13:29:24 +01:00
|
|
|
///< Gets all CA descriptors for a given channel.
|
|
|
|
///< Copies all available CA descriptors for the given Source, Transponder and ServiceId
|
2016-12-23 14:08:14 +01:00
|
|
|
///< into the provided buffer. Only those CA descriptors
|
2014-01-04 11:17:24 +01:00
|
|
|
///< are copied that match one of the given CA system IDs (or all of them, if CaSystemIds
|
|
|
|
///< is 0xFFFF).
|
2014-01-01 12:37:22 +01:00
|
|
|
|
|
|
|
int GetCaPids(int Source, int Transponder, int ServiceId, const int *CaSystemIds, int BufSize, int *Pids);
|
|
|
|
///< Gets all CA pids for a given channel.
|
|
|
|
///< Copies all available CA pids from the CA descriptors for the given Source, Transponder and ServiceId
|
|
|
|
///< into the provided buffer at Pids (at most BufSize - 1 entries, the list will be zero-terminated).
|
2014-01-04 11:17:24 +01:00
|
|
|
///< Only the CA pids of those CA descriptors are copied that match one of the given CA system IDs
|
|
|
|
///< (or all of them, if CaSystemIds is 0xFFFF).
|
2014-01-01 12:37:22 +01:00
|
|
|
///< Returns the number of pids copied into Pids (0 if no CA descriptors are
|
|
|
|
///< available), or -1 if BufSize was too small to hold all CA pids.
|
2003-12-22 13:29:24 +01:00
|
|
|
|
2015-01-04 13:36:46 +01:00
|
|
|
int GetPmtPid(int Source, int Transponder, int ServiceId);
|
|
|
|
///< Gets the Pid of the PMT in which the CA descriptors for this channel are defined.
|
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
#endif //__PAT_H
|