Changes in / [5f9df77:20ae690]
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/mathutils.c ¶
r5f9df77 r20ae690 73 73 AUBIO_ERR ("unknown window type %s, using default.\n", window_type); 74 74 wintype = aubio_win_default; 75 return NULL;76 75 } 77 76 switch(wintype) { -
TabularUnified src/pitch/pitchschmitt.c ¶
r5f9df77 r20ae690 115 115 { 116 116 AUBIO_FREE (p->schmittBuffer); 117 AUBIO_FREE (p->buf); 117 118 AUBIO_FREE (p); 118 119 } -
TabularUnified src/spectral/tss.c ¶
r5f9df77 r20ae690 117 117 void del_aubio_tss(aubio_tss_t *s) 118 118 { 119 AUBIO_FREE(s->theta1);120 AUBIO_FREE(s->theta2);121 AUBIO_FREE(s->oft1);122 AUBIO_FREE(s->oft2);123 AUBIO_FREE(s->dev);119 del_fvec(s->theta1); 120 del_fvec(s->theta2); 121 del_fvec(s->oft1); 122 del_fvec(s->oft2); 123 del_fvec(s->dev); 124 124 AUBIO_FREE(s); 125 125 }
Note: See TracChangeset
for help on using the changeset viewer.