diff options
author | sanine <sanine.not@pm.me> | 2022-08-26 12:17:51 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-08-26 12:17:51 -0500 |
commit | 8ec3f8e82acd70410515550fd1790ee5827aafdb (patch) | |
tree | 348e32b7fe2f0e765d3acf91fa857880d8f6c3f6 /src/mossrose.h | |
parent | a20cdab55ba066301da138c4df945608524e741a (diff) |
make sound
Diffstat (limited to 'src/mossrose.h')
-rw-r--r-- | src/mossrose.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mossrose.h b/src/mossrose.h index 3d5bcd5..fb7d088 100644 --- a/src/mossrose.h +++ b/src/mossrose.h @@ -3,10 +3,10 @@ #include <stddef.h> -int mr_init(double sample_rate, int n_channels); +int mossrose_init(double sample_rate, int n_channels); -int mr_terminate(); +int mossrose_terminate(); -int mr_play(float *left, float *right, size_t n_samples, int channel); +int mossrose_play(float *left, float *right, size_t n_samples, int channel); #endif |