diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2026-08-29 23:04:49 -0500 |
|---|---|---|
| committer | ozpv <39195175+ozpv@users.noreply.github.com> | 2026-08-29 23:04:49 -0500 |
| commit | bdd8c21fcfff8041ea94a972903ce42e58c2a5c2 (patch) | |
| tree | e85828cc8d209decf9a367f1853356a79397ea3b /Core/Inc/Effects/ringmod.h | |
| parent | d000890eafbc6cc715fa6e7da2db61db05a6f3e4 (diff) | |
Diffstat (limited to 'Core/Inc/Effects/ringmod.h')
| -rwxr-xr-x | Core/Inc/Effects/ringmod.h | 9 |
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_ */
|
