From 067bb9605c6333bf9d552d1c12f65ccadbb2fc2f Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 5 Jan 2015 19:18:08 +0100 Subject: sub: add option to not scale subtitles with window --sub-scale-by-window=no attempts to keep subs always at the same pixel size. The implementation is a bit all over the place, because it compensates already done scaling by an inverse scale factor, but it will probably do its job. Fixes #1424. (The semantics and name of --sub-scale-with-window are kept, and this adds a new option - the name is confusingly similar, but it's actually analogue to --osd-scale-by-window.) --- options/options.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'options/options.c') diff --git a/options/options.c b/options/options.c index 19dca2ad1b..0875e6ded5 100644 --- a/options/options.c +++ b/options/options.c @@ -347,6 +347,7 @@ const m_option_t mp_opts[] = { ({"simple", 0}, {"complex", 1})), OPT_CHOICE("ass-style-override", ass_style_override, 0, ({"no", 0}, {"yes", 1}, {"force", 3}, {"signfs", 4})), + OPT_FLAG("sub-scale-by-window", sub_scale_by_window, 0), OPT_FLAG("sub-scale-with-window", sub_scale_with_window, 0), OPT_FLAG("osd-bar", osd_bar_visible, 0), OPT_FLOATRANGE("osd-bar-align-x", osd_bar_align_x, 0, -1.0, +1.0), @@ -699,6 +700,7 @@ const struct MPOpts mp_default_opts = { .osd_bar_h = 3.125, .osd_scale = 1, .osd_scale_by_window = 1, + .sub_scale_by_window = 1, .use_text_osd = 1, #if HAVE_LUA .lua_load_osc = 1, -- cgit v1.2.3