mirror of
https://github.com/rofafor/vdr-plugin-iptv.git
synced 2023-10-10 11:37:03 +00:00
Cleaned up the code.
This commit is contained in:
14
streamer.h
14
streamer.h
@@ -18,19 +18,19 @@
|
||||
|
||||
class cIptvStreamer : public cThread, public cIptvStreamerStatistics {
|
||||
private:
|
||||
cRingBufferLinear* ringBuffer;
|
||||
cCondWait sleep;
|
||||
unsigned char* packetBuffer;
|
||||
unsigned int packetBufferLen;
|
||||
cIptvProtocolIf* protocol;
|
||||
cRingBufferLinear* ringBufferM;
|
||||
cCondWait sleepM;
|
||||
unsigned char* packetBufferM;
|
||||
unsigned int packetBufferLenM;
|
||||
cIptvProtocolIf* protocolM;
|
||||
|
||||
protected:
|
||||
virtual void Action(void);
|
||||
|
||||
public:
|
||||
cIptvStreamer(cRingBufferLinear* RingBuffer, unsigned int PacketLen);
|
||||
cIptvStreamer(cRingBufferLinear* ringBufferP, unsigned int packetLenP);
|
||||
virtual ~cIptvStreamer();
|
||||
bool Set(const char* Location, const int Parameter, const int Index, cIptvProtocolIf* Protocol);
|
||||
bool Set(const char* locationP, const int parameterP, const int indexP, cIptvProtocolIf* protocolP);
|
||||
bool Open(void);
|
||||
bool Close(void);
|
||||
cString GetInformation(void);
|
||||
|
||||
Reference in New Issue
Block a user