From e0dcdbcdfc0aa8aec445ca20c25f855b5f4db884 Mon Sep 17 00:00:00 2001 From: Marcus Weseloh Date: Sat, 21 Oct 2017 23:11:09 +0200 Subject: [PATCH] Correct documentation for fluid_ladspa_run --- src/bindings/fluid_ladspa.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bindings/fluid_ladspa.c b/src/bindings/fluid_ladspa.c index c3e34caa..b6bbeb6a 100644 --- a/src/bindings/fluid_ladspa.c +++ b/src/bindings/fluid_ladspa.c @@ -344,8 +344,10 @@ int fluid_ladspa_reset(fluid_ladspa_fx_t *fx) * resulting audio back into the same buffers. * * @param fx LADSPA effects instance - * @param buf array of pointers into the interleaved left and right audio group buffers - * @param fx_buf array of pointers into the interleaved left and right effects channel buffers + * @param left_buf array of pointers into the left audio group buffers + * @param right_buf array of pointers into the right audio group buffers + * @param fx_left_buf array of pointers into the left effects buffers + * @param fx_right_buf array of pointers into the right effects buffers */ void fluid_ladspa_run(fluid_ladspa_fx_t *fx, fluid_real_t *left_buf[], fluid_real_t *right_buf[], fluid_real_t *fx_left_buf[], fluid_real_t *fx_right_buf[])