00001 00005 #include "bpm/bpm_dsp.h" 00006 #include "bpm/bpm_alloc.h" 00007 00008 void delete_filter( filter_t *f ) { 00009 if(!f)return; 00010 if(f->cplane) free(f->cplane); 00011 if(f->wfbuffer) free_simple_wave_double(f->wfbuffer ); 00012 free(f); 00013 return; 00014 }