examples/: use native aubio smpl_t for aubio_process_func_t
authorPaul Brossier <piem@piem.org>
Fri, 25 Sep 2009 02:12:23 +0000 (04:12 +0200)
committerPaul Brossier <piem@piem.org>
Fri, 25 Sep 2009 02:12:23 +0000 (04:12 +0200)
examples/aubiomfcc.c
examples/aubionotes.c
examples/aubioonset.c
examples/aubioquiet.c
examples/aubiotrack.c
examples/utils.h

index f5752cb3df2843b3ddf071009d455711eab7574a..27a92f09b7bbf62509da1b91452327580b5b4980 100644 (file)
@@ -29,8 +29,8 @@ uint_t n_coefs = 13;
 unsigned int pos = 0; /*frames%dspblocksize*/
 uint_t usepitch = 0;
 
-int aubio_process(float **input, float **output, int nframes);
-int aubio_process(float **input, float **output, int nframes) {
+int aubio_process(smpl_t **input, smpl_t **output, int nframes);
+int aubio_process(smpl_t **input, smpl_t **output, int nframes) {
   unsigned int i;       /*channels*/
   unsigned int j;       /*frames*/
   
index 98b26e559e83144e6496bbf760ead670ecc232a6..e8e374a2f85104b8745636e60b20ac02e79f0c43 100644 (file)
@@ -21,8 +21,8 @@
 unsigned int pos = 0; /*frames%dspblocksize*/
 uint_t usepitch = 1;
 
-int aubio_process(float **input, float **output, int nframes);
-int aubio_process(float **input, float **output, int nframes) {
+int aubio_process(smpl_t **input, smpl_t **output, int nframes);
+int aubio_process(smpl_t **input, smpl_t **output, int nframes) {
   unsigned int i;       /*channels*/
   unsigned int j;       /*frames*/
   for (j=0;j<(unsigned)nframes;j++) {
index ab8374fa6344fd07d88f02d27847a4a1451dc4aa..ea9f12f3c746b203ff96196f763c4f4255e9b301 100644 (file)
@@ -21,8 +21,8 @@
 unsigned int pos = 0; /*frames%dspblocksize*/
 uint_t usepitch = 0;
 
-int aubio_process(float **input, float **output, int nframes);
-int aubio_process(float **input, float **output, int nframes) {
+int aubio_process(smpl_t **input, smpl_t **output, int nframes);
+int aubio_process(smpl_t **input, smpl_t **output, int nframes) {
   unsigned int i;       /*channels*/
   unsigned int j;       /*frames*/
   for (j=0;j<(unsigned)nframes;j++) {
index 4daa173c47d419810b4ef80933d6e8741731e01e..5c162c3e298e73472e41a7a401612d721eda2f5c 100644 (file)
@@ -22,8 +22,8 @@ unsigned int pos = 0; /*frames%dspblocksize*/
 sint_t wassilence = 1, issilence;
 uint_t usepitch = 0;
 
-int aubio_process(float **input, float **output, int nframes);
-int aubio_process(float **input, float **output, int nframes) {
+int aubio_process(smpl_t **input, smpl_t **output, int nframes);
+int aubio_process(smpl_t **input, smpl_t **output, int nframes) {
   unsigned int i;       /*channels*/
   unsigned int j;       /*frames*/
   for (j=0;j<(unsigned)nframes;j++) {
index 070ed8a042073c34e27e6daf0dd7220e7574e19a..819bfc9575b15d61f12aaedb0b7afcf640662c9a 100644 (file)
@@ -25,8 +25,8 @@ fvec_t * out              = NULL;
 aubio_tempo_t * bt        = NULL;
 smpl_t istactus           = 0;
 
-int aubio_process(float **input, float **output, int nframes);
-int aubio_process(float **input, float **output, int nframes) {
+int aubio_process(smpl_t **input, smpl_t **output, int nframes);
+int aubio_process(smpl_t **input, smpl_t **output, int nframes) {
   unsigned int i;       /*channels*/
   unsigned int j;       /*frames*/
   for (j=0;j<(unsigned)nframes;j++) {
index cc55cb8e714af2f48c2cd67589ddf04cb655fcd4..141ee99ee9a66464864188b0de562774ff541012 100644 (file)
@@ -53,7 +53,7 @@ void examples_common_del(void);
 typedef void (aubio_print_func_t)(void);
 #ifndef HAVE_JACK
 typedef int (*aubio_process_func_t)
-        (float **input, float **output, int nframes);
+        (smpl_t **input, smpl_t **output, int nframes);
 #endif
 void examples_common_process(aubio_process_func_t process_func, aubio_print_func_t print);
 void flush_process(aubio_process_func_t process_func, aubio_print_func_t print);