mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-01-19 07:50:49 +00:00
Add a comment for issue #751
This commit is contained in:
parent
4fd7899d61
commit
70abf1953f
1 changed files with 10 additions and 2 deletions
|
@ -980,7 +980,11 @@ void fluid_chorus_processmix(fluid_chorus_t *chorus, const fluid_real_t *in,
|
|||
d_out[1] += out ;
|
||||
}
|
||||
|
||||
/* Write the current input sample into the circular buffer */
|
||||
/* Write the current input sample into the circular buffer.
|
||||
* Note that 'in' may be aliased with 'left_out'. Hence this must be done
|
||||
* before "processing stereo unit" (below). This ensures input buffer
|
||||
* not being overwritten by stereo unit output.
|
||||
*/
|
||||
push_in_delay_line(chorus, in[sample_index]);
|
||||
|
||||
/* process stereo unit */
|
||||
|
@ -1052,7 +1056,11 @@ void fluid_chorus_processreplace(fluid_chorus_t *chorus, const fluid_real_t *in,
|
|||
d_out[1] += out ;
|
||||
}
|
||||
|
||||
/* Write the current input sample into the circular buffer */
|
||||
/* Write the current input sample into the circular buffer.
|
||||
* Note that 'in' may be aliased with 'left_out'. Hence this must be done
|
||||
* before "processing stereo unit" (below). This ensures input buffer
|
||||
* not being overwritten by stereo unit output.
|
||||
*/
|
||||
push_in_delay_line(chorus, in[sample_index]);
|
||||
|
||||
/* process stereo unit */
|
||||
|
|
Loading…
Reference in a new issue