2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 typedef struct mp_osd_bbox_s
{
27 #define OSDTYPE_SUBTITLE 2
28 #define OSDTYPE_PROGBAR 3
30 #define OSDTYPE_DVDNAV 5
31 #define OSDTYPE_TELETEXT 6
33 #define OSDFLAG_VISIBLE 1
34 #define OSDFLAG_CHANGED 2
35 #define OSDFLAG_BBOX 4
36 #define OSDFLAG_OLD_BBOX 8
37 #define OSDFLAG_FORCE_UPDATE 16
40 #define MAX_UCSLINES 16
42 typedef struct mp_osd_obj_s
{
43 struct mp_osd_obj_s
* next
;
45 unsigned char alignment
; // 2 bits: x;y percentages, 2 bits: x;y relative to parent; 2 bits: alignment left/right/center
49 mp_osd_bbox_t bbox
; // bounding box
50 mp_osd_bbox_t old_bbox
; // the renderer will save bbox here
53 void* sub
; // value of vo_sub at last update
54 int utbl
[MAX_UCS
+1]; // subtitle text
55 int xtbl
[MAX_UCSLINES
]; // x positions
56 int lines
; // no. of lines
65 unsigned char *alpha_buffer
;
66 unsigned char *bitmap_buffer
;
70 #include "subreader.h"
72 extern sub_data
* subdata
; //currently used subtitles
73 extern subtitle
* vo_sub
;
75 extern unsigned char* vo_osd_text
;
77 extern void* vo_osd_teletext_page
;
78 extern int vo_osd_teletext_half
;
79 extern int vo_osd_teletext_mode
;
80 extern int vo_osd_teletext_format
;
82 extern int vo_osd_progbar_type
;
83 extern int vo_osd_progbar_value
; // 0..255
85 extern void* vo_spudec
;
86 extern void* vo_vobsub
;
89 #define OSD_PAUSE 0x02
93 #define OSD_CLOCK 0x06
94 #define OSD_CONTRAST 0x07
95 #define OSD_SATURATION 0x08
96 #define OSD_VOLUME 0x09
97 #define OSD_BRIGHTNESS 0x0A
99 #define OSD_BALANCE 0x0C
100 #define OSD_PANSCAN 0x50
102 #define OSD_PB_START 0x10
103 #define OSD_PB_0 0x11
104 #define OSD_PB_END 0x12
105 #define OSD_PB_1 0x13
107 /* now in textform */
108 extern char * sub_osd_names
[];
109 extern char * sub_osd_names_short
[];
111 extern int sub_unicode
;
116 extern int sub_width_p
;
117 extern int sub_alignment
;
118 extern int sub_visibility
;
119 extern int sub_bg_color
; /* subtitles background color */
120 extern int sub_bg_alpha
;
121 extern int spu_alignment
;
122 extern int spu_aamode
;
123 extern float spu_gaussvar
;
125 void vo_draw_text(int dxs
,int dys
,void (*draw_alpha
)(int x0
,int y0
, int w
,int h
, unsigned char* src
, unsigned char *srca
, int stride
));
126 void vo_draw_text_ext(int dxs
, int dys
, int left_border
, int top_border
,
127 int right_border
, int bottom_border
, int orig_w
, int orig_h
,
128 void (*draw_alpha
)(int x0
, int y0
, int w
,int h
, unsigned char* src
, unsigned char *srca
, int stride
));
129 void vo_remove_text(int dxs
,int dys
,void (*remove
)(int x0
,int y0
, int w
,int h
));
131 void vo_init_osd(void);
132 int vo_update_osd(int dxs
,int dys
);
133 int vo_osd_changed(int new_value
);
134 int vo_osd_check_range_update(int,int,int,int);
135 void free_osd_list(void);
137 extern int vo_osd_changed_flag
;
139 unsigned utf8_get_char(const char **str
);
142 #include <inttypes.h>
143 void osd_set_nav_box (uint16_t sx
, uint16_t sy
, uint16_t ex
, uint16_t ey
);
146 #endif /* MPLAYER_SUB_H */