mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 15:01:40 +00:00
fix typos in comments
This commit is contained in:
parent
8546f337f4
commit
fc8f48f1c1
2 changed files with 4 additions and 4 deletions
|
@ -849,12 +849,12 @@ DECLARE_FLUID_RVOICE_FUNCTION(fluid_rvoice_mixer_fx_set_mapping)
|
|||
}
|
||||
|
||||
/**
|
||||
* Set mapping beetwen fx unit and audio dry output at index out_from_fx.
|
||||
* Set mapping between fx unit and audio dry output at index out_from_fx.
|
||||
* @param mixer.
|
||||
* @param fxunit_idx, index of fx unit to which out_from_fx must be mapped.
|
||||
* must be in the range (0 to mixer->fx_units-1).
|
||||
* @param out_from_fx, dry output index to map to fx unit.
|
||||
* must be in the rage (0 to mixer->buffers.buf_count-1).
|
||||
* must be in the range (0 to mixer->buffers.buf_count-1).
|
||||
* @return FLUID_OK if success, FLUID_FAILED otherwise.
|
||||
*/
|
||||
int
|
||||
|
|
|
@ -7508,7 +7508,7 @@ fluid_synth_mixer_get_mapping(fluid_synth_t *synth,
|
|||
* @param fx_from_chan, fx unit input index to map to chan_to_fx.
|
||||
* Must be in the range (-1 to synth->effects_groups-1).
|
||||
*
|
||||
* 3)Mapping beetwen fx unit output (which is mapped to chanfx_to_out) and
|
||||
* 3)Mapping between fx unit output (which is mapped to chanfx_to_out) and
|
||||
* audio dry output at index index out_from_fx. If chanfx_to_out is -1,
|
||||
* this mapping is ignored.
|
||||
*
|
||||
|
@ -7577,7 +7577,7 @@ fluid_synth_mixer_set_mapping(fluid_synth_t *synth,
|
|||
/* get fx unit actually mapped to chanfx_fx_to out */
|
||||
fxunit_idx = synth->channel[chanfx_to_out]->mapping_to_fx;
|
||||
|
||||
/* Mapping beetwen fx unit output and audio dry output
|
||||
/* Mapping between fx unit output and audio dry output
|
||||
at index index out_from_fx.
|
||||
*/
|
||||
result = fluid_rvoice_mixer_set_fx_out_mapping(synth->eventhandler->mixer,
|
||||
|
|
Loading…
Reference in a new issue