shithub: aubio

ref: 0d434df5868fcf0f3cacfc22b6ddfc8355a18cd6
dir: /interfaces/cpp/aubiocpp.h/

View raw version
#include "aubio.h"

namespace aubio {

  class fvec {

    private:
      fvec_t * self;

    public:
      fvec(uint_t length, uint_t channels);
      ~fvec();
      smpl_t* operator[]( uint_t channel );

  };

  class cvec {

    private:
      cvec_t * self;

    public:
      smpl_t ** norm;
      smpl_t ** phas;

      cvec(uint_t length, uint_t channels);
      ~cvec();

  };

}