ref: 66fb3eac1f2656782d007d587b28cb62e93566b5
parent: c7860af288aa73bb2ff02941cd60fc9ed59bb871
author: Paul Brossier <piem@piem.org>
date: Thu Dec 3 20:33:06 EST 2009
modified cvec to be mono
--- a/src/cvec.c
+++ b/src/cvec.c
@@ -21,63 +21,41 @@
#include "aubio_priv.h"
#include "cvec.h"
-cvec_t * new_cvec( uint_t length, uint_t channels) {
+cvec_t * new_cvec( uint_t length) {
cvec_t * s = AUBIO_NEW(cvec_t);
- uint_t i,j;
- s->channels = channels;
+ uint_t j;
s->length = length/2 + 1;
- s->norm = AUBIO_ARRAY(smpl_t*,s->channels);
- s->phas = AUBIO_ARRAY(smpl_t*,s->channels);
- for (i=0; i< s->channels; i++) {
- s->norm[i] = AUBIO_ARRAY(smpl_t,s->length);
- s->phas[i] = AUBIO_ARRAY(smpl_t,s->length);
- for (j=0; j< s->length; j++) {
- s->norm[i][j]=0.;
- s->phas[i][j]=0.;
- }
+ s->norm = AUBIO_ARRAY(smpl_t,s->length);
+ s->phas = AUBIO_ARRAY(smpl_t,s->length);
+ for (j=0; j< s->length; j++) {
+ s->norm[j]=0.;
+ s->phas[j]=0.;
}
return s;
}
void del_cvec(cvec_t *s) {
- uint_t i;
- for (i=0; i<s->channels; i++) {
- AUBIO_FREE(s->norm[i]);
- AUBIO_FREE(s->phas[i]);
- }
AUBIO_FREE(s->norm);
AUBIO_FREE(s->phas);
AUBIO_FREE(s);
}
-void cvec_write_norm(cvec_t *s, smpl_t data, uint_t channel, uint_t position) {
- s->norm[channel][position] = data;
+void cvec_write_norm(cvec_t *s, smpl_t data, uint_t position) {
+ s->norm[position] = data;
}
-void cvec_write_phas(cvec_t *s, smpl_t data, uint_t channel, uint_t position) {
- s->phas[channel][position] = data;
+void cvec_write_phas(cvec_t *s, smpl_t data, uint_t position) {
+ s->phas[position] = data;
}
-smpl_t cvec_read_norm(cvec_t *s, uint_t channel, uint_t position) {
- return s->norm[channel][position];
+smpl_t cvec_read_norm(cvec_t *s, uint_t position) {
+ return s->norm[position];
}
-smpl_t cvec_read_phas(cvec_t *s, uint_t channel, uint_t position) {
- return s->phas[channel][position];
+smpl_t cvec_read_phas(cvec_t *s, uint_t position) {
+ return s->phas[position];
}
-void cvec_put_norm_channel(cvec_t *s, smpl_t * data, uint_t channel) {
- s->norm[channel] = data;
-}
-void cvec_put_phas_channel(cvec_t *s, smpl_t * data, uint_t channel) {
- s->phas[channel] = data;
-}
-smpl_t * cvec_get_norm_channel(cvec_t *s, uint_t channel) {
- return s->norm[channel];
-}
-smpl_t * cvec_get_phas_channel(cvec_t *s, uint_t channel) {
- return s->phas[channel];
-}
-smpl_t ** cvec_get_norm(cvec_t *s) {
+smpl_t * cvec_get_norm(cvec_t *s) {
return s->norm;
}
-smpl_t ** cvec_get_phas(cvec_t *s) {
+smpl_t * cvec_get_phas(cvec_t *s) {
return s->phas;
}
@@ -84,27 +62,23 @@
/* helper functions */
void cvec_print(cvec_t *s) {
- uint_t i,j;
- for (i=0; i< s->channels; i++) {
- AUBIO_MSG("norm: ");
- for (j=0; j< s->length; j++) {
- AUBIO_MSG(AUBIO_SMPL_FMT " ", s->norm[i][j]);
- }
- AUBIO_MSG("\n");
- AUBIO_MSG("phas: ");
- for (j=0; j< s->length; j++) {
- AUBIO_MSG(AUBIO_SMPL_FMT " ", s->phas[i][j]);
- }
- AUBIO_MSG("\n");
+ uint_t j;
+ AUBIO_MSG("norm: ");
+ for (j=0; j< s->length; j++) {
+ AUBIO_MSG(AUBIO_SMPL_FMT " ", s->norm[j]);
}
+ AUBIO_MSG("\n");
+ AUBIO_MSG("phas: ");
+ for (j=0; j< s->length; j++) {
+ AUBIO_MSG(AUBIO_SMPL_FMT " ", s->phas[j]);
+ }
+ AUBIO_MSG("\n");
}
void cvec_set(cvec_t *s, smpl_t val) {
- uint_t i,j;
- for (i=0; i< s->channels; i++) {
- for (j=0; j< s->length; j++) {
- s->norm[i][j] = val;
- }
+ uint_t j;
+ for (j=0; j< s->length; j++) {
+ s->norm[j] = val;
}
}
--- a/src/cvec.h
+++ b/src/cvec.h
@@ -38,24 +38,22 @@
/** Buffer for complex data */
typedef struct {
uint_t length; /**< length of buffer = (requested length)/2 + 1 */
- uint_t channels; /**< number of channels */
- smpl_t **norm; /**< norm array of size [length] * [channels] */
- smpl_t **phas; /**< phase array of size [length] * [channels] */
+ smpl_t *norm; /**< norm array of size [length] */
+ smpl_t *phas; /**< phase array of size [length] */
} cvec_t;
/** cvec_t buffer creation function
This function creates a cvec_t structure holding two arrays of size
- [length/2+1] * channels, corresponding to the norm and phase values of the
+ [length/2+1], corresponding to the norm and phase values of the
spectral frame. The length stored in the structure is the actual size of both
arrays, not the length of the complex and symetrical vector, specified as
creation argument.
\param length the length of the buffer to create
- \param channels the number of channels in the buffer
*/
-cvec_t * new_cvec(uint_t length, uint_t channels);
+cvec_t * new_cvec(uint_t length);
/** cvec_t buffer deletion function
\param s buffer to delete as returned by new_cvec()
@@ -65,99 +63,49 @@
/** write norm value in a complex buffer
Note that this function is not used in the aubio library, since the same
- result can be obtained by assigning vec->norm[channel][position]. Its purpose
+ result can be obtained by assigning vec->norm[position]. Its purpose
is to access these values from wrappers, as created by swig.
\param s vector to write to
- \param data norm value to write in s->norm[channel][position]
- \param channel channel to write to
+ \param data norm value to write in s->norm[position]
\param position sample position to write to
*/
-void cvec_write_norm(cvec_t *s, smpl_t data, uint_t channel, uint_t position);
+void cvec_write_norm(cvec_t *s, smpl_t data, uint_t position);
/** write phase value in a complex buffer
Note that this function is not used in the aubio library, since the same
- result can be obtained by assigning vec->phas[channel][position]. Its purpose
+ result can be obtained by assigning vec->phas[position]. Its purpose
is to access these values from wrappers, as created by swig.
\param s vector to write to
- \param data phase value to write in s->phas[channel][position]
- \param channel channel to write to
+ \param data phase value to write in s->phas[position]
\param position sample position to write to
*/
-void cvec_write_phas(cvec_t *s, smpl_t data, uint_t channel, uint_t position);
+void cvec_write_phas(cvec_t *s, smpl_t data, uint_t position);
/** read norm value from a complex buffer
Note that this function is not used in the aubio library, since the same
- result can be obtained with vec->norm[channel][position]. Its purpose is to
+ result can be obtained with vec->norm[position]. Its purpose is to
access these values from wrappers, as created by swig.
\param s vector to read from
- \param channel channel to read from
\param position sample position to read from
*/
-smpl_t cvec_read_norm(cvec_t *s, uint_t channel, uint_t position);
+smpl_t cvec_read_norm(cvec_t *s, uint_t position);
/** read phase value from a complex buffer
Note that this function is not used in the aubio library, since the same
- result can be obtained with vec->phas[channel][position]. Its purpose is to
+ result can be obtained with vec->phas[position]. Its purpose is to
access these values from wrappers, as created by swig.
\param s vector to read from
- \param channel channel to read from
\param position sample position to read from
*/
-smpl_t cvec_read_phas(cvec_t *s, uint_t channel, uint_t position);
-/** write norm channel in a complex buffer
-
- Note that this function is not used in the aubio library, since the same
- result can be obtained by assigning vec->norm[channel]. Its purpose is to
- access these values from wrappers, as created by swig.
-
- \param s vector to write to
- \param data norm vector of [length] samples to write in s->norm[channel]
- \param channel channel to write to
-
-*/
-void cvec_put_norm_channel(cvec_t *s, smpl_t * data, uint_t channel);
-/** write phase channel in a complex buffer
-
- Note that this function is not used in the aubio library, since the same
- result can be obtained by assigning vec->phas[channel]. Its purpose is to
- access these values from wrappers, as created by swig.
-
- \param s vector to write to
- \param data phase vector of [length] samples to write in s->phas[channel]
- \param channel channel to write to
-
-*/
-void cvec_put_phas_channel(cvec_t *s, smpl_t * data, uint_t channel);
-/** read norm channel from a complex buffer
-
- Note that this function is not used in the aubio library, since the same
- result can be obtained with vec->norm[channel]. Its purpose is to access
- these values from wrappers, as created by swig.
-
- \param s vector to read from
- \param channel channel to read from
-
-*/
-smpl_t * cvec_get_norm_channel(cvec_t *s, uint_t channel);
-/** write phase channel in a complex buffer
-
- Note that this function is not used in the aubio library, since the same
- result can be obtained with vec->phas[channel]. Its purpose is to access
- these values from wrappers, as created by swig.
-
- \param s vector to read from
- \param channel channel to read from
-
-*/
-smpl_t * cvec_get_phas_channel(cvec_t *s, uint_t channel);
+smpl_t cvec_read_phas(cvec_t *s, uint_t position);
/** read norm data from a complex buffer
Note that this function is not used in the aubio library, since the same
@@ -167,7 +115,7 @@
\param s vector to read from
*/
-smpl_t ** cvec_get_norm(cvec_t *s);
+smpl_t * cvec_get_norm(cvec_t *s);
/** read phase data from a complex buffer
Note that this function is not used in the aubio library, since the same
@@ -177,7 +125,7 @@
\param s vector to read from
*/
-smpl_t ** cvec_get_phas(cvec_t *s);
+smpl_t * cvec_get_phas(cvec_t *s);
/** print out cvec data