From: Good Guy Date: Tue, 21 Sep 2021 01:16:08 +0000 (-0600) Subject: fix problem of using opengl transitions with Motion51 when in OpenGL mode X-Git-Tag: 2021-09~2 X-Git-Url: https://git.cinelerra-gg.org/git/?p=goodguy%2Fcinelerra.git;a=commitdiff_plain;h=83b70dd60863377cb281e6be5206304e10373e30;ds=sidebyside fix problem of using opengl transitions with Motion51 when in OpenGL mode --- diff --git a/cinelerra-5.1/plugins/motion51/motion51.C b/cinelerra-5.1/plugins/motion51/motion51.C index b61e2244..d694b234 100644 --- a/cinelerra-5.1/plugins/motion51/motion51.C +++ b/cinelerra-5.1/plugins/motion51/motion51.C @@ -434,7 +434,9 @@ int Motion51Main::process_buffer(VFrame **frame, int64_t position, double frame_ &corner_float : &corner_uint8; int use_opengl = get_use_opengl(); - read_frame(out, target_layer, out_position, frame_rate, use_opengl); +// Do NOT use opengl here because if you so than dissolve, flash, and zoome can cause problems. +// read_frame(out, target_layer, out_position, frame_rate, use_opengl); + read_frame(out, target_layer, out_position, frame_rate, 0); out_w = out->get_w(); out_h = out->get_h(); out_r = 0.5 * (out_w < out_h ? out_w : out_h);