[d1ec8cb] | 1 | /* |
---|
| 2 | Copyright (C) 2003-2007 Paul Brossier <piem@piem.org> |
---|
| 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 | |
---|
| 20 | #ifndef _FVEC_H |
---|
| 21 | #define _FVEC_H |
---|
| 22 | |
---|
| 23 | #ifdef __cplusplus |
---|
| 24 | extern "C" { |
---|
| 25 | #endif |
---|
| 26 | |
---|
| 27 | /** \file |
---|
| 28 | |
---|
| 29 | Real buffers |
---|
| 30 | |
---|
| 31 | This file specifies the fvec_t buffer type, which is used throughout aubio to |
---|
| 32 | store real data. |
---|
| 33 | |
---|
| 34 | */ |
---|
| 35 | |
---|
| 36 | /** Sample buffer type */ |
---|
| 37 | typedef struct _fvec_t fvec_t; |
---|
| 38 | /** Buffer for real values */ |
---|
| 39 | struct _fvec_t { |
---|
| 40 | uint_t length; /**< length of buffer */ |
---|
| 41 | uint_t channels; /**< number of channels */ |
---|
| 42 | smpl_t **data; /**< data array of size [length] * [channels] */ |
---|
| 43 | }; |
---|
| 44 | /** fvec_t buffer creation function |
---|
| 45 | |
---|
| 46 | \param length the length of the buffer to create |
---|
| 47 | \param channels the number of channels in the buffer |
---|
| 48 | |
---|
| 49 | */ |
---|
| 50 | fvec_t * new_fvec(uint_t length, uint_t channels); |
---|
| 51 | /** fvec_t buffer deletion function |
---|
| 52 | |
---|
| 53 | \param s buffer to delete as returned by new_fvec() |
---|
| 54 | |
---|
| 55 | */ |
---|
| 56 | void del_fvec(fvec_t *s); |
---|
| 57 | /** read sample value in a buffer |
---|
| 58 | |
---|
| 59 | Note that this function is not used in the aubio library, since the same |
---|
| 60 | result can be obtained using vec->data[channel][position]. Its purpose is to |
---|
| 61 | access these values from wrappers, as created by swig. |
---|
| 62 | |
---|
| 63 | \param s vector to read from |
---|
| 64 | \param channel channel to read from |
---|
| 65 | \param position sample position to read from |
---|
| 66 | |
---|
| 67 | */ |
---|
| 68 | smpl_t fvec_read_sample(fvec_t *s, uint_t channel, uint_t position); |
---|
| 69 | /** write sample value in a buffer |
---|
| 70 | |
---|
| 71 | Note that this function is not used in the aubio library, since the same |
---|
| 72 | result can be obtained by assigning vec->data[channel][position]. Its purpose |
---|
| 73 | is to access these values from wrappers, as created by swig. |
---|
| 74 | |
---|
| 75 | \param s vector to write to |
---|
| 76 | \param data value to write in s->data[channel][position] |
---|
| 77 | \param channel channel to write to |
---|
| 78 | \param position sample position to write to |
---|
| 79 | |
---|
| 80 | */ |
---|
| 81 | void fvec_write_sample(fvec_t *s, smpl_t data, uint_t channel, uint_t position); |
---|
| 82 | /** read channel vector from a buffer |
---|
| 83 | |
---|
| 84 | Note that this function is not used in the aubio library, since the same |
---|
| 85 | result can be obtained with vec->data[channel]. Its purpose is to access |
---|
| 86 | these values from wrappers, as created by swig. |
---|
| 87 | |
---|
| 88 | \param s vector to read from |
---|
| 89 | \param channel channel to read from |
---|
| 90 | |
---|
| 91 | */ |
---|
| 92 | smpl_t * fvec_get_channel(fvec_t *s, uint_t channel); |
---|
| 93 | /** write channel vector into a buffer |
---|
| 94 | |
---|
| 95 | Note that this function is not used in the aubio library, since the same |
---|
| 96 | result can be obtained by assigning vec->data[channel]. Its purpose is to |
---|
| 97 | access these values from wrappers, as created by swig. |
---|
| 98 | |
---|
| 99 | \param s vector to write to |
---|
| 100 | \param data vector of [length] values to write |
---|
| 101 | \param channel channel to write to |
---|
| 102 | |
---|
| 103 | */ |
---|
| 104 | void fvec_put_channel(fvec_t *s, smpl_t * data, uint_t channel); |
---|
| 105 | /** read data from a buffer |
---|
| 106 | |
---|
| 107 | Note that this function is not used in the aubio library, since the same |
---|
| 108 | result can be obtained with vec->data. Its purpose is to access these values |
---|
| 109 | from wrappers, as created by swig. |
---|
| 110 | |
---|
| 111 | \param s vector to read from |
---|
| 112 | |
---|
| 113 | */ |
---|
| 114 | smpl_t ** fvec_get_data(fvec_t *s); |
---|
| 115 | |
---|
| 116 | #ifdef __cplusplus |
---|
| 117 | } |
---|
| 118 | #endif |
---|
| 119 | |
---|
| 120 | #endif /* _FVEC_H */ |
---|