summaryrefslogtreecommitdiff
path: root/libre/kdenlive
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2021-06-04 12:47:29 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2021-06-04 18:18:31 -0400
commit8c8f87df80e5a938db5a849a8f64cf955d3075a1 (patch)
tree6bcb30dcbed47bf81cabc1534c702d10bba3903d /libre/kdenlive
parent2064ce9119066d3a8ee44698b44afc7a9ff976f2 (diff)
downloadabslibre-8c8f87df80e5a938db5a849a8f64cf955d3075a1.tar.gz
abslibre-8c8f87df80e5a938db5a849a8f64cf955d3075a1.tar.bz2
abslibre-8c8f87df80e5a938db5a849a8f64cf955d3075a1.zip
[kdenlive]: add mlt6 patch
Diffstat (limited to 'libre/kdenlive')
-rw-r--r--libre/kdenlive/kdenlive-mlt6.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/libre/kdenlive/kdenlive-mlt6.patch b/libre/kdenlive/kdenlive-mlt6.patch
new file mode 100644
index 000000000..f86f93da9
--- /dev/null
+++ b/libre/kdenlive/kdenlive-mlt6.patch
@@ -0,0 +1,22 @@
+diff --git a/src/mltconnection.cpp b/src/mltconnection.cpp
+index 13d0e8d8c..2820c8f7c 100644
+--- a/src/mltconnection.cpp
++++ b/src/mltconnection.cpp
+@@ -136,14 +136,14 @@ void MltConnection::locateMeltAndProfilesPath(const QString &mltPath)
+ #endif
+ QString meltPath;
+ if (qEnvironmentVariableIsSet("MLT_PREFIX")) {
+- meltPath = qgetenv("MLT_PREFIX") + QStringLiteral("/bin/melt") + exeSuffix;
++ meltPath = qgetenv("MLT_PREFIX") + QStringLiteral("/bin/melt6") + exeSuffix;
+ } else {
+ meltPath = KdenliveSettings::rendererpath();
+ }
+ if (!QFile::exists(meltPath)) {
+- meltPath = QDir::cleanPath(profilePath + QStringLiteral("/../../../bin/melt")) + exeSuffix;
++ meltPath = QDir::cleanPath(profilePath + QStringLiteral("/../../../bin/melt6")) + exeSuffix;
+ if (!QFile::exists(meltPath)) {
+- meltPath = QStandardPaths::findExecutable("melt");
++ meltPath = QStandardPaths::findExecutable("melt6");
+ if (meltPath.isEmpty()) {
+ meltPath = QStandardPaths::findExecutable("mlt-melt");
+ }