blob: 8a1bae7106d532651856fd39e470b48662298fa5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef __RADIO_IMAGE_H
#define __RADIO_IMAGE_H
#include <vdr/thread.h>
// Separate thread for showing RadioImages
class cRadioImage: public cThread {
private:
char *imagepath;
bool imageShown;
void Show (const char *file);
void send_pes_packet(unsigned char *data, int len, int timestamp);
protected:
virtual void Action(void);
void Stop(void);
public:
cRadioImage(void);
virtual ~cRadioImage();
static void Init(void);
static void Exit(void);
void SetBackgroundImage(const char *Image);
};
#endif
|