shithub: aubio

ref: 92c70f602c2fcbcffc26b52d2fe4b6bbb8a162e5
dir: /cpp/aubiocpp.cpp/

View raw version
#include "aubio.h"
#include "aubiocpp.h"

namespace aubio {

  fvec::fvec(uint_t length, uint_t channels) {
    self = new_fvec(length, channels);
  }

  fvec::~fvec() {
    del_fvec(self);
  }

  smpl_t* fvec::operator[]( uint_t channel ) {
    return self->data[channel];
  }

  cvec::cvec(uint_t length, uint_t channels) {
    self = new_cvec(length, channels);
    norm = self->norm;
    phas = self->phas;
  }

  cvec::~cvec() {
    del_cvec(self);
  }

}