summaryrefslogtreecommitdiff
path: root/Core/Inc/Effects/ringmod.h
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2026-08-29 23:04:49 -0500
committerozpv <39195175+ozpv@users.noreply.github.com>2026-08-29 23:04:49 -0500
commitbdd8c21fcfff8041ea94a972903ce42e58c2a5c2 (patch)
treee85828cc8d209decf9a367f1853356a79397ea3b /Core/Inc/Effects/ringmod.h
parentd000890eafbc6cc715fa6e7da2db61db05a6f3e4 (diff)
add retainHEADmain
Diffstat (limited to 'Core/Inc/Effects/ringmod.h')
-rwxr-xr-xCore/Inc/Effects/ringmod.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/Core/Inc/Effects/ringmod.h b/Core/Inc/Effects/ringmod.h
index 516ca6c..766fad4 100755
--- a/Core/Inc/Effects/ringmod.h
+++ b/Core/Inc/Effects/ringmod.h
@@ -20,6 +20,13 @@ typedef struct RingModParams {
bool square_lfo;
} RingModParams;
-void ringmod(float *samples, const size_t range_min, const size_t range_max, const struct RingModParams *params);
+void ringmod(
+ const struct RingModParams *params,
+ const int32_t *samples_in,
+ int32_t *samples_out,
+ const size_t range_min,
+ const size_t range_max,
+ const enum Channel channel
+);
#endif /* INC_EFFECTS_RINGMOD_H_ */