summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorXANTRONIX Development2022-02-26 23:37:12 -0500
committerXANTRONIX Development2022-02-26 23:37:12 -0500
commite05eadd873be4554089a9a46b429e521280c5ff6 (patch)
treefb4d73cea9ada30f420f19e856da2bec216fdc27 /include
parentab9f3166f07a43fd739262530575f30432d7782a (diff)
downloadxas-e05eadd873be4554089a9a46b429e521280c5ff6.tar.gz
xas-e05eadd873be4554089a9a46b429e521280c5ff6.tar.bz2
xas-e05eadd873be4554089a9a46b429e521280c5ff6.zip
whoops
Diffstat (limited to 'include')
-rw-r--r--include/xas/vox.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/xas/vox.h b/include/xas/vox.h
index 641fe3a..93777b0 100644
--- a/include/xas/vox.h
+++ b/include/xas/vox.h
@@ -7,15 +7,15 @@
#include <xas/audio.h>
+#define XAS_VOX_SETTINGS_PATHLEN 64
-typedef struct _xas_vox {
enum xas_vox_state {
XAS_VOX_IDLE,
XAS_VOX_ACTIVE
};
+typedef struct _xas_vox {
xas_audio_format format;
-
size_t buffer_size;
const char *text2wave_path;
@@ -28,6 +28,8 @@ enum xas_vox_state {
stdin,
stdout;
+ char tmpfile[XAS_VOX_SETTINGS_PATHLEN];
+
FILE *in;
} xas_vox;