summaryrefslogtreecommitdiff
path: root/media-libs/mlt/files/mlt-6.20.0-crash-w-unsupported-preview-scale.patch
blob: 25057b3c1aebc2feac6d6a7a5b1cba7caa285f0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
From dc585bfa5765db418923e7b4802c03bc57733111 Mon Sep 17 00:00:00 2001
From: Dan Dennedy <dan@dennedy.org>
Date: Mon, 2 Mar 2020 14:02:26 -0800
Subject: [PATCH] fix crash with filters not supporting preview scale

---
 src/modules/frei0r/transition_frei0r.c | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/src/modules/frei0r/transition_frei0r.c b/src/modules/frei0r/transition_frei0r.c
index b69011719..f11266b75 100644
--- a/src/modules/frei0r/transition_frei0r.c
+++ b/src/modules/frei0r/transition_frei0r.c
@@ -1,7 +1,7 @@
 /*
  * transition_frei0r.c -- frei0r transition
  * Copyright (c) 2008 Marco Gittler <g.marco@freenet.de>
- * Copyright (C) 2009-2019 Meltytech, LLC
+ * Copyright (C) 2009-2020 Meltytech, LLC
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -67,9 +67,25 @@ static int transition_get_image( mlt_frame a_frame, uint8_t **image, mlt_image_f
 	}
 	else
 	{
+		mlt_image_format b_format = *format;
+		int b_width = *width;
+		int b_height = *height;
+
 		error = mlt_frame_get_image( a_frame, &images[0], format, width, height, 0 );
 		if ( error ) return error;
 
+		if (*width != b_width || *height != b_height) {
+			if (invert) {
+				*image = images[0];
+			} else {
+				*image = images[1];
+				*format = b_format;
+				*width = b_width;
+				*height = b_height;
+			}
+			return error;
+		}
+
 		mlt_position position = mlt_transition_get_position( transition, a_frame );
 		mlt_profile profile = mlt_service_profile( MLT_TRANSITION_SERVICE( transition ) );
 		double time = (double) position / mlt_profile_fps( profile );