Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
2b0afc3a
Commit
2b0afc3a
authored
Jun 09, 2019
by
Jean-Baptiste Mardelle
Browse files
Fix zone rendering with updated MLT
parent
da564a70
Pipeline
#4149
passed with stage
in 29 minutes and 13 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
renderer/kdenlive_render.cpp
View file @
2b0afc3a
...
...
@@ -122,8 +122,11 @@ int main(int argc, char **argv)
f
.
close
();
QDomElement
consumer
=
doc
.
documentElement
().
firstChildElement
(
QStringLiteral
(
"consumer"
));
if
(
!
consumer
.
isNull
())
{
if
(
LIBMLT_VERSION_INT
<
397568
)
{
// Previous MLT versions did not correctly pass in and out
in
=
consumer
.
attribute
(
"in"
).
toInt
();
out
=
consumer
.
attribute
(
"out"
).
toInt
();
}
if
(
consumer
.
hasAttribute
(
QLatin1String
(
"s"
))
||
consumer
.
hasAttribute
(
QLatin1String
(
"r"
)))
{
// Workaround MLT embeded consumer resize (MLT issue #453)
playlist
.
prepend
(
QStringLiteral
(
"xml:"
));
...
...
Farid Abdelnour
🎥
@frdbr
mentioned in issue
#260 (closed)
·
Jun 16, 2019
mentioned in issue
#260 (closed)
mentioned in issue #260
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment