Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
95e19ae0
Commit
95e19ae0
authored
Oct 29, 2023
by
Anton Baskanov
Committed by
Alexandre Julliard
Oct 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmsynth: Activate reverb and chorus according to effect flags.
parent
d4f4bedc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
synth.c
dlls/dmsynth/synth.c
+4
-0
No files found.
dlls/dmsynth/synth.c
View file @
95e19ae0
...
@@ -565,6 +565,10 @@ static HRESULT WINAPI synth_Open(IDirectMusicSynth8 *iface, DMUS_PORTPARAMS *par
...
@@ -565,6 +565,10 @@ static HRESULT WINAPI synth_Open(IDirectMusicSynth8 *iface, DMUS_PORTPARAMS *par
}
}
fluid_settings_setnum
(
This
->
fluid_settings
,
"synth.sample-rate"
,
actual
.
dwSampleRate
);
fluid_settings_setnum
(
This
->
fluid_settings
,
"synth.sample-rate"
,
actual
.
dwSampleRate
);
fluid_settings_setint
(
This
->
fluid_settings
,
"synth.reverb.active"
,
!!
(
actual
.
dwEffectFlags
&
DMUS_EFFECT_REVERB
));
fluid_settings_setint
(
This
->
fluid_settings
,
"synth.chorus.active"
,
!!
(
actual
.
dwEffectFlags
&
DMUS_EFFECT_CHORUS
));
if
(
!
(
This
->
fluid_synth
=
new_fluid_synth
(
This
->
fluid_settings
)))
return
E_OUTOFMEMORY
;
if
(
!
(
This
->
fluid_synth
=
new_fluid_synth
(
This
->
fluid_settings
)))
return
E_OUTOFMEMORY
;
if
((
id
=
fluid_synth_add_sfont
(
This
->
fluid_synth
,
This
->
fluid_sfont
))
==
FLUID_FAILED
)
if
((
id
=
fluid_synth_add_sfont
(
This
->
fluid_synth
,
This
->
fluid_sfont
))
==
FLUID_FAILED
)
WARN
(
"Failed to add fluid_sfont to fluid_synth
\n
"
);
WARN
(
"Failed to add fluid_sfont to fluid_synth
\n
"
);
...
...
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