From: <st...@us...> - 2003-06-13 22:20:52
|
Update of /cvsroot/iaxclient/iaxclient/lib/sox In directory sc8-pr-cvs1:/tmp/cvs-serv2800/sox Modified Files: sox.h Log Message: add declarations for functions. Index: sox.h =================================================================== RCS file: /cvsroot/iaxclient/iaxclient/lib/sox/sox.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- sox.h 4 Jun 2003 19:26:39 -0000 1.1 +++ sox.h 13 Jun 2003 22:20:49 -0000 1.2 @@ -137,3 +137,11 @@ int st_resample_stop(resample_t *rH); +int st_compand_getopts(compand_t l, int n, char **argv); +int st_compand_start(compand_t *lH, char **opts, int nopts); +int st_compand_flow(compand_t l, st_sample_t *ibuf, st_sample_t *obuf, + st_size_t *isamp, st_size_t *osamp); +int st_compand_drain(compand_t l, st_sample_t *obuf, st_size_t *osamp); +int st_compand_stop(compand_t l); + + |