[96fb8ad] | 1 | /* |
---|
| 2 | Copyright (C) 2003 Paul Brossier |
---|
| 3 | |
---|
| 4 | This program is free software; you can redistribute it and/or modify |
---|
| 5 | it under the terms of the GNU General Public License as published by |
---|
| 6 | the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | (at your option) any later version. |
---|
| 8 | |
---|
| 9 | This program is distributed in the hope that it will be useful, |
---|
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | GNU General Public License for more details. |
---|
| 13 | |
---|
| 14 | You should have received a copy of the GNU General Public License |
---|
| 15 | along with this program; if not, write to the Free Software |
---|
| 16 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
| 17 | |
---|
| 18 | */ |
---|
| 19 | |
---|
[2a04c2c] | 20 | /** \file |
---|
| 21 | |
---|
| 22 | Transient / Steady-state Separation (TSS) |
---|
| 23 | |
---|
| 24 | This file implement a Transient / Steady-state Separation (TSS) as described |
---|
| 25 | in: |
---|
| 26 | |
---|
| 27 | Christopher Duxbury, Mike E. Davies, and Mark B. Sandler. Separation of |
---|
| 28 | transient information in musical audio using multiresolution analysis |
---|
| 29 | techniques. In Proceedings of the Digital Audio Effects Conference, DAFx-01, |
---|
[f1b6aad] | 30 | pages 1--5, Limerick, Ireland, 2001. |
---|
| 31 | |
---|
| 32 | Available at http://www.csis.ul.ie/dafx01/proceedings/papers/duxbury.pdf |
---|
[2a04c2c] | 33 | |
---|
| 34 | */ |
---|
[96fb8ad] | 35 | |
---|
| 36 | #ifndef TSS_H |
---|
| 37 | #define TSS_H |
---|
| 38 | |
---|
| 39 | #ifdef __cplusplus |
---|
| 40 | extern "C" { |
---|
| 41 | #endif |
---|
| 42 | |
---|
[f1b6aad] | 43 | /** Transient / Steady-state Separation object */ |
---|
[96fb8ad] | 44 | typedef struct _aubio_tss_t aubio_tss_t; |
---|
| 45 | |
---|
[2a04c2c] | 46 | /** create tss object |
---|
| 47 | |
---|
[f1b6aad] | 48 | \param win_s buffer size |
---|
| 49 | \param hop_s step size |
---|
[2a04c2c] | 50 | \param channels number of input channels |
---|
| 51 | |
---|
| 52 | */ |
---|
[f1b6aad] | 53 | aubio_tss_t *new_aubio_tss (uint_t win_s, uint_t hop_s, uint_t channels); |
---|
| 54 | |
---|
[2a04c2c] | 55 | /** delete tss object |
---|
| 56 | |
---|
[f1b6aad] | 57 | \param o tss object as returned by new_aubio_tss() |
---|
| 58 | |
---|
| 59 | */ |
---|
| 60 | void del_aubio_tss (aubio_tss_t * o); |
---|
| 61 | |
---|
| 62 | /** split input into transient and steady states components |
---|
| 63 | |
---|
| 64 | \param o tss object as returned by new_aubio_tss() |
---|
| 65 | \param input input spectral frame |
---|
| 66 | \param trans output transient components |
---|
| 67 | \param stead output steady state components |
---|
[2a04c2c] | 68 | |
---|
| 69 | */ |
---|
[f1b6aad] | 70 | void aubio_tss_do (aubio_tss_t * o, cvec_t * input, cvec_t * trans, |
---|
| 71 | cvec_t * stead); |
---|
[96fb8ad] | 72 | |
---|
[2a04c2c] | 73 | /** set transient / steady state separation threshold |
---|
| 74 | |
---|
[f1b6aad] | 75 | \param o tss object as returned by new_aubio_tss() |
---|
[2a04c2c] | 76 | \param thrs new threshold value |
---|
| 77 | |
---|
| 78 | */ |
---|
[f1b6aad] | 79 | uint_t aubio_tss_set_threshold (aubio_tss_t * o, smpl_t thrs); |
---|
| 80 | |
---|
| 81 | /** set parameter a, defaults to 3 |
---|
[2a04c2c] | 82 | |
---|
[f1b6aad] | 83 | \param o tss object as returned by new_aubio_tss() |
---|
| 84 | \param alpha new value for alpha parameter |
---|
| 85 | |
---|
| 86 | */ |
---|
| 87 | uint_t aubio_tss_set_alpha (aubio_tss_t * o, smpl_t alpha); |
---|
| 88 | |
---|
| 89 | /** set parameter b, defaults to 3 |
---|
| 90 | |
---|
| 91 | \param o tss object as returned by new_aubio_tss() |
---|
| 92 | \param beta new value for beta parameter |
---|
[102b732] | 93 | |
---|
[2a04c2c] | 94 | */ |
---|
[f1b6aad] | 95 | uint_t aubio_tss_set_beta (aubio_tss_t * o, smpl_t beta); |
---|
[96fb8ad] | 96 | |
---|
| 97 | #ifdef __cplusplus |
---|
| 98 | } |
---|
| 99 | #endif |
---|
| 100 | |
---|
| 101 | #endif /*TSS_H*/ |
---|