From: Steinar H. Gunderson Date: Sat, 13 Oct 2012 21:43:12 +0000 (+0200) Subject: Fix an issue where we could try to incorrectly gamma correct the colorspace conversio... X-Git-Tag: 1.0~257 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=02dd3a9d0eac3d760dd09cf3690d0c1b92155cf1;hp=0de0202b22a6349d0f9c838947a96eef8155ac90 Fix an issue where we could try to incorrectly gamma correct the colorspace conversion inserted at the end, due to a missing propagate call. --- diff --git a/effect_chain.cpp b/effect_chain.cpp index 9ea2c03..3bc04a3 100644 --- a/effect_chain.cpp +++ b/effect_chain.cpp @@ -764,6 +764,7 @@ void EffectChain::fix_output_color_space() conversion->effect->set_int("destination_space", output_format.color_space); conversion->output_color_space = output_format.color_space; connect_nodes(output, conversion); + propagate_gamma_and_color_space(); } }