Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup and expose RAPT interface #12

Merged
merged 11 commits into from
Oct 25, 2015
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ The important changes from the original SPTK are summerized as follows:
- Remove `wavsplit` and `wavjoin` from target sources to compile for cross-platform compilation ability, since original `wavsplit` and `wavjoin` use `direct.h` that only exists in POSIX enviroments. ([#8])
- Add `DLLEXPORT` macro to expose API functions explicitly in MSVC environments (NOTE: this is not fully used for now) ([#8])
- Ensure c89 compatibility
- Export excite function (#[11])
- Cleanup and export RAPT function (#[12])

## Installation

Expand All @@ -47,3 +49,5 @@ sudo ./waf install


[#8]: https://github.com/r9y9/SPTK/pull/8
[#11]: https://github.com/r9y9/SPTK/pull/11
[#12]: https://github.com/r9y9/SPTK/pull/12
7 changes: 2 additions & 5 deletions bin/excite/_excite.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
* -p p : frame period [100] *
* -i i : interpolation period [1] *
* -n : gauss/M-sequence flag for unoiced [FALSE] *
* default is M-sequence *
* -s s : seed for nrand [1] *
* default is M-sequence *
* -s s : seed for nrand [1] *
* infile: *
* pitch data *
* stdout: *
Expand All @@ -65,9 +65,6 @@
* *
************************************************************************/

static char *rcs_id = "$Id: excite.c,v 1.25 2014/12/11 08:30:34 uratec Exp $";


/* Standard C Libraries */
#include <stdio.h>
#include <stdlib.h>
Expand Down
Loading