diff options
author | sanine <sanine.not@pm.me> | 2022-08-26 12:42:30 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-08-26 12:42:30 -0500 |
commit | bde3e4f1bb7b8f8abca0884a7d994ee1c17a66b1 (patch) | |
tree | 825ff3669a38ec247bcc9b575a4a4ceb81534d35 /src/mossrose-channel.h | |
parent | 8ec3f8e82acd70410515550fd1790ee5827aafdb (diff) |
refactor: move mossrose.h to include/ dir
Diffstat (limited to 'src/mossrose-channel.h')
-rw-r--r-- | src/mossrose-channel.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/mossrose-channel.h b/src/mossrose-channel.h deleted file mode 100644 index e1db89d..0000000 --- a/src/mossrose-channel.h +++ /dev/null @@ -1,26 +0,0 @@ -#ifndef MOSSROSE_CHANNEL_H -#define MOSSROSE_CHANNEL_H - -#include <stddef.h> -#include "mossrose-mutex.h" - -struct mossrose_channel_t { - mossrose_mutex_t mutex; - float *left; - float *right; - size_t n_samples; - size_t pos; -}; - - -void mossrose_channel_init(struct mossrose_channel_t *chan); - -int mossrose_channel_set(struct mossrose_channel_t *chan, float *left, float *right, size_t len, int force); - -void mossrose_channel_reset(struct mossrose_channel_t *chan); - -int mossrose_channel_advance(float *left, float *right, struct mossrose_channel_t *chan); - -void mossrose_channel_destroy(struct mossrose_channel_t *chan); - -#endif |