/* * pidscanner.h: IPTV plugin for the Video Disk Recorder * * See the README file for copyright information and how to reach the author. * * $Id: pidscanner.h,v 1.2 2008/02/01 21:54:24 rahrenbe Exp $ */ #ifndef __PIDSCANNER_H #define __PIDSCANNER_H #include class cPidScanner { private: cTimeMs timeout; cChannel channel; bool process; int Vpid; int Apid; int numVpids; int numApids; public: cPidScanner(void); ~cPidScanner(); void Process(const uint8_t* buf); void SetChannel(const cChannel *Channel); }; #endif // __PIDSCANNER_H