summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXANTRONIX Development2022-02-01 11:49:03 -0500
committerXANTRONIX Development2022-02-01 11:49:03 -0500
commit06c30104580ec9c589580c695f2cfbb6cc0b8575 (patch)
treeb1782db453869cac5e516c5fb775bbeb3e641be3 /src
parent2ba47727bc4690336e5d9d5f5b83d82577ce7515 (diff)
downloadxas-06c30104580ec9c589580c695f2cfbb6cc0b8575.tar.gz
xas-06c30104580ec9c589580c695f2cfbb6cc0b8575.tar.bz2
xas-06c30104580ec9c589580c695f2cfbb6cc0b8575.zip
Initial commit of src/vox.c
Diffstat (limited to 'src')
-rw-r--r--src/Makefile4
-rw-r--r--src/vox.c72
2 files changed, 74 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index a8853be..d5ddc43 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -7,9 +7,9 @@ CC = $(CROSS)cc
CFLAGS += -I$(INCLUDE_PATH)
LDFLAGS +=
-HEADERS = audio.h mixer.h synth.h riff.h
+HEADERS = audio.h riff.h mixer.h synth.h vox.h
-OBJS = audio.o mixer.o synth.o riff.o
+OBJS = audio.o riff.o mixer.o synth.o vox.o
VERSION_MAJOR = 0
VERSION_MINOR = 0.1
diff --git a/src/vox.c b/src/vox.c
new file mode 100644
index 0000000..502d79b
--- /dev/null
+++ b/src/vox.c
@@ -0,0 +1,72 @@
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/wait.h>
+
+#include <xas/vox.h>
+
+static void voice_cleanup(xas_vox_voice *voice, xas_audio_stream *stream) {
+ int status;
+
+ if (voice->flags & XAS_VOX_VOICE_ACTIVE) {
+ if (voice->pid >= 0) {
+ (void)waitpid(voice->pid, &status, 0);
+ }
+
+ if (voice->stdout >= 0) {
+ (void)close(voice->stdout);
+ }
+ }
+}
+
+static ssize_t voice_fill(xas_vox_voice *voice,
+ int16_t *samples,
+ size_t count,
+ xas_audio_stream *stream) {
+ size_t i;
+
+ for (i=0; i<count; i++) {
+ samples[i] = 0;
+ }
+
+ return i;
+}
+
+xas_audio_stream *xas_vox_new(const char *text2wave_path,
+ size_t sample_size,
+ size_t sample_rate,
+ size_t buffer_size,
+ void *ctx) {
+ xas_audio_stream *stream;
+ xas_vox_voice *voice;
+
+ if ((voice = malloc(sizeof(*voice))) == NULL) {
+ goto error_malloc_voice;
+ }
+
+ voice->text2wave_path = text2wave_path;
+ voice->sample_size = sample_size;
+ voice->sample_rate = sample_rate;
+ voice->ctx = ctx;
+ voice->flags = XAS_VOX_VOICE_IDLE;
+
+ voice->pid = -1;
+ voice->stdout = -1;
+
+ if ((stream = xas_audio_stream_new_source((xas_audio_fill)voice_fill,
+ (xas_audio_cleanup)voice_cleanup,
+ voice,
+ sample_size,
+ sample_rate,
+ XAS_AUDIO_STREAM_MONO,
+ buffer_size)) == NULL) {
+ goto error_audio_stream_new_source;
+ }
+
+ return stream;
+
+error_audio_stream_new_source:
+ free(voice);
+
+error_malloc_voice:
+ return NULL;
+}