diff options
author | XANTRONIX Development | 2022-02-26 23:37:12 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-02-26 23:37:12 -0500 |
commit | e05eadd873be4554089a9a46b429e521280c5ff6 (patch) | |
tree | fb4d73cea9ada30f420f19e856da2bec216fdc27 /include | |
parent | ab9f3166f07a43fd739262530575f30432d7782a (diff) | |
download | xas-e05eadd873be4554089a9a46b429e521280c5ff6.tar.gz xas-e05eadd873be4554089a9a46b429e521280c5ff6.tar.bz2 xas-e05eadd873be4554089a9a46b429e521280c5ff6.zip |
whoops
Diffstat (limited to 'include')
-rw-r--r-- | include/xas/vox.h | 6 |
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; |