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
3a87c8b4
Commit
3a87c8b4
authored
Jan 26, 2021
by
Jean-Baptiste Mardelle
Browse files
Fix playlist proxies broken
Fixes
#926
parent
b5f06b30
Pipeline
#48677
passed with stage
in 10 minutes and 53 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/jobs/loadjob.cpp
View file @
3a87c8b4
...
...
@@ -272,6 +272,11 @@ bool LoadJob::startJob()
if
(
type
==
ClipType
::
Unknown
)
{
type
=
getTypeForService
(
service
,
m_resource
);
}
if
(
type
==
ClipType
::
Playlist
&&
Xml
::
getXmlProperty
(
m_xml
,
QStringLiteral
(
"kdenlive:proxy"
)).
length
()
>
2
)
{
// If this is a proxied playlist, load as AV
type
=
ClipType
::
AV
;
service
.
clear
();
}
switch
(
type
)
{
case
ClipType
::
Color
:
m_producer
=
loadResource
(
m_resource
,
QStringLiteral
(
"color:"
));
...
...
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