blob: 9f704e3b98213e97871cc236660cb27319290510 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#ifndef __MIAV_YUV_DRAW_H__
#define __MIAV_YUV_DRAW_H__
#include <SDL/SDL.h>
#include <QPixmap>
#include <QImage>
#include <QPainter>
#define ICON_HEIGHT 48
#define ICON_WIDTH 48
class YUVDraw {
public:
YUVDraw();
~YUVDraw();
void setOverlay(SDL_Overlay* overlay);
void addPixel(int x, int y, int val);
void setTopText(char* text);
void setBottomText(char* text);
void mute(bool muted);
void draw();
private:
SDL_Overlay* overlay;
QPixmap *top_pixmap;
unsigned char top_grey[720][20];
QPixmap *bottom_pixmap;
unsigned char bottom_grey[720][20];
QImage *img_muted;
QImage *img_unmuted;
};
#endif
|