From 284293ceb556297d479f5002c4d3428a02f4c67a Mon Sep 17 00:00:00 2001 From: Guido Cella Date: Thu, 19 Sep 2024 08:43:22 +0200 Subject: [PATCH] TOOLS/cycle-deinterlace-pullup.lua: fix removing the filter This has been broken since b56e63e2a9 removed vf del. Replace it with vf remove. Fixes #14881. --- TOOLS/lua/cycle-deinterlace-pullup.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOOLS/lua/cycle-deinterlace-pullup.lua b/TOOLS/lua/cycle-deinterlace-pullup.lua index b6f4b7e962..81f34eaf8c 100644 --- a/TOOLS/lua/cycle-deinterlace-pullup.lua +++ b/TOOLS/lua/cycle-deinterlace-pullup.lua @@ -30,7 +30,7 @@ end local function do_cycle() if pullup_on() == "yes" then -- if pullup is on remove it - mp.command(string.format("vf del @%s:pullup", pullup_label)) + mp.command(string.format("vf remove @%s:pullup", pullup_label)) return elseif mp.get_property("deinterlace") == "yes" then -- if deinterlace is on, turn it off and insert pullup filter