Update sources
[mplayer/kovensky.git] / ass_mp.c
blob89a0c6eaa1b6ba401838d116c1cf64538adbc50b
1 /*
2 * Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
4 * This file is part of MPlayer.
6 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with libass; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <inttypes.h>
22 #include <string.h>
23 #include <stdlib.h>
24 #include <stdarg.h>
26 #include <ass/ass.h>
27 #include <ass/ass_types.h>
29 #include "mp_msg.h"
30 #include "get_path.h"
31 #include "ass_mp.h"
32 #include "subreader.h"
34 #ifdef CONFIG_FONTCONFIG
35 #include <fontconfig/fontconfig.h>
36 #endif
38 // libass-related command line options
39 ASS_Library *ass_library;
40 int ass_enabled = 0;
41 float ass_font_scale = 1.;
42 float ass_line_spacing = 0.;
43 int ass_top_margin = 0;
44 int ass_bottom_margin = 0;
45 #if defined(FC_VERSION) && (FC_VERSION >= 20402)
46 int extract_embedded_fonts = 1;
47 #else
48 int extract_embedded_fonts = 0;
49 #endif
50 char **ass_force_style_list = NULL;
51 int ass_use_margins = 0;
52 char *ass_color = NULL;
53 char *ass_border_color = NULL;
54 char *ass_styles_file = NULL;
55 int ass_hinting = ASS_HINTING_LIGHT + 4; // light hinting for unscaled osd
57 #ifdef CONFIG_FONTCONFIG
58 extern int font_fontconfig;
59 #else
60 static int font_fontconfig = -1;
61 #endif
62 extern char *font_name;
63 extern char *sub_font_name;
64 extern float text_font_scale_factor;
65 extern int subtitle_autoscale;
67 #ifdef CONFIG_ICONV
68 extern char *sub_cp;
69 #else
70 static char *sub_cp = 0;
71 #endif
73 void process_force_style(ASS_Track *track);
75 ASS_Track *ass_default_track(ASS_Library *library)
77 ASS_Track *track = ass_new_track(library);
79 track->track_type = TRACK_TYPE_ASS;
80 track->Timer = 100.;
81 track->PlayResY = 288;
82 track->WrapStyle = 0;
84 if (ass_styles_file)
85 ass_read_styles(track, ass_styles_file, sub_cp);
87 if (track->n_styles == 0) {
88 ASS_Style *style;
89 int sid;
90 double fs;
91 uint32_t c1, c2;
93 sid = ass_alloc_style(track);
94 style = track->styles + sid;
95 style->Name = strdup("Default");
96 style->FontName = (font_fontconfig >= 0
97 && sub_font_name) ? strdup(sub_font_name)
98 : (font_fontconfig >= 0
99 && font_name) ? strdup(font_name) : strdup("Sans");
100 style->treat_fontname_as_pattern = 1;
102 fs = track->PlayResY * text_font_scale_factor / 100.;
103 // approximate autoscale coefficients
104 if (subtitle_autoscale == 2)
105 fs *= 1.3;
106 else if (subtitle_autoscale == 3)
107 fs *= 1.4;
108 style->FontSize = fs;
110 if (ass_color)
111 c1 = strtoll(ass_color, NULL, 16);
112 else
113 c1 = 0xFFFF0000;
114 if (ass_border_color)
115 c2 = strtoll(ass_border_color, NULL, 16);
116 else
117 c2 = 0x00000000;
119 style->PrimaryColour = c1;
120 style->SecondaryColour = c1;
121 style->OutlineColour = c2;
122 style->BackColour = 0x00000000;
123 style->BorderStyle = 1;
124 style->Alignment = 2;
125 style->Outline = 2;
126 style->MarginL = 10;
127 style->MarginR = 10;
128 style->MarginV = 5;
129 style->ScaleX = 1.;
130 style->ScaleY = 1.;
133 ass_process_force_style(track);
134 return track;
137 static int check_duplicate_plaintext_event(ASS_Track *track)
139 int i;
140 ASS_Event *evt = track->events + track->n_events - 1;
142 for (i = 0; i < track->n_events - 1; ++i) // ignoring last event, it is the one we are comparing with
143 if (track->events[i].Start == evt->Start &&
144 track->events[i].Duration == evt->Duration &&
145 strcmp(track->events[i].Text, evt->Text) == 0)
146 return 1;
147 return 0;
151 * \brief Convert subtitle to ASS_Events for the given track
152 * \param track track
153 * \param sub subtitle to convert
154 * \return event id
155 * note: assumes that subtitle is _not_ fps-based; caller must manually correct
156 * Start and Duration in other case.
158 int ass_process_subtitle(ASS_Track *track, subtitle *sub)
160 int eid;
161 ASS_Event *event;
162 int len = 0, j;
163 char *p;
164 char *end;
166 eid = ass_alloc_event(track);
167 event = track->events + eid;
169 event->Start = sub->start * 10;
170 event->Duration = (sub->end - sub->start) * 10;
171 event->Style = 0;
173 for (j = 0; j < sub->lines; ++j)
174 len += sub->text[j] ? strlen(sub->text[j]) : 0;
176 len += 2 * sub->lines; // '\N', including the one after the last line
177 len += 6; // {\anX}
178 len += 1; // '\0'
180 event->Text = malloc(len);
181 end = event->Text + len;
182 p = event->Text;
184 if (sub->alignment)
185 p += snprintf(p, end - p, "{\\an%d}", sub->alignment);
187 for (j = 0; j < sub->lines; ++j)
188 p += snprintf(p, end - p, "%s\\N", sub->text[j]);
190 if (sub->lines > 0)
191 p -= 2; // remove last "\N"
192 *p = 0;
194 if (check_duplicate_plaintext_event(track)) {
195 ass_free_event(track, eid);
196 track->n_events--;
197 return -1;
200 mp_msg(MSGT_ASS, MSGL_V,
201 "plaintext event at %" PRId64 ", +%" PRId64 ": %s \n",
202 (int64_t) event->Start, (int64_t) event->Duration, event->Text);
204 return eid;
209 * \brief Convert subdata to ASS_Track
210 * \param subdata subtitles struct from subreader
211 * \param fps video framerate
212 * \return newly allocated ASS_Track, filled with subtitles from subdata
214 ASS_Track *ass_read_subdata(ASS_Library *library, sub_data *subdata,
215 double fps)
217 ASS_Track *track;
218 int i;
220 track = ass_default_track(library);
221 track->name = subdata->filename ? strdup(subdata->filename) : 0;
223 for (i = 0; i < subdata->sub_num; ++i) {
224 int eid = ass_process_subtitle(track, subdata->subtitles + i);
225 if (eid < 0)
226 continue;
227 if (!subdata->sub_uses_time) {
228 track->events[eid].Start *= 100. / fps;
229 track->events[eid].Duration *= 100. / fps;
232 return track;
235 void ass_configure(ASS_Renderer *priv, int w, int h, int unscaled)
237 int hinting;
238 ass_set_frame_size(priv, w, h);
239 ass_set_margins(priv, ass_top_margin, ass_bottom_margin, 0, 0);
240 ass_set_use_margins(priv, ass_use_margins);
241 ass_set_font_scale(priv, ass_font_scale);
242 if (!unscaled && (ass_hinting & 4))
243 hinting = 0;
244 else
245 hinting = ass_hinting & 3;
246 ass_set_hinting(priv, hinting);
247 ass_set_line_spacing(priv, ass_line_spacing);
250 void ass_configure_fonts(ASS_Renderer *priv)
252 char *dir, *path, *family;
253 dir = get_path("fonts");
254 if (font_fontconfig < 0 && sub_font_name)
255 path = strdup(sub_font_name);
256 else if (font_fontconfig < 0 && font_name)
257 path = strdup(font_name);
258 else
259 path = get_path("subfont.ttf");
260 if (font_fontconfig >= 0 && sub_font_name)
261 family = strdup(sub_font_name);
262 else if (font_fontconfig >= 0 && font_name)
263 family = strdup(font_name);
264 else
265 family = 0;
267 ass_set_fonts(priv, path, family, font_fontconfig + 1, NULL, 1);
269 free(dir);
270 free(path);
271 free(family);
274 static void message_callback(int level, const char *format, va_list va, void *ctx)
276 mp_msg(MSGT_ASS, level, "[ass] ");
277 mp_msg_va(MSGT_ASS, level, format, va);
278 // libass messages lack trailing \n
279 mp_msg(MSGT_ASS, level, "\n");
282 ASS_Library *ass_init(void)
284 ASS_Library *priv;
285 char *path = get_path("fonts");
286 priv = ass_library_init();
287 ass_set_message_cb(priv, message_callback, NULL);
288 ass_set_fonts_dir(priv, path);
289 ass_set_extract_fonts(priv, extract_embedded_fonts);
290 ass_set_style_overrides(priv, ass_force_style_list);
291 free(path);
292 return priv;
295 int ass_force_reload = 0; // flag set if global ass-related settings were changed
297 ASS_Image *ass_mp_render_frame(ASS_Renderer *priv, ASS_Track *track,
298 long long now, int *detect_change)
300 if (ass_force_reload) {
301 ass_set_margins(priv, ass_top_margin, ass_bottom_margin, 0, 0);
302 ass_set_use_margins(priv, ass_use_margins);
303 ass_set_font_scale(priv, ass_font_scale);
304 ass_force_reload = 0;
306 return ass_render_frame(priv, track, now, detect_change);