1
0
mirror of https://github.com/rofafor/vdr-plugin-iptv.git synced 2023-10-10 13:37:03 +02:00
vdr-plugin-iptv/pidscanner.h
Rolf Ahrenberg 53b5644973 Migration changes for git and UTF-8.
Updated contact information.
2008-08-23 08:15:30 +03:00

32 lines
543 B
C++

/*
* pidscanner.h: IPTV plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __PIDSCANNER_H
#define __PIDSCANNER_H
#include <vdr/tools.h>
#include <vdr/channels.h>
class cPidScanner {
private:
cTimeMs timeout;
cChannel channel;
bool process;
int Vpid;
int Apid;
int numVpids;
int numApids;
public:
cPidScanner(void);
~cPidScanner();
void SetChannel(const cChannel *Channel);
void Process(const uint8_t* buf);
};
#endif // __PIDSCANNER_H