summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.dev>2023-09-16 13:41:18 +0200
committerNiklas Haas <github-daiK1o@haasn.dev>2023-09-16 14:33:45 +0200
commitbc351809333702b2243d24febf1aa14573bc2f58 (patch)
treec54338360a1dcae5523c4cedca336270b01f2ee2 /video
parenta24aa6b8f7a30c5ac767c1a44b4c973372a79be5 (diff)
downloadmpv-bc351809333702b2243d24febf1aa14573bc2f58.tar.bz2
mpv-bc351809333702b2243d24febf1aa14573bc2f58.tar.xz
vo_gpu: remove --scale-wblur etc
No need for this since it's entirely redundant with just changing the filter radius directly. In fact, that's the whole *point* of the filter radius - it does not modify the filter, it modifies the scaling of the window. Of course, this does not work for non-resizable kernels. But, really, who cares?
Diffstat (limited to 'video')
-rw-r--r--video/out/gpu/video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/gpu/video.c b/video/out/gpu/video.c
index e9e05ed824..510915a1db 100644
--- a/video/out/gpu/video.c
+++ b/video/out/gpu/video.c
@@ -356,7 +356,7 @@ static int validate_error_diffusion_opt(struct mp_log *log, const m_option_t *op
{n"-cutoff", OPT_FLOAT(scaler[i].cutoff), M_RANGE(0.0, 1.0)}, \
{n"-taper", OPT_FLOAT(scaler[i].kernel.taper), M_RANGE(0.0, 1.0)}, \
{n"-wparam", OPT_FLOATDEF(scaler[i].window.params[0])}, \
- {n"-wblur", OPT_FLOAT(scaler[i].window.blur)}, \
+ {n"-wblur", OPT_REMOVED("Just adjust filter radius directly")}, \
{n"-wtaper", OPT_FLOAT(scaler[i].window.taper), M_RANGE(0.0, 1.0)}, \
{n"-clamp", OPT_FLOAT(scaler[i].clamp), M_RANGE(0.0, 1.0)}, \
{n"-radius", OPT_FLOAT(scaler[i].radius), M_RANGE(0.5, 16.0)}, \