summaryrefslogtreecommitdiffstats
path: root/sub
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-09-25 21:42:29 +0200
committerwm4 <wm4@nowhere>2013-09-25 21:42:29 +0200
commit72fbd846db3bf446b3fa00eba4f0197e6214f942 (patch)
treeb0065df482034f37f82b16aa26409add5668f3a4 /sub
parent1e4f08c50cc5e3abb61c95903a270c8e281d2e5b (diff)
downloadmpv-72fbd846db3bf446b3fa00eba4f0197e6214f942.tar.bz2
mpv-72fbd846db3bf446b3fa00eba4f0197e6214f942.tar.xz
options: allow selecting the libass shaper
I'm using the word "languages" instead of "scripts" in the manpage, but I think that's easier to understand with a smaller amount of descriptions.
Diffstat (limited to 'sub')
-rw-r--r--sub/ass_mp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sub/ass_mp.c b/sub/ass_mp.c
index 7af3926058..c46daf415e 100644
--- a/sub/ass_mp.c
+++ b/sub/ass_mp.c
@@ -139,6 +139,9 @@ void mp_ass_configure(ASS_Renderer *priv, struct MPOpts *opts,
#if LIBASS_VERSION >= 0x01010000
ass_set_line_position(priv, set_sub_pos);
#endif
+#if LIBASS_VERSION >= 0x01000000
+ ass_set_shaper(priv, opts->ass_shaper);
+#endif
ass_set_font_scale(priv, set_font_scale);
ass_set_hinting(priv, set_hinting);
ass_set_line_spacing(priv, set_line_spacing);