File: recstreamer.h

package info (click to toggle)
vdr-plugin-streamdev 0.6.0%2Bgit20130305-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,128 kB
  • ctags: 1,624
  • sloc: ansic: 15,271; sh: 237; makefile: 181
file content (32 lines) | stat: -rw-r--r-- 1,006 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef VDR_STREAMDEV_RECSTREAMER_H
#define VDR_STREAMDEV_RECSTREAMER_H

#include "server/streamer.h"
#include "server/recplayer.h"

#define RECBUFSIZE (174 * TS_SIZE)

// --- cStreamdevRecStreamer -------------------------------------------------

class cStreamdevRecStreamer: public cStreamdevStreamer {
private:
	//Streamdev::cTSRemux    *m_Remux;
	RecPlayer               m_RecPlayer;
	int64_t                 m_From;
	int64_t                 m_To;
	uchar                   m_Buffer[RECBUFSIZE];

protected:
	virtual uchar* GetFromReceiver(int &Count);
	virtual void DelFromReceiver(int Count) { m_From += Count; };

public:
	virtual bool IsReceiving(void) const { return m_From <= m_To; };
	inline uint64_t GetLength() { return m_RecPlayer.getLengthBytes(); }
	int64_t SetRange(int64_t &From, int64_t &To);
	virtual cString ToText() const;
	cStreamdevRecStreamer(cRecording *Recording, const cServerConnection *Connection);
	virtual ~cStreamdevRecStreamer();
};

#endif // VDR_STREAMDEV_RECSTREAMER_H