mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-12-02 17:12:15 +00:00
clarify comments in fluidsynth_process.c
This commit is contained in:
parent
ce337e2497
commit
b07599b6f7
1 changed files with 4 additions and 2 deletions
|
@ -29,8 +29,10 @@ int main()
|
||||||
dry[0] = left;
|
dry[0] = left;
|
||||||
dry[1] = right;
|
dry[1] = right;
|
||||||
|
|
||||||
// setup channel mapping for a single effects channel to which to render reverb and chorus to
|
// Setup channel mapping for a single stereo channel to which to render effects to.
|
||||||
// just using the same sample buffers as for dry audio is fine here, will cause the effects to be mixed with dry output
|
// Just using the same sample buffers as for dry audio is fine here, as it will cause the effects to be mixed with dry output.
|
||||||
|
// Note: reverb and chorus together make up two stereo channels. Setting up only one stereo channel is sufficient
|
||||||
|
// as the channels warp around (i.e. chorus will be mixed with reverb channel).
|
||||||
fx[0] = left;
|
fx[0] = left;
|
||||||
fx[1] = right;
|
fx[1] = right;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue