diff options
author | XANTRONIX Development | 2022-02-26 23:42:10 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-02-26 23:42:10 -0500 |
commit | 9e6c7b8c46df662a8777742ccb150c1bfff5d421 (patch) | |
tree | 71485d367b3fafd17266682fb7627391081e3a21 /examples | |
parent | 4d675ce17f3e61095e2ee9f7deac671dc5d40a95 (diff) | |
download | xas-9e6c7b8c46df662a8777742ccb150c1bfff5d421.tar.gz xas-9e6c7b8c46df662a8777742ccb150c1bfff5d421.tar.bz2 xas-9e6c7b8c46df662a8777742ccb150c1bfff5d421.zip |
Change xas_vox_new() argument order
Diffstat (limited to 'examples')
-rw-r--r-- | examples/say.c | 6 | ||||
-rw-r--r-- | examples/spatial.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/examples/say.c b/examples/say.c index 8741a10..92856f2 100644 --- a/examples/say.c +++ b/examples/say.c @@ -97,9 +97,9 @@ int main(int argc, char **argv) { usage(argc, argv, "No output file provided"); } - if ((vox = xas_vox_new("/usr/bin/text2wave", - format, - buffer_size)) == NULL) { + if ((vox = xas_vox_new(format, + buffer_size, + "/usr/bin/text2wave")) == NULL) { goto error_vox_new; } diff --git a/examples/spatial.c b/examples/spatial.c index 9527cbe..b291fd2 100644 --- a/examples/spatial.c +++ b/examples/spatial.c @@ -110,9 +110,9 @@ int main(int argc, char **argv) { goto error_synth_new; } - if ((vox = xas_vox_new("/usr/bin/text2wave", - format, - buffer_size)) == NULL) { + if ((vox = xas_vox_new(format, + buffer_size, + "/usr/bin/text2wave")) == NULL) { goto error_vox_new; } |