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
c9ca7536
Commit
c9ca7536
authored
Apr 21, 2021
by
Julius Künzel
Browse files
mlt7: Remove autotrack_rectangle (motion_est) further cleanup
parent
5bc595c8
Pipeline
#59015
failed with stage
in 1 minute and 14 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
data/kdenliveeffectscategory.rc
View file @
c9ca7536
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
<data
name=
"effects"
version=
"0"
>
<group
list=
"chroma,frei0r.alpha0ps,frei0r.alphagrad,frei0r.alphaspot,frei0r.transparency,frei0r.mask0mate,rotoscoping,frei0r.keyspillm0pup,avfilter.despill,obscure,
autotrack_rectangle,
frei0r.bluescreen0r,lumakey,shape,spot_remover,frei0r.select0r,frei0r.spillsupress,frei0r.bgsubtract0r,opencv.tracker,strobe"
>
<group
list=
"chroma,frei0r.alpha0ps,frei0r.alphagrad,frei0r.alphaspot,frei0r.transparency,frei0r.mask0mate,rotoscoping,frei0r.keyspillm0pup,avfilter.despill,obscure,frei0r.bluescreen0r,lumakey,shape,spot_remover,frei0r.select0r,frei0r.spillsupress,frei0r.bgsubtract0r,opencv.tracker,strobe"
>
<text>
Alpha, Mask and Keying
</text>
</group>
<group
list=
"boxblur,frei0r.squareblur,avfilter.avgblur,avfilter.gblur,avfilter.smartblur,avfilter.boxblur,avfilter.unsharp,avfilter.sab"
>
...
...
src/assets/model/assetparametermodel.cpp
View file @
c9ca7536
...
...
@@ -278,7 +278,7 @@ void AssetParameterModel::setParameter(const QString &name, int value, bool upda
}
m_asset
->
set
(
"effect"
,
effectParam
.
join
(
QLatin1Char
(
' '
)).
toUtf8
().
constData
());
emit
replugEffect
(
shared_from_this
());
}
else
if
(
m_assetId
==
QLatin1String
(
"autotrack_rectangle"
)
||
m_assetId
.
startsWith
(
QStringLiteral
(
"ladspa"
)))
{
}
else
if
(
m_assetId
.
startsWith
(
QStringLiteral
(
"ladspa"
)))
{
// these effects don't understand param change and need to be rebuild
emit
replugEffect
(
shared_from_this
());
}
...
...
@@ -368,7 +368,7 @@ void AssetParameterModel::setParameter(const QString &name, const QString ¶m
m_asset
->
set
(
"effect"
,
effectParam
.
join
(
QLatin1Char
(
' '
)).
toUtf8
().
constData
());
emit
replugEffect
(
shared_from_this
());
updateChildRequired
=
false
;
}
else
if
(
m_assetId
==
QLatin1String
(
"autotrack_rectangle"
)
||
m_assetId
.
startsWith
(
QStringLiteral
(
"ladspa"
)))
{
}
else
if
(
m_assetId
.
startsWith
(
QStringLiteral
(
"ladspa"
)))
{
// these effects don't understand param change and need to be rebuild
emit
replugEffect
(
shared_from_this
());
updateChildRequired
=
false
;
...
...
Write
Preview
Markdown
is supported
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