Changeset bb20f87 for src


Ignore:
Timestamp:
Jul 12, 2006, 6:27:41 PM (18 years ago)
Author:
Paul Brossier <piem@altern.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:
e621b9a
Parents:
9935735
Message:

create filter deletion function
create filter deletion function

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/filter.c

    r9935735 rbb20f87  
    216216}
    217217
     218void del_aubio_filter(aubio_filter_t * f) {
     219  AUBIO_FREE(f->a);
     220  AUBIO_FREE(f->b);
     221  AUBIO_FREE(f->x);
     222  AUBIO_FREE(f->y);
     223  AUBIO_FREE(f);
     224  return;
     225}
  • src/filter.h

    r9935735 rbb20f87  
    8585*/
    8686aubio_filter_t * new_aubio_cdsgn_filter(uint_t samplerate);
     87/** delete a filter object
     88 
     89  \param f filter object to delete
     90
     91*/
     92void del_aubio_filter(aubio_filter_t * f);
    8793
    8894#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.