[dd15573] | 1 | /* |
---|
| 2 | Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org> |
---|
| 3 | |
---|
| 4 | This file is part of aubio. |
---|
| 5 | |
---|
| 6 | aubio is free software: you can redistribute it and/or modify |
---|
| 7 | it under the terms of the GNU General Public License as published by |
---|
| 8 | the Free Software Foundation, either version 3 of the License, or |
---|
| 9 | (at your option) any later version. |
---|
| 10 | |
---|
| 11 | aubio is distributed in the hope that it will be useful, |
---|
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 14 | GNU General Public License for more details. |
---|
| 15 | |
---|
| 16 | You should have received a copy of the GNU General Public License |
---|
| 17 | along with aubio. If not, see <http://www.gnu.org/licenses/>. |
---|
| 18 | |
---|
| 19 | */ |
---|
| 20 | |
---|
| 21 | #ifndef _AUBIO_SYNTH_WAVETABLE_H |
---|
| 22 | #define _AUBIO_SYNTH_WAVETABLE_H |
---|
| 23 | |
---|
| 24 | /** \file |
---|
| 25 | |
---|
| 26 | Load and play sound files. |
---|
| 27 | |
---|
| 28 | This file loads a sample and gets ready to play it. |
---|
| 29 | |
---|
| 30 | The `_do` function adds the new samples to the input, and write the result as |
---|
| 31 | the output. |
---|
| 32 | |
---|
| 33 | \example synth/test-wavetable.c |
---|
| 34 | |
---|
| 35 | */ |
---|
| 36 | |
---|
| 37 | #ifdef __cplusplus |
---|
| 38 | extern "C" { |
---|
| 39 | #endif |
---|
| 40 | |
---|
| 41 | /** wavetable object */ |
---|
| 42 | typedef struct _aubio_wavetable_t aubio_wavetable_t; |
---|
| 43 | |
---|
| 44 | /** create new wavetable object |
---|
| 45 | |
---|
| 46 | \param samplerate the sampling rate of the new wavetable |
---|
| 47 | |
---|
| 48 | \return the newly created ::aubio_wavetable_t |
---|
| 49 | |
---|
| 50 | */ |
---|
| 51 | aubio_wavetable_t * new_aubio_wavetable(uint_t samplerate, uint_t hop_size); |
---|
| 52 | |
---|
| 53 | /** load source in wavetable |
---|
| 54 | |
---|
| 55 | \param o wavetable, created by ::new_aubio_wavetable |
---|
| 56 | \param uri the uri of the source to load |
---|
| 57 | |
---|
| 58 | \return 0 if successful, non-zero otherwise |
---|
| 59 | |
---|
| 60 | */ |
---|
| 61 | uint_t aubio_wavetable_load( aubio_wavetable_t * o, char_t * uri ); |
---|
| 62 | |
---|
| 63 | /** process wavetable function |
---|
| 64 | |
---|
| 65 | \param o wavetable, created by ::new_aubio_wavetable |
---|
| 66 | \param input input of the wavetable, to be added to the output |
---|
| 67 | \param output output of the wavetable |
---|
| 68 | |
---|
| 69 | This function adds the new samples from the playing sample to the output. |
---|
| 70 | |
---|
| 71 | If `input` is not NULL and different from `output`, then the samples from `input` |
---|
| 72 | are added to the output. |
---|
| 73 | |
---|
| 74 | */ |
---|
| 75 | void aubio_wavetable_do ( aubio_wavetable_t * o, fvec_t * input, fvec_t * output); |
---|
| 76 | |
---|
| 77 | /** process wavetable function, multiple channels |
---|
| 78 | |
---|
| 79 | \param o wavetable, created by ::new_aubio_wavetable |
---|
| 80 | \param input input of the wavetable, to be added to the output |
---|
| 81 | \param output output of the wavetable |
---|
| 82 | |
---|
| 83 | This function adds the new samples from the playing sample to the output. |
---|
| 84 | |
---|
| 85 | If `input` is not NULL and different from `output`, then the samples from `input` |
---|
| 86 | are added to the output. |
---|
| 87 | |
---|
| 88 | */ |
---|
| 89 | void aubio_wavetable_do_multi ( aubio_wavetable_t * o, fmat_t * input, fmat_t * output); |
---|
| 90 | |
---|
| 91 | /** get current playing state |
---|
| 92 | |
---|
| 93 | \param o wavetable, created by ::new_aubio_wavetable |
---|
| 94 | |
---|
| 95 | \return 0 if not playing, 1 if playing |
---|
| 96 | |
---|
| 97 | */ |
---|
| 98 | uint_t aubio_wavetable_get_playing ( aubio_wavetable_t * o ); |
---|
| 99 | |
---|
| 100 | /** set current playing state |
---|
| 101 | |
---|
| 102 | \param o wavetable, created by ::new_aubio_wavetable |
---|
| 103 | \param playing 0 for not playing, 1 for playing |
---|
| 104 | |
---|
| 105 | \return 0 if successful, 1 otherwise |
---|
| 106 | |
---|
| 107 | */ |
---|
| 108 | uint_t aubio_wavetable_set_playing ( aubio_wavetable_t * o, uint_t playing ); |
---|
| 109 | |
---|
| 110 | /** play sample from start |
---|
| 111 | |
---|
| 112 | \param o wavetable, created by ::new_aubio_wavetable |
---|
| 113 | \param playing 0 for not playing, 1 for playing |
---|
| 114 | |
---|
| 115 | \return 0 if successful, 1 otherwise |
---|
| 116 | |
---|
| 117 | */ |
---|
| 118 | uint_t aubio_wavetable_play ( aubio_wavetable_t * o ); |
---|
| 119 | |
---|
| 120 | /** stop sample from start |
---|
| 121 | |
---|
| 122 | \param o wavetable, created by ::new_aubio_wavetable |
---|
| 123 | \param playing 0 for not playing, 1 for playing |
---|
| 124 | |
---|
| 125 | \return 0 if successful, 1 otherwise |
---|
| 126 | |
---|
| 127 | */ |
---|
| 128 | uint_t aubio_wavetable_stop ( aubio_wavetable_t * o ); |
---|
| 129 | |
---|
| 130 | /** set wavetable frequency |
---|
| 131 | |
---|
| 132 | \param o wavetable, created by ::new_aubio_wavetable |
---|
| 133 | \param playing 0 for not playing, 1 for playing |
---|
| 134 | |
---|
| 135 | \return 0 if successful, 1 otherwise |
---|
| 136 | |
---|
| 137 | */ |
---|
| 138 | uint_t aubio_wavetable_set_freq ( aubio_wavetable_t * o, smpl_t freq ); |
---|
| 139 | |
---|
| 140 | /** get wavetable frequency |
---|
| 141 | |
---|
| 142 | \param o wavetable, created by ::new_aubio_wavetable |
---|
| 143 | |
---|
| 144 | \return current frequency, in Hz |
---|
| 145 | |
---|
| 146 | */ |
---|
| 147 | smpl_t aubio_wavetable_get_freq ( aubio_wavetable_t * o); |
---|
| 148 | |
---|
| 149 | /** set wavetable amplitude |
---|
| 150 | |
---|
| 151 | \param o wavetable, created by ::new_aubio_wavetable |
---|
| 152 | \param playing 0 for not playing, 1 for playing |
---|
| 153 | |
---|
| 154 | \return 0 if successful, 1 otherwise |
---|
| 155 | |
---|
| 156 | */ |
---|
| 157 | uint_t aubio_wavetable_set_amp ( aubio_wavetable_t * o, smpl_t amp ); |
---|
| 158 | |
---|
| 159 | /** get wavetable amplitude |
---|
| 160 | |
---|
| 161 | \param o wavetable, created by ::new_aubio_wavetable |
---|
| 162 | |
---|
| 163 | \return current amplitude |
---|
| 164 | |
---|
| 165 | */ |
---|
| 166 | smpl_t aubio_wavetable_get_amp ( aubio_wavetable_t * o); |
---|
| 167 | |
---|
| 168 | /** destroy ::aubio_wavetable_t object |
---|
| 169 | |
---|
| 170 | \param o wavetable, created by ::new_aubio_wavetable |
---|
| 171 | |
---|
| 172 | */ |
---|
| 173 | void del_aubio_wavetable( aubio_wavetable_t * o ); |
---|
| 174 | |
---|
| 175 | #ifdef __cplusplus |
---|
| 176 | } |
---|
| 177 | #endif |
---|
| 178 | |
---|
| 179 | #endif /* _AUBIO_SYNTH_WAVETABLE_H */ |
---|