summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/drone.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/drone.c b/src/drone.c
index 13610fa..188f546 100644
--- a/src/drone.c
+++ b/src/drone.c
@@ -1,7 +1,9 @@
#include <stdlib.h>
#include <string.h>
+#include <fcntl.h>
#include <errno.h>
+#include <xas/riff.h>
#include <xas/vox.h>
#include <xas/drone.h>
@@ -73,6 +75,34 @@ error_invalid:
return -1;
}
+ssize_t xas_drone_sample_import(xas_drone *drone,
+ const char *path,
+ size_t sample_index) {
+ ssize_t ret;
+ xas_audio_stream *source;
+
+ if ((source = xas_riff_open_file(path, O_RDONLY)) == NULL) {
+ goto error_riff_open_file;
+ }
+
+ if ((ret = xas_drone_sample_record(drone,
+ source,
+ sample_index,
+ drone->bank->entry_size)) < 0) {
+ goto error_sample_record;
+ }
+
+ xas_audio_stream_destroy(source);
+
+ return ret;
+
+error_sample_record:
+ xas_audio_stream_destroy(source);
+
+error_riff_open_file:
+ return -1;
+}
+
int xas_drone_speech_import(xas_drone *drone,
const char *voice,
float speed,