summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorrcombs <rcombs@rcombs.me>2020-10-03 20:09:21 -0500
committerJan Ekström <jeebjp@gmail.com>2020-11-22 17:37:43 +0200
commit4dcaf70b9653cd04c2159fac6545f25f8e1cbcf9 (patch)
treefa5e26b9da6df70ccf7e5ecf71578810861c0cb8 /options
parent2409300d408704af347b52b5d2ec58d517cf35a3 (diff)
downloadmpv-4dcaf70b9653cd04c2159fac6545f25f8e1cbcf9.tar.bz2
mpv-4dcaf70b9653cd04c2159fac6545f25f8e1cbcf9.tar.xz
Revert "options: disable vsfilter blur compat by default"
This reverts commit 3d17e19c2c5ca80f916411e7e61126cac8443baa. The effect of turning off this setting is that mpv doesn't tell libass what the video stream's resolution is. This happens to result in some files having their transforms scaled in ways that give higher performance (as described in #7435) because libass happened to guess a video resolution that resulted in transforms yielding smaller bitmaps, but it's just as easy for the opposite to happen depending on the resolutions and effects involved. The option's name is also somewhat misleading: setting the storage size affects blur, but it also affects stroke (which is far more important for the vast majority of scripts) and 3D transforms (which look very screwy when done wrong).
Diffstat (limited to 'options')
-rw-r--r--options/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index c297200a45..a11c1114b9 100644
--- a/options/options.c
+++ b/options/options.c
@@ -287,7 +287,7 @@ const struct m_sub_options mp_subtitle_sub_opts = {
.sub_scale = 1,
.ass_vsfilter_aspect_compat = 1,
.ass_vsfilter_color_compat = 1,
- .ass_vsfilter_blur_compat = 0,
+ .ass_vsfilter_blur_compat = 1,
.ass_style_override = 1,
.ass_shaper = 1,
.use_embedded_fonts = 1,