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
6ee0c1fd
Commit
6ee0c1fd
authored
Oct 15, 2021
by
Jean-Baptiste Mardelle
Browse files
Fix proxying of playlist clips.
Fixes
#1219
parent
61017091
Pipeline
#88950
passed with stage
in 8 minutes and 23 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/bin/projectclip.cpp
View file @
6ee0c1fd
...
...
@@ -587,6 +587,9 @@ bool ProjectClip::setProducer(std::shared_ptr<Mlt::Producer> producer)
if
(
!
skipProducer
&&
getProducerIntProperty
(
QStringLiteral
(
"meta.media.width"
))
>=
KdenliveSettings
::
proxyminsize
())
{
clipList
<<
std
::
static_pointer_cast
<
ProjectClip
>
(
shared_from_this
());
}
}
else
if
(
m_clipType
==
ClipType
::
Playlist
&&
pCore
->
getCurrentFrameDisplaySize
().
width
()
>=
KdenliveSettings
::
proxyminsize
()
&&
getProducerProperty
(
QStringLiteral
(
"kdenlive:proxy"
))
==
QLatin1String
())
{
clipList
<<
std
::
static_pointer_cast
<
ProjectClip
>
(
shared_from_this
());
}
if
(
!
clipList
.
isEmpty
())
{
generateProxy
=
true
;
...
...
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