2009-07-25 04:24:39 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with libass; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
2011-01-19 16:00:22 +00:00
|
|
|
#include <stdbool.h>
|
2009-07-25 04:24:39 +00:00
|
|
|
|
|
|
|
#include <ass/ass.h>
|
|
|
|
#include <ass/ass_types.h>
|
|
|
|
|
2010-03-09 20:35:53 +00:00
|
|
|
#include <libavutil/common.h>
|
|
|
|
|
2010-10-30 16:39:40 +00:00
|
|
|
#include "config.h"
|
2012-11-09 00:06:43 +00:00
|
|
|
#include "core/mp_msg.h"
|
|
|
|
#include "core/path.h"
|
2009-07-25 04:24:39 +00:00
|
|
|
#include "ass_mp.h"
|
|
|
|
#include "subreader.h"
|
osd: use libass for OSD rendering
The OSD will now be rendered with libass. The old rendering code, which
used freetype/fontconfig and did text layout manually, is disabled. To
re-enable the old code, use the --disable-libass-osd configure switch.
Some switches do nothing with the new code enabled, such as -subalign,
-sub-bg-alpha, -sub-bg-color, and many more. (The reason is mostly that
the code for rendering unstyled subtitles with libass doesn't make any
attempts to support them. Some of them could be supported in theory.)
Teletext rendering is not implemented in the new OSD rendering code. I
don't have any teletext sources for testing, and since teletext is
being phased out world-wide, the need for this is questionable.
Note that rendering is extremely inefficient, mostly because the libass
output is blended with the extremely strange mplayer OSD format. This
could be improved at a later point.
Remove most OSD rendering from vo_aa.c, because that was extremely
hacky, can't be made work with osd_libass, and didn't work anyway in
my tests.
Internally, some cleanup is done. Subtitle and OSD related variable
declarations were literally all over the place. Move them to sub.h and
sub.c, which were hoarding most of these declarations already. Make the
player core in mplayer.c free of concerns like bitmap font loading.
The old OSD rendering code has been moved to osd_ft.c. The font_load.c
and font_load_ft.c are only needed and compiled if the old OSD
rendering code is configured.
2012-03-22 05:26:37 +00:00
|
|
|
#include "sub/sub.h"
|
2010-03-09 20:35:53 +00:00
|
|
|
#include "stream/stream.h"
|
2012-11-09 00:06:43 +00:00
|
|
|
#include "core/options.h"
|
2009-07-25 04:24:39 +00:00
|
|
|
|
2012-11-17 19:56:45 +00:00
|
|
|
void mp_ass_set_style(ASS_Style *style, struct osd_style_opts *opts)
|
|
|
|
{
|
|
|
|
if (opts->font) {
|
|
|
|
free(style->FontName);
|
|
|
|
style->FontName = strdup(opts->font);
|
|
|
|
style->treat_fontname_as_pattern = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// libass_font_size = FontSize * (window_height / MP_ASS_FONT_PLAYRESY)
|
|
|
|
// scale translates parameters from PlayResY=720 to MP_ASS_FONT_PLAYRESY
|
|
|
|
double scale = MP_ASS_FONT_PLAYRESY / 720.0;
|
|
|
|
|
|
|
|
style->FontSize = opts->font_size * scale;
|
|
|
|
style->PrimaryColour = MP_ASS_COLOR(opts->color);
|
|
|
|
style->SecondaryColour = style->PrimaryColour;
|
|
|
|
if (opts->back_color.a) {
|
|
|
|
style->OutlineColour = MP_ASS_COLOR(opts->back_color);
|
|
|
|
style->BorderStyle = 3; // opaque box
|
|
|
|
} else {
|
|
|
|
style->OutlineColour = MP_ASS_COLOR(opts->border_color);
|
|
|
|
style->BorderStyle = 1; // outline
|
|
|
|
}
|
|
|
|
style->BackColour = MP_ASS_COLOR(opts->shadow_color);
|
|
|
|
style->Outline = opts->border_size * scale;
|
|
|
|
style->Shadow = opts->shadow_offset * scale;
|
|
|
|
style->Spacing = opts->spacing * scale;
|
|
|
|
style->MarginL = opts->margin_x * scale;
|
|
|
|
style->MarginR = style->MarginL;
|
|
|
|
style->MarginV = opts->margin_y * scale;
|
|
|
|
style->ScaleX = 1.;
|
|
|
|
style->ScaleY = 1.;
|
2013-04-13 16:53:03 +00:00
|
|
|
#if LIBASS_VERSION >= 0x01020000
|
|
|
|
style->Blur = opts->blur;
|
|
|
|
#endif
|
2012-11-17 19:56:45 +00:00
|
|
|
}
|
|
|
|
|
2011-09-03 10:47:56 +00:00
|
|
|
ASS_Track *mp_ass_default_track(ASS_Library *library, struct MPOpts *opts)
|
2009-07-25 04:24:39 +00:00
|
|
|
{
|
2009-08-06 20:58:31 +00:00
|
|
|
ASS_Track *track = ass_new_track(library);
|
2009-07-25 04:24:39 +00:00
|
|
|
|
|
|
|
track->track_type = TRACK_TYPE_ASS;
|
|
|
|
track->Timer = 100.;
|
2012-11-17 19:56:45 +00:00
|
|
|
track->PlayResY = MP_ASS_FONT_PLAYRESY;
|
2009-07-25 04:24:39 +00:00
|
|
|
track->WrapStyle = 0;
|
|
|
|
|
2012-10-11 00:23:29 +00:00
|
|
|
if (opts->ass_styles_file && opts->ass_style_override)
|
2011-09-03 10:47:56 +00:00
|
|
|
ass_read_styles(track, opts->ass_styles_file, sub_cp);
|
2009-07-25 04:24:39 +00:00
|
|
|
|
|
|
|
if (track->n_styles == 0) {
|
2011-01-26 02:12:25 +00:00
|
|
|
track->Kerning = true;
|
|
|
|
int sid = ass_alloc_style(track);
|
2011-05-30 18:57:58 +00:00
|
|
|
track->default_style = sid;
|
2011-01-26 02:12:25 +00:00
|
|
|
ASS_Style *style = track->styles + sid;
|
2009-07-25 04:24:39 +00:00
|
|
|
style->Name = strdup("Default");
|
|
|
|
style->Alignment = 2;
|
2013-01-04 15:10:17 +00:00
|
|
|
mp_ass_set_style(style, opts->sub_text_style);
|
2009-07-25 04:24:39 +00:00
|
|
|
}
|
|
|
|
|
2012-10-11 00:23:29 +00:00
|
|
|
if (opts->ass_style_override)
|
|
|
|
ass_process_force_style(track);
|
|
|
|
|
2009-07-25 04:24:39 +00:00
|
|
|
return track;
|
|
|
|
}
|
|
|
|
|
2009-08-06 20:58:31 +00:00
|
|
|
static int check_duplicate_plaintext_event(ASS_Track *track)
|
2009-07-25 04:24:39 +00:00
|
|
|
{
|
|
|
|
int i;
|
2009-08-06 20:58:31 +00:00
|
|
|
ASS_Event *evt = track->events + track->n_events - 1;
|
2009-07-25 04:24:39 +00:00
|
|
|
|
|
|
|
for (i = 0; i < track->n_events - 1; ++i) // ignoring last event, it is the one we are comparing with
|
|
|
|
if (track->events[i].Start == evt->Start &&
|
|
|
|
track->events[i].Duration == evt->Duration &&
|
|
|
|
strcmp(track->events[i].Text, evt->Text) == 0)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-08-06 20:58:31 +00:00
|
|
|
* \brief Convert subtitle to ASS_Events for the given track
|
|
|
|
* \param track track
|
2009-07-25 04:24:39 +00:00
|
|
|
* \param sub subtitle to convert
|
|
|
|
* \return event id
|
|
|
|
* note: assumes that subtitle is _not_ fps-based; caller must manually correct
|
|
|
|
* Start and Duration in other case.
|
|
|
|
**/
|
2011-01-18 13:33:36 +00:00
|
|
|
static int ass_process_subtitle(ASS_Track *track, subtitle *sub)
|
2009-07-25 04:24:39 +00:00
|
|
|
{
|
|
|
|
int eid;
|
2009-08-06 20:58:31 +00:00
|
|
|
ASS_Event *event;
|
2009-07-25 04:24:39 +00:00
|
|
|
int len = 0, j;
|
|
|
|
char *p;
|
|
|
|
char *end;
|
|
|
|
|
|
|
|
eid = ass_alloc_event(track);
|
|
|
|
event = track->events + eid;
|
|
|
|
|
|
|
|
event->Start = sub->start * 10;
|
|
|
|
event->Duration = (sub->end - sub->start) * 10;
|
2011-05-30 18:57:58 +00:00
|
|
|
event->Style = track->default_style;
|
2009-07-25 04:24:39 +00:00
|
|
|
|
|
|
|
for (j = 0; j < sub->lines; ++j)
|
|
|
|
len += sub->text[j] ? strlen(sub->text[j]) : 0;
|
|
|
|
|
|
|
|
len += 2 * sub->lines; // '\N', including the one after the last line
|
|
|
|
len += 6; // {\anX}
|
|
|
|
len += 1; // '\0'
|
|
|
|
|
|
|
|
event->Text = malloc(len);
|
|
|
|
end = event->Text + len;
|
|
|
|
p = event->Text;
|
|
|
|
|
|
|
|
if (sub->alignment)
|
|
|
|
p += snprintf(p, end - p, "{\\an%d}", sub->alignment);
|
|
|
|
|
|
|
|
for (j = 0; j < sub->lines; ++j)
|
|
|
|
p += snprintf(p, end - p, "%s\\N", sub->text[j]);
|
|
|
|
|
|
|
|
if (sub->lines > 0)
|
|
|
|
p -= 2; // remove last "\N"
|
|
|
|
*p = 0;
|
|
|
|
|
|
|
|
if (check_duplicate_plaintext_event(track)) {
|
|
|
|
ass_free_event(track, eid);
|
|
|
|
track->n_events--;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_msg(MSGT_ASS, MSGL_V,
|
|
|
|
"plaintext event at %" PRId64 ", +%" PRId64 ": %s \n",
|
|
|
|
(int64_t) event->Start, (int64_t) event->Duration, event->Text);
|
|
|
|
|
|
|
|
return eid;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2009-08-06 20:58:31 +00:00
|
|
|
* \brief Convert subdata to ASS_Track
|
2009-07-25 04:24:39 +00:00
|
|
|
* \param subdata subtitles struct from subreader
|
|
|
|
* \param fps video framerate
|
2009-08-06 20:58:31 +00:00
|
|
|
* \return newly allocated ASS_Track, filled with subtitles from subdata
|
2009-07-25 04:24:39 +00:00
|
|
|
*/
|
2011-09-03 10:47:56 +00:00
|
|
|
ASS_Track *mp_ass_read_subdata(ASS_Library *library, struct MPOpts *opts,
|
|
|
|
sub_data *subdata, double fps)
|
2009-07-25 04:24:39 +00:00
|
|
|
{
|
2009-08-06 20:58:31 +00:00
|
|
|
ASS_Track *track;
|
2009-07-25 04:24:39 +00:00
|
|
|
int i;
|
|
|
|
|
2011-09-03 10:47:56 +00:00
|
|
|
track = mp_ass_default_track(library, opts);
|
2009-07-25 04:24:39 +00:00
|
|
|
track->name = subdata->filename ? strdup(subdata->filename) : 0;
|
|
|
|
|
|
|
|
for (i = 0; i < subdata->sub_num; ++i) {
|
|
|
|
int eid = ass_process_subtitle(track, subdata->subtitles + i);
|
|
|
|
if (eid < 0)
|
|
|
|
continue;
|
|
|
|
if (!subdata->sub_uses_time) {
|
|
|
|
track->events[eid].Start *= 100. / fps;
|
|
|
|
track->events[eid].Duration *= 100. / fps;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return track;
|
|
|
|
}
|
|
|
|
|
2011-01-20 16:47:18 +00:00
|
|
|
ASS_Track *mp_ass_read_stream(ASS_Library *library, const char *fname,
|
|
|
|
char *charset)
|
2010-03-09 20:35:53 +00:00
|
|
|
{
|
|
|
|
ASS_Track *track;
|
|
|
|
|
2011-02-25 16:10:00 +00:00
|
|
|
struct stream *s = open_stream(fname, NULL, NULL);
|
|
|
|
if (!s)
|
2010-03-09 20:35:53 +00:00
|
|
|
// Stream code should have printed an error already
|
|
|
|
return NULL;
|
2011-02-25 16:10:00 +00:00
|
|
|
struct bstr content = stream_read_complete(s, NULL, 100000000, 1);
|
|
|
|
if (content.start == NULL)
|
|
|
|
mp_tmsg(MSGT_ASS, MSGL_ERR, "Refusing to load subtitle file "
|
|
|
|
"larger than 100 MB: %s\n", fname);
|
|
|
|
free_stream(s);
|
|
|
|
if (content.len == 0) {
|
|
|
|
talloc_free(content.start);
|
2010-03-09 20:35:53 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2011-02-25 16:10:00 +00:00
|
|
|
content.start[content.len] = 0;
|
|
|
|
track = ass_read_memory(library, content.start, content.len, charset);
|
2010-03-09 20:35:53 +00:00
|
|
|
if (track) {
|
|
|
|
free(track->name);
|
|
|
|
track->name = strdup(fname);
|
|
|
|
}
|
2011-02-25 16:10:00 +00:00
|
|
|
talloc_free(content.start);
|
2010-03-09 20:35:53 +00:00
|
|
|
return track;
|
|
|
|
}
|
|
|
|
|
2012-08-25 14:47:50 +00:00
|
|
|
void mp_ass_configure(ASS_Renderer *priv, struct MPOpts *opts,
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
struct mp_osd_res *dim)
|
2009-07-25 04:24:39 +00:00
|
|
|
{
|
2012-08-25 14:47:50 +00:00
|
|
|
ass_set_frame_size(priv, dim->w, dim->h);
|
|
|
|
ass_set_margins(priv, dim->mt, dim->mb, dim->ml, dim->mr);
|
2012-10-11 00:23:29 +00:00
|
|
|
|
|
|
|
int set_use_margins = 0;
|
2012-12-28 07:38:18 +00:00
|
|
|
#if LIBASS_VERSION >= 0x01010000
|
2012-10-11 00:23:29 +00:00
|
|
|
int set_sub_pos = 0;
|
2012-12-28 07:38:18 +00:00
|
|
|
#endif
|
2012-10-11 00:23:29 +00:00
|
|
|
float set_line_spacing = 0;
|
|
|
|
float set_font_scale = 1;
|
|
|
|
int set_hinting = 0;
|
|
|
|
if (opts->ass_style_override) {
|
|
|
|
set_use_margins = opts->ass_use_margins;
|
2012-12-28 07:38:18 +00:00
|
|
|
#if LIBASS_VERSION >= 0x01010000
|
2012-10-11 00:23:29 +00:00
|
|
|
set_sub_pos = 100 - sub_pos;
|
2012-12-28 07:38:18 +00:00
|
|
|
#endif
|
2012-10-11 00:23:29 +00:00
|
|
|
set_line_spacing = opts->ass_line_spacing;
|
2012-11-17 19:56:45 +00:00
|
|
|
set_font_scale = opts->sub_scale;
|
2012-10-16 05:30:30 +00:00
|
|
|
set_hinting = opts->ass_hinting & 3; // +4 was for no hinting if scaled
|
2012-10-11 00:23:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ass_set_use_margins(priv, set_use_margins);
|
2012-10-11 00:23:22 +00:00
|
|
|
#if LIBASS_VERSION >= 0x01010000
|
2012-10-11 00:23:29 +00:00
|
|
|
ass_set_line_position(priv, set_sub_pos);
|
2012-10-11 00:23:22 +00:00
|
|
|
#endif
|
2012-10-11 00:23:29 +00:00
|
|
|
ass_set_font_scale(priv, set_font_scale);
|
|
|
|
ass_set_hinting(priv, set_hinting);
|
|
|
|
ass_set_line_spacing(priv, set_line_spacing);
|
2009-07-25 04:24:39 +00:00
|
|
|
}
|
|
|
|
|
2012-11-17 19:56:45 +00:00
|
|
|
void mp_ass_configure_fonts(ASS_Renderer *priv, struct osd_style_opts *opts)
|
2009-07-25 04:24:39 +00:00
|
|
|
{
|
2012-12-09 14:05:21 +00:00
|
|
|
char *default_font = mp_find_user_config_file("subfont.ttf");
|
|
|
|
char *config = mp_find_config_file("fonts.conf");
|
2012-12-09 11:45:05 +00:00
|
|
|
|
2013-02-08 22:50:21 +00:00
|
|
|
if (default_font && !mp_path_exists(default_font)) {
|
2012-12-09 14:05:21 +00:00
|
|
|
talloc_free(default_font);
|
2012-12-09 11:45:05 +00:00
|
|
|
default_font = NULL;
|
|
|
|
}
|
|
|
|
|
2013-03-20 18:53:49 +00:00
|
|
|
mp_msg(MSGT_ASS, MSGL_V, "[ass] Setting up fonts...\n");
|
2012-12-09 11:45:05 +00:00
|
|
|
ass_set_fonts(priv, default_font, opts->font, 1, config, 1);
|
2013-03-20 18:53:49 +00:00
|
|
|
mp_msg(MSGT_ASS, MSGL_V, "[ass] Done.\n");
|
2009-07-25 04:24:39 +00:00
|
|
|
|
2012-12-09 14:05:21 +00:00
|
|
|
talloc_free(default_font);
|
|
|
|
talloc_free(config);
|
2009-07-25 04:24:39 +00:00
|
|
|
}
|
|
|
|
|
2012-09-28 19:38:52 +00:00
|
|
|
void mp_ass_render_frame(ASS_Renderer *renderer, ASS_Track *track, double time,
|
|
|
|
struct sub_bitmap **parts, struct sub_bitmaps *res)
|
|
|
|
{
|
|
|
|
int changed;
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
ASS_Image *imgs = ass_render_frame(renderer, track, time, &changed);
|
2012-09-28 19:38:52 +00:00
|
|
|
if (changed == 2)
|
|
|
|
res->bitmap_id = ++res->bitmap_pos_id;
|
|
|
|
else if (changed)
|
|
|
|
res->bitmap_pos_id++;
|
|
|
|
res->format = SUBBITMAP_LIBASS;
|
|
|
|
|
|
|
|
res->parts = *parts;
|
|
|
|
res->num_parts = 0;
|
|
|
|
int num_parts_alloc = MP_TALLOC_ELEMS(res->parts);
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
for (struct ass_image *img = imgs; img; img = img->next) {
|
2012-09-28 19:38:52 +00:00
|
|
|
if (img->w == 0 || img->h == 0)
|
|
|
|
continue;
|
|
|
|
if (res->num_parts >= num_parts_alloc) {
|
|
|
|
num_parts_alloc = FFMAX(num_parts_alloc * 2, 32);
|
|
|
|
res->parts = talloc_realloc(NULL, res->parts, struct sub_bitmap,
|
|
|
|
num_parts_alloc);
|
|
|
|
}
|
|
|
|
struct sub_bitmap *p = &res->parts[res->num_parts];
|
|
|
|
p->bitmap = img->bitmap;
|
|
|
|
p->stride = img->stride;
|
|
|
|
p->libass.color = img->color;
|
|
|
|
p->dw = p->w = img->w;
|
|
|
|
p->dh = p->h = img->h;
|
|
|
|
p->x = img->dst_x;
|
|
|
|
p->y = img->dst_y;
|
|
|
|
res->num_parts++;
|
|
|
|
}
|
|
|
|
*parts = res->parts;
|
|
|
|
}
|
|
|
|
|
2012-07-29 21:57:46 +00:00
|
|
|
static int map_ass_level[] = {
|
|
|
|
MSGL_ERR, // 0 "FATAL errors"
|
|
|
|
MSGL_WARN,
|
|
|
|
MSGL_INFO,
|
|
|
|
MSGL_V,
|
|
|
|
MSGL_V,
|
|
|
|
MSGL_V, // 5 application recommended level
|
|
|
|
MSGL_DBG2,
|
|
|
|
MSGL_DBG3, // 7 "verbose DEBUG"
|
|
|
|
};
|
|
|
|
|
2009-07-25 04:24:39 +00:00
|
|
|
static void message_callback(int level, const char *format, va_list va, void *ctx)
|
|
|
|
{
|
2012-07-29 21:57:46 +00:00
|
|
|
level = map_ass_level[level];
|
2009-07-25 04:24:39 +00:00
|
|
|
mp_msg(MSGT_ASS, level, "[ass] ");
|
|
|
|
mp_msg_va(MSGT_ASS, level, format, va);
|
|
|
|
// libass messages lack trailing \n
|
|
|
|
mp_msg(MSGT_ASS, level, "\n");
|
|
|
|
}
|
|
|
|
|
2011-09-03 10:47:56 +00:00
|
|
|
ASS_Library *mp_ass_init(struct MPOpts *opts)
|
2009-07-25 04:24:39 +00:00
|
|
|
{
|
2009-08-06 20:58:31 +00:00
|
|
|
ASS_Library *priv;
|
2012-12-09 14:05:21 +00:00
|
|
|
char *path = mp_find_user_config_file("fonts");
|
2009-07-25 04:24:39 +00:00
|
|
|
priv = ass_library_init();
|
|
|
|
ass_set_message_cb(priv, message_callback, NULL);
|
2013-02-08 22:50:21 +00:00
|
|
|
if (path)
|
|
|
|
ass_set_fonts_dir(priv, path);
|
2011-09-03 10:47:56 +00:00
|
|
|
ass_set_extract_fonts(priv, opts->use_embedded_fonts);
|
2012-12-09 14:05:21 +00:00
|
|
|
talloc_free(path);
|
2009-07-25 04:24:39 +00:00
|
|
|
return priv;
|
|
|
|
}
|