Changeset 7c6c806d for src/filterbank.c


Ignore:
Timestamp:
Sep 6, 2007, 7:32:13 PM (17 years ago)
Author:
Amaury Hazan <mahmoudax@gmail.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
7a46bf6, fdf39ba
Parents:
71b1b4b
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/filterbank.c

    r71b1b4b r7c6c806d  
    2121*/
    2222
     23#include "aubio_priv.h"
    2324#include "filterbank.h"
     25
     26
     27// Struct Declaration
     28
     29/** \brief A structure to store a set of n_filters Mel filters */
     30typedef struct aubio_mel_filter_ {
     31    int n_filters;
     32    smpl_t **filters;
     33};
    2434
    2535// Initialization
Note: See TracChangeset for help on using the changeset viewer.