int aubio_process(float **input, float **output, int nframes) {
unsigned int i; /*channels*/
unsigned int j; /*frames*/
- for (j=0;j<nframes;j++) {
+ for (j=0;j<(unsigned)nframes;j++) {
if(usejack) {
for (i=0;i<channels;i++) {
/* write input to datanew */
int aubio_process(float **input, float **output, int nframes) {
unsigned int i; /*channels*/
unsigned int j; /*frames*/
- for (j=0;j<nframes;j++) {
+ for (j=0;j<(unsigned)nframes;j++) {
if(usejack) {
for (i=0;i<channels;i++) {
/* write input to datanew */
int aubio_process(float **input, float **output, int nframes) {
unsigned int i; /*channels*/
unsigned int j; /*frames*/
- for (j=0;j<nframes;j++) {
+ for (j=0;j<(unsigned)nframes;j++) {
if(usejack) {
for (i=0;i<channels;i++) {
/* write input to datanew */
unsigned int i; /*channels*/
unsigned int j; /*frames*/
smpl_t * btoutput = out->data[0];
- for (j=0;j<nframes;j++) {
+ for (j=0;j<(unsigned)nframes;j++) {
if(usejack) {
for (i=0;i<channels;i++) {
/* write input to datanew */
frames = 0;
- while (overlap_size == aubio_sndfile_read(file, overlap_size, ibuf))
+ while ((signed)overlap_size == aubio_sndfile_read(file, overlap_size, ibuf))
{
isonset=0;
process_func(ibuf->data, obuf->data, overlap_size);