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
5950ef65
Commit
5950ef65
authored
Dec 01, 2017
by
Jean-Baptiste Mardelle
Browse files
Use smaller size for image proxies
BUG: 353577
parent
a0579e78
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/project/jobs/proxyclipjob.cpp
View file @
5950ef65
...
...
@@ -118,9 +118,9 @@ void ProxyJob::startJob()
// Images are scaled to profile size.
//TODO: Make it be configurable?
if
(
i
.
width
()
>
i
.
height
())
{
proxy
=
i
.
scaledToWidth
(
m_renderWidth
);
proxy
=
i
.
scaledToWidth
(
960
);
}
else
{
proxy
=
i
.
scaledToHeight
(
m_renderHeight
);
proxy
=
i
.
scaledToHeight
(
540
);
}
if
(
m_exif
>
1
)
{
// Rotate image according to exif data
...
...
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