vdr-plugin-iptv/streamer.h

38 lines
825 B
C
Raw Normal View History

2007-09-12 19:28:59 +02:00
/*
* streamer.h: IPTV plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
2007-09-29 18:21:04 +02:00
* $Id: streamer.h,v 1.7 2007/09/29 16:21:05 rahrenbe Exp $
2007-09-12 19:28:59 +02:00
*/
#ifndef __IPTV_STREAMER_H
#define __IPTV_STREAMER_H
#include <arpa/inet.h>
#include <vdr/thread.h>
#include <vdr/ringbuffer.h>
2007-09-14 17:44:25 +02:00
#include "protocolif.h"
2007-09-12 19:28:59 +02:00
class cIptvStreamer : public cThread {
private:
2007-09-14 17:44:25 +02:00
cRingBufferLinear* ringBuffer;
2007-09-12 19:28:59 +02:00
cMutex* mutex;
2007-09-14 17:44:25 +02:00
unsigned char* readBuffer;
unsigned int readBufferLen;
cIptvProtocolIf* protocol;
2007-09-12 19:28:59 +02:00
public:
2007-09-14 17:44:25 +02:00
cIptvStreamer(cRingBufferLinear* RingBuffer, cMutex* Mutex);
2007-09-12 19:28:59 +02:00
virtual ~cIptvStreamer();
2007-09-13 18:58:22 +02:00
virtual void Action(void);
2007-09-14 17:44:25 +02:00
bool Set(const char* Address, const int Port, cIptvProtocolIf* Protocol);
bool Open(void);
bool Close(void);
2007-09-12 19:28:59 +02:00
};
#endif // __IPTV_STREAMER_H