mirror of
https://github.com/rofafor/vdr-plugin-iptv.git
synced 2023-10-10 13:37:03 +02:00
40 lines
891 B
C++
40 lines
891 B
C++
/*
|
|
* streamer.h: IPTV plugin for the Video Disk Recorder
|
|
*
|
|
* See the README file for copyright information and how to reach the author.
|
|
*
|
|
*/
|
|
|
|
#ifndef __IPTV_STREAMER_H
|
|
#define __IPTV_STREAMER_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <vdr/thread.h>
|
|
|
|
#include "deviceif.h"
|
|
#include "protocolif.h"
|
|
#include "statistics.h"
|
|
|
|
class cIptvStreamer : public cThread, public cIptvStreamerStatistics {
|
|
private:
|
|
cCondWait sleepM;
|
|
cIptvDeviceIf* deviceM;
|
|
unsigned char* packetBufferM;
|
|
unsigned int packetBufferLenM;
|
|
cIptvProtocolIf* protocolM;
|
|
|
|
protected:
|
|
virtual void Action(void);
|
|
|
|
public:
|
|
cIptvStreamer(cIptvDeviceIf &deviceP, unsigned int packetLenP);
|
|
virtual ~cIptvStreamer();
|
|
bool Set(const char* locationP, const int parameterP, const int indexP, cIptvProtocolIf* protocolP);
|
|
bool Open(void);
|
|
bool Close(void);
|
|
cString GetInformation(void);
|
|
};
|
|
|
|
#endif // __IPTV_STREAMER_H
|