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
88b3d381
Commit
88b3d381
authored
Jan 07, 2022
by
Julius Künzel
Browse files
Rename forgotten rgb24 and rgb24a after MLT 7 port
parent
06488676
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/mltcontroller/clipcontroller.cpp
View file @
88b3d381
...
...
@@ -223,7 +223,7 @@ void ClipController::getInfoForProducer()
}
else
if
(
m_service
==
QLatin1String
(
"colour"
)
||
m_service
==
QLatin1String
(
"color"
))
{
m_clipType
=
ClipType
::
Color
;
// Required for faster compositing
m_masterProducer
->
set
(
"mlt_image_format"
,
"rgb
24
"
);
m_masterProducer
->
set
(
"mlt_image_format"
,
"rgb"
);
m_hasLimitedDuration
=
false
;
}
else
if
(
m_service
==
QLatin1String
(
"kdenlivetitle"
))
{
if
(
!
m_path
.
isEmpty
())
{
...
...
src/timeline2/model/timelinemodel.cpp
View file @
88b3d381
...
...
@@ -124,7 +124,7 @@ TimelineModel::TimelineModel(Mlt::Profile *profile, std::weak_ptr<DocUndoStack>
m_blackClip
->
set
(
"mlt_type"
,
"producer"
);
m_blackClip
->
set
(
"aspect_ratio"
,
1
);
m_blackClip
->
set
(
"length"
,
INT_MAX
);
m_blackClip
->
set
(
"mlt_image_format"
,
"rgb
24
a"
);
m_blackClip
->
set
(
"mlt_image_format"
,
"rgba"
);
m_blackClip
->
set
(
"set.test_audio"
,
0
);
m_blackClip
->
set_in_and_out
(
0
,
TimelineModel
::
seekDuration
);
m_tractor
->
insert_track
(
*
m_blackClip
,
0
);
...
...
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