218
|
1
|
|
2 extern font_desc_t* vo_font;
|
|
3
|
|
4 extern unsigned char* vo_osd_text;
|
|
5
|
|
6 extern int vo_osd_progbar_type;
|
|
7 extern int vo_osd_progbar_value; // 0..255
|
|
8
|
254
|
9 extern subtitle* vo_sub;
|
218
|
10
|
|
11 #define OSD_PLAY 0x01
|
|
12 #define OSD_PAUSE 0x02
|
|
13 #define OSD_STOP 0x03
|
|
14 #define OSD_REW 0x04
|
|
15 #define OSD_FFW 0x05
|
|
16 #define OSD_CLOCK 0x06
|
|
17 #define OSD_CONTRAST 0x07
|
|
18 #define OSD_SATURATION 0x08
|
|
19 #define OSD_VOLUME 0x09
|
|
20 #define OSD_BRIGHTNESS 0x0A
|
|
21 #define OSD_HUE 0x0B
|
|
22
|
|
23 #define OSD_PB_START 0x10
|
|
24 #define OSD_PB_0 0x11
|
|
25 #define OSD_PB_END 0x12
|
|
26 #define OSD_PB_1 0x13
|
|
27
|
|
28
|