From 3f8a466a253a241d253f149518df1b9ceb77c103 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Wed, 24 Feb 2016 01:26:10 +0100 Subject: [PATCH] Fix fading to/from deinterlaced sources. --- theme.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme.lua b/theme.lua index 243b352..c201414 100644 --- a/theme.lua +++ b/theme.lua @@ -537,12 +537,12 @@ function get_chain(num, t, width, height, signals) local input1_scale = needs_scale(signals, fade_dst_signal, width, height) local chain = fade_chains[input0_type][input0_scale][input1_type][input1_scale][true] prepare = function() - if input0_type == "live" then + if input0_type == "live" or input0_type == "livedeint" then chain.input0.input:connect_signal(fade_src_signal) set_neutral_color_from_signal(chain.input0.wb_effect, fade_src_signal) end set_scale_parameters_if_needed(chain.input0, width, height) - if input1_type == "live" then + if input1_type == "live" or input1_type == "livedeint" then chain.input1.input:connect_signal(fade_dst_signal) set_neutral_color_from_signal(chain.input1.wb_effect, fade_dst_signal) end -- 2.39.2