summaryrefslogtreecommitdiff
path: root/src/mossrose-channel.c
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-08-26 12:42:30 -0500
committersanine <sanine.not@pm.me>2022-08-26 12:42:30 -0500
commitbde3e4f1bb7b8f8abca0884a7d994ee1c17a66b1 (patch)
tree825ff3669a38ec247bcc9b575a4a4ceb81534d35 /src/mossrose-channel.c
parent8ec3f8e82acd70410515550fd1790ee5827aafdb (diff)
refactor: move mossrose.h to include/ dir
Diffstat (limited to 'src/mossrose-channel.c')
-rw-r--r--src/mossrose-channel.c85
1 files changed, 0 insertions, 85 deletions
diff --git a/src/mossrose-channel.c b/src/mossrose-channel.c
deleted file mode 100644
index 7232417..0000000
--- a/src/mossrose-channel.c
+++ /dev/null
@@ -1,85 +0,0 @@
-#include <stdlib.h>
-#include <string.h>
-#include "mossrose-mutex.h"
-#include "mossrose-channel.h"
-
-
-void mossrose_channel_init(struct mossrose_channel_t *chan)
-{
- mossrose_mutex_init(&(chan->mutex));
- chan->left = NULL;
- chan->right = NULL;
- chan->n_samples = 0;
- chan->pos = 0;
-}
-
-
-int mossrose_channel_set(struct mossrose_channel_t *chan, float *left, float *right, size_t len, int force)
-{
- int result = 0;
- mossrose_mutex_lock(&(chan->mutex));
- if (chan->n_samples != 0 && !force) {
- /* channel is still playing! */
- result = 1; goto unlock;
- }
-
- chan->n_samples = len;
- chan->pos = 0;
-
- /* left channel */
- if (chan->left != NULL) free(chan->left);
- if (left == NULL)
- chan->left = NULL;
- else {
- chan->left = malloc(len * sizeof(float));
- if (chan->left == NULL) { result = 2; goto unlock; }
- memcpy(chan->left, left, len * sizeof(float));
- }
-
- /* right channel */
- if (chan->right != NULL) free(chan->right);
- if (right == NULL)
- chan->right = NULL;
- else {
- chan->right = malloc(len * sizeof(float));
- if (chan->right == NULL) { result = 3; goto unlock; }
- memcpy(chan->right, right, len * sizeof(float));
- }
-
- unlock:
- mossrose_mutex_unlock(&(chan->mutex));
- return result;
-}
-
-
-void mossrose_channel_reset(struct mossrose_channel_t *chan)
-{
- chan->n_samples = 0;
- chan->pos = 0;
-}
-
-
-int mossrose_channel_advance(float *left, float *right, struct mossrose_channel_t *chan)
-{
- if (chan->pos >= chan->n_samples) return 1;
- if (chan->left != NULL)
- *left = chan->left[chan->pos];
- else
- *left = 0;
- if (chan->right != NULL)
- *right = chan->right[chan->pos];
- else
- *right = 0;
- chan->pos += 1;
- return 0;
-}
-
-
-void mossrose_channel_destroy(struct mossrose_channel_t *chan)
-{
- mossrose_mutex_destroy(&(chan->mutex));
- if (chan->left != NULL) free(chan->left);
- if (chan->right != NULL) free(chan->right);
-}
-
-