From 24bfa82a91a49b0e2a120b719a6b89ac2b1b415b Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 25 Nov 2012 00:06:16 +0100 Subject: sub: reimplement -spugauss as --sub-gauss Apparently the -spugauss option was popular. The code originally implementing this is gone (scaler stuff in spudec.c). Reimplement it using libswscale to scale and blur image subtitles if the --sub-gauss option is set. The code does some rather lazy padding to allow the blur to spread pixels past the original image bounding box. (This problem exists with normal bilinear scaling too, but is barely noticable.) Technically, this doesn't just blur subtitles, but anything RGBA (or indexed) that enters the OSD rendering path. But only image subtitles produce these OSD formats currently, so no explicit check is done to prevent blurring in other cases. --- core/cfg-mplayer.h | 1 + 1 file changed, 1 insertion(+) (limited to 'core/cfg-mplayer.h') diff --git a/core/cfg-mplayer.h b/core/cfg-mplayer.h index d9dcb56e6a..ded7245f83 100644 --- a/core/cfg-mplayer.h +++ b/core/cfg-mplayer.h @@ -506,6 +506,7 @@ const m_option_t common_opts[] = { {"autosub-match", &sub_match_fuzziness, CONF_TYPE_CHOICE, 0, M_CHOICES(({"exact", 0}, {"fuzzy", 1}, {"all", 2}))}, {"sub-pos", &sub_pos, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, + OPT_FLOATRANGE("sub-gauss", sub_gauss, 0, 0.0, 3.0), OPT_MAKE_FLAGS("ass", ass_enabled, 0), OPT_FLOATRANGE("sub-scale", sub_scale, 0, 0, 100), OPT_FLOATRANGE("ass-line-spacing", ass_line_spacing, 0, -1000, 1000), -- cgit v1.2.3