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
7f629f7f
Commit
7f629f7f
authored
Oct 16, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Oct 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmsynth: Convert modulator values from DLS2 to SF2 convention.
parent
c7ca1643
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
2 deletions
+23
-2
synth.c
dlls/dmsynth/synth.c
+23
-2
No files found.
dlls/dmsynth/synth.c
View file @
7f629f7f
...
...
@@ -1336,6 +1336,7 @@ static BOOL gen_from_connection(const CONNECTION *conn, UINT *gen)
static
BOOL
set_gen_from_connection
(
fluid_voice_t
*
fluid_voice
,
const
CONNECTION
*
conn
)
{
double
value
;
UINT
gen
;
if
(
conn
->
usControl
!=
CONN_SRC_NONE
)
return
FALSE
;
...
...
@@ -1388,7 +1389,16 @@ static BOOL set_gen_from_connection(fluid_voice_t *fluid_voice, const CONNECTION
return
FALSE
;
}
fluid_voice_gen_set
(
fluid_voice
,
gen
,
conn
->
lScale
);
/* SF2 / FluidSynth use 0.1% as "Sustain Level" unit, DLS2 uses percent, meaning is also reversed */
if
(
gen
==
GEN_MODENVSUSTAIN
||
gen
==
GEN_VOLENVSUSTAIN
)
value
=
1000
-
conn
->
lScale
*
10
/
65536
.;
/* FIXME: SF2 and FluidSynth use 1200 * log2(f / 8.176) for absolute freqs,
* whereas DLS2 uses (1200 * log2(f / 440.) + 6900) * 65536. The values
* are very close but not strictly identical and we may need a conversion.
*/
else
if
(
conn
->
lScale
==
0x80000000
)
value
=
-
32768
;
else
value
=
conn
->
lScale
/
65536
.;
fluid_voice_gen_set
(
fluid_voice
,
gen
,
value
);
return
TRUE
;
}
...
...
@@ -1431,6 +1441,7 @@ static BOOL add_mod_from_connection(fluid_voice_t *fluid_voice, const CONNECTION
{
fluid_mod_t
*
mod
;
UINT
gen
=
-
1
;
double
value
;
switch
(
MAKELONG
(
conn
->
usSource
,
conn
->
usDestination
))
{
...
...
@@ -1460,7 +1471,17 @@ static BOOL add_mod_from_connection(fluid_voice_t *fluid_voice, const CONNECTION
fluid_mod_set_source1
(
mod
,
src1
,
flags1
);
fluid_mod_set_source2
(
mod
,
src2
,
flags2
);
fluid_mod_set_dest
(
mod
,
gen
);
fluid_mod_set_amount
(
mod
,
conn
->
lScale
);
/* SF2 / FluidSynth use 0.1% as "Sustain Level" unit, DLS2 uses percent, meaning is also reversed */
if
(
gen
==
GEN_MODENVSUSTAIN
||
gen
==
GEN_VOLENVSUSTAIN
)
value
=
1000
-
conn
->
lScale
*
10
/
65536
.;
/* FIXME: SF2 and FluidSynth use 1200 * log2(f / 8.176) for absolute freqs,
* whereas DLS2 uses (1200 * log2(f / 440.) + 6900) * 65536. The values
* are very close but not strictly identical and we may need a conversion.
*/
else
if
(
conn
->
lScale
==
0x80000000
)
value
=
-
32768
;
else
value
=
conn
->
lScale
/
65536
.;
fluid_mod_set_amount
(
mod
,
value
);
fluid_voice_add_mod
(
fluid_voice
,
mod
,
FLUID_VOICE_OVERWRITE
);
return
TRUE
;
...
...
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