From 83b70dd60863377cb281e6be5206304e10373e30 Mon Sep 17 00:00:00 2001 From: Good Guy Date: Mon, 20 Sep 2021 19:16:08 -0600 Subject: [PATCH] fix problem of using opengl transitions with Motion51 when in OpenGL mode --- cinelerra-5.1/plugins/motion51/motion51.C | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); -- 2.26.2