summaryrefslogtreecommitdiffstats
path: root/sub/osd.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-09-25 22:11:39 +0200
committerwm4 <wm4@nowhere>2019-09-25 22:11:48 +0200
commitff2aed2b56e43665e2b10acf06fa107877799bec (patch)
tree611cff3c42652220b554f41a7a7958f64bc698df /sub/osd.h
parentbbf6e103b44007165d3116315e62ba2cb43fc391 (diff)
downloadmpv-ff2aed2b56e43665e2b10acf06fa107877799bec.tar.bz2
mpv-ff2aed2b56e43665e2b10acf06fa107877799bec.tar.xz
sub: make font provider user-selectable
libass had an API to configure this since 2013. mpv always used ASS_FONTPROVIDER_AUTODETECT, because usually there's little reason to use anything else. The intention of the now added option is to allow users to disable use of system fonts. I didn't consider it worth the trouble to add the coretext and directwrite enum items from ASS_DefaultFontProvider. The "auto" choice will have the same effect if they're available. Also, the part of the code which defines the option does not necessarily have libass available (it's still optional!), so defining all enum items as choices is icky. I still added fontconfig, since that may be nice to emulate a nostalgic 2010 feeling of mpv freezing on fontconfig. The option for OSD is even less useful. (But you get it for free, and why pass up a chance to add yet another useless option?) This is not quite what was requested in #6947, but as close as it gets.
Diffstat (limited to 'sub/osd.h')
-rw-r--r--sub/osd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sub/osd.h b/sub/osd.h
index 114ab4a8f1..660a828767 100644
--- a/sub/osd.h
+++ b/sub/osd.h
@@ -137,6 +137,7 @@ struct osd_style_opts {
int bold;
int italic;
int justify;
+ int font_provider;
};
extern const struct m_sub_options osd_style_conf;