Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Multimedia
Kdenlive
Commits
c7bb3b41
Commit
c7bb3b41
authored
Jan 22, 2021
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/monitor/glwidget.cpp
src/monitor/glwidget.cpp
+1
-1
No files found.
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
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