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
35acc609
Commit
35acc609
authored
Aug 11, 2020
by
Jean-Baptiste Mardelle
Browse files
Enforce wasapi as default audio backend on Windows.
Related to
#774
parent
f7137493
Pipeline
#30294
passed with stage
in 10 minutes and 22 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/dialogs/wizard.cpp
View file @
35acc609
...
...
@@ -470,6 +470,10 @@ void Wizard::checkMltComponents()
// MLT >= 6.6.0 and SDL2 module
KdenliveSettings
::
setSdlAudioBackend
(
QStringLiteral
(
"sdl2_audio"
));
KdenliveSettings
::
setAudiobackend
(
QStringLiteral
(
"sdl2_audio"
));
#if defined(Q_OS_WIN)
// Use wasapi by default on Windows
KdenliveSettings
::
setAudiodrivername
(
QStringLiteral
(
"wasapi"
));
#endif
}
else
if
(
consumersItemList
.
contains
(
QStringLiteral
(
"sdl_audio"
)))
{
// MLT < 6.6.0
KdenliveSettings
::
setSdlAudioBackend
(
QStringLiteral
(
"sdl_audio"
));
...
...
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