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
c7bb3b41
Commit
c7bb3b41
authored
Jan 22, 2021
by
Jean-Baptiste Mardelle
Browse files
Re-enable audio playback on reverse speed
Fixes
#887
parent
396af5cc
Pipeline
#48356
passed with stage
in 11 minutes and 3 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/monitor/glwidget.cpp
View file @
c7bb3b41
...
...
@@ -1608,7 +1608,7 @@ void GLWidget::switchPlay(bool play, double speed)
}
double
current_speed
=
m_producer
->
get_speed
();
m_producer
->
set_speed
(
speed
);
if
(
speed
<
=
1
.
||
speed
>
6.
)
{
if
(
qFuzzyCompare
(
speed
,
1.0
)
||
speed
<
-
6
.
||
speed
>
6.
)
{
m_consumer
->
set
(
"scrub_audio"
,
0
);
}
else
{
m_consumer
->
set
(
"scrub_audio"
,
1
);
...
...
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