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.
24 typedef struct mp_osd_bbox_s
{
29 #define OSDTYPE_SUBTITLE 2
30 #define OSDTYPE_PROGBAR 3
32 #define OSDTYPE_DVDNAV 5
33 #define OSDTYPE_TELETEXT 6
35 #define OSDFLAG_VISIBLE 1
36 #define OSDFLAG_CHANGED 2
37 #define OSDFLAG_BBOX 4
38 #define OSDFLAG_OLD_BBOX 8
39 #define OSDFLAG_FORCE_UPDATE 16
42 #define MAX_UCSLINES 16
44 typedef struct mp_osd_obj_s
{
45 struct mp_osd_obj_s
* next
;
47 unsigned char alignment
; // 2 bits: x;y percentages, 2 bits: x;y relative to parent; 2 bits: alignment left/right/center
51 mp_osd_bbox_t bbox
; // bounding box
52 mp_osd_bbox_t old_bbox
; // the renderer will save bbox here
55 void* sub
; // value of vo_sub at last update
56 int utbl
[MAX_UCS
+1]; // subtitle text
57 int xtbl
[MAX_UCSLINES
]; // x positions
58 int lines
; // no. of lines
67 unsigned char *alpha_buffer
;
68 unsigned char *bitmap_buffer
;
72 struct ass_library
*ass_library
;
73 // flag to signal reinitialization due to ass-related option changes
74 bool ass_force_reload
;
76 struct font_desc
*sub_font
;
77 struct ass_track
*ass_track
;
80 bool ass_track_changed
;
84 #include "subreader.h"
86 extern subtitle
* vo_sub
;
88 extern void* vo_osd_teletext_page
;
89 extern int vo_osd_teletext_half
;
90 extern int vo_osd_teletext_mode
;
91 extern int vo_osd_teletext_format
;
93 extern int vo_osd_progbar_type
;
94 extern int vo_osd_progbar_value
; // 0..255
96 extern void* vo_spudec
;
97 extern void* vo_vobsub
;
100 #define OSD_PAUSE 0x02
101 #define OSD_STOP 0x03
104 #define OSD_CLOCK 0x06
105 #define OSD_CONTRAST 0x07
106 #define OSD_SATURATION 0x08
107 #define OSD_VOLUME 0x09
108 #define OSD_BRIGHTNESS 0x0A
110 #define OSD_BALANCE 0x0C
111 #define OSD_PANSCAN 0x50
113 #define OSD_PB_START 0x10
114 #define OSD_PB_0 0x11
115 #define OSD_PB_END 0x12
116 #define OSD_PB_1 0x13
118 /* now in textform */
119 extern char * const sub_osd_names
[];
120 extern char * const sub_osd_names_short
[];
122 extern int sub_unicode
;
127 extern int sub_width_p
;
128 extern int sub_alignment
;
129 extern int sub_visibility
;
130 extern int sub_bg_color
; /* subtitles background color */
131 extern int sub_bg_alpha
;
132 extern int spu_alignment
;
133 extern int spu_aamode
;
134 extern float spu_gaussvar
;
136 void osd_draw_text(struct osd_state
*osd
, int dxs
, int dys
,
137 void (*draw_alpha
)(void *ctx
, int x0
, int y0
, int w
, int h
,
138 unsigned char* src
, unsigned char *srca
,
141 void osd_draw_text_ext(struct osd_state
*osd
, int dxs
, int dys
,
142 int left_border
, int top_border
, int right_border
,
143 int bottom_border
, int orig_w
, int orig_h
,
144 void (*draw_alpha
)(void *ctx
, int x0
, int y0
, int w
,
145 int h
, unsigned char* src
,
149 void osd_remove_text(struct osd_state
*osd
, int dxs
, int dys
,
150 void (*remove
)(int x0
, int y0
, int w
, int h
));
152 struct osd_state
*osd_create(void);
153 void osd_set_text(struct osd_state
*osd
, const char *text
);
154 int osd_update(struct osd_state
*osd
, int dxs
, int dys
);
155 int vo_osd_changed(int new_value
);
156 int vo_osd_check_range_update(int,int,int,int);
157 void osd_free(struct osd_state
*osd
);
159 extern int vo_osd_changed_flag
;
161 unsigned utf8_get_char(const char **str
);
164 #include <inttypes.h>
165 void osd_set_nav_box (uint16_t sx
, uint16_t sy
, uint16_t ex
, uint16_t ey
);
170 #define vo_remove_text(...) osd_remove_text(global_osd, __VA_ARGS__)
173 #endif /* MPLAYER_SUB_H */