Changeset fdf39ba for src/filterbank.c


Ignore:
Timestamp:
Sep 7, 2007, 10:49:45 AM (17 years ago)
Author:
Amaury Hazan <mahmoudax@gmail.com>
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:
8708556
Parents:
97886fa (diff), 7c6c806d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merged from mtg

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/filterbank.c

    r97886fa rfdf39ba  
    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.