[c7860af] | 1 | /* |
---|
| 2 | Copyright (C) 2009 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 | #include "aubio_priv.h" |
---|
| 22 | #include "fmat.h" |
---|
| 23 | |
---|
| 24 | fmat_t * new_fmat (uint_t length, uint_t height) { |
---|
[767990e] | 25 | if ((sint_t)length <= 0 || (sint_t)height <= 0 ) { |
---|
| 26 | return NULL; |
---|
| 27 | } |
---|
[c7860af] | 28 | fmat_t * s = AUBIO_NEW(fmat_t); |
---|
| 29 | uint_t i,j; |
---|
| 30 | s->height = height; |
---|
| 31 | s->length = length; |
---|
| 32 | s->data = AUBIO_ARRAY(smpl_t*,s->height); |
---|
| 33 | for (i=0; i< s->height; i++) { |
---|
| 34 | s->data[i] = AUBIO_ARRAY(smpl_t, s->length); |
---|
| 35 | for (j=0; j< s->length; j++) { |
---|
| 36 | s->data[i][j]=0.; |
---|
| 37 | } |
---|
| 38 | } |
---|
| 39 | return s; |
---|
| 40 | } |
---|
| 41 | |
---|
| 42 | void del_fmat (fmat_t *s) { |
---|
| 43 | uint_t i; |
---|
| 44 | for (i=0; i<s->height; i++) { |
---|
| 45 | AUBIO_FREE(s->data[i]); |
---|
| 46 | } |
---|
| 47 | AUBIO_FREE(s->data); |
---|
| 48 | AUBIO_FREE(s); |
---|
| 49 | } |
---|
| 50 | |
---|
| 51 | void fmat_write_sample(fmat_t *s, smpl_t data, uint_t channel, uint_t position) { |
---|
| 52 | s->data[channel][position] = data; |
---|
| 53 | } |
---|
| 54 | smpl_t fmat_read_sample(fmat_t *s, uint_t channel, uint_t position) { |
---|
| 55 | return s->data[channel][position]; |
---|
| 56 | } |
---|
| 57 | void fmat_put_channel(fmat_t *s, smpl_t * data, uint_t channel) { |
---|
| 58 | s->data[channel] = data; |
---|
| 59 | } |
---|
[3cd9fdd] | 60 | void fmat_get_channel(fmat_t *s, uint_t channel, fvec_t *output) { |
---|
| 61 | output->data = s->data[channel]; |
---|
| 62 | output->length = s->length; |
---|
| 63 | return; |
---|
[c7860af] | 64 | } |
---|
| 65 | |
---|
| 66 | smpl_t ** fmat_get_data(fmat_t *s) { |
---|
| 67 | return s->data; |
---|
| 68 | } |
---|
| 69 | |
---|
| 70 | /* helper functions */ |
---|
| 71 | |
---|
| 72 | void fmat_print(fmat_t *s) { |
---|
| 73 | uint_t i,j; |
---|
| 74 | for (i=0; i< s->height; i++) { |
---|
| 75 | for (j=0; j< s->length; j++) { |
---|
| 76 | AUBIO_MSG(AUBIO_SMPL_FMT " ", s->data[i][j]); |
---|
| 77 | } |
---|
| 78 | AUBIO_MSG("\n"); |
---|
| 79 | } |
---|
| 80 | } |
---|
| 81 | |
---|
| 82 | void fmat_set(fmat_t *s, smpl_t val) { |
---|
| 83 | uint_t i,j; |
---|
| 84 | for (i=0; i< s->height; i++) { |
---|
| 85 | for (j=0; j< s->length; j++) { |
---|
| 86 | s->data[i][j] = val; |
---|
| 87 | } |
---|
| 88 | } |
---|
| 89 | } |
---|
| 90 | |
---|
| 91 | void fmat_zeros(fmat_t *s) { |
---|
[923a7a8] | 92 | #if HAVE_MEMCPY_HACKS |
---|
[c666a18] | 93 | uint_t i; |
---|
| 94 | for (i=0; i< s->height; i++) { |
---|
| 95 | memset(s->data[i], 0, s->length * sizeof(smpl_t)); |
---|
| 96 | } |
---|
[923a7a8] | 97 | #else |
---|
[c7860af] | 98 | fmat_set(s, 0.); |
---|
[923a7a8] | 99 | #endif |
---|
[c7860af] | 100 | } |
---|
| 101 | |
---|
| 102 | void fmat_ones(fmat_t *s) { |
---|
| 103 | fmat_set(s, 1.); |
---|
| 104 | } |
---|
| 105 | |
---|
| 106 | void fmat_rev(fmat_t *s) { |
---|
| 107 | uint_t i,j; |
---|
| 108 | for (i=0; i< s->height; i++) { |
---|
| 109 | for (j=0; j< FLOOR(s->length/2); j++) { |
---|
| 110 | ELEM_SWAP(s->data[i][j], s->data[i][s->length-1-j]); |
---|
| 111 | } |
---|
| 112 | } |
---|
| 113 | } |
---|
| 114 | |
---|
| 115 | void fmat_weight(fmat_t *s, fmat_t *weight) { |
---|
| 116 | uint_t i,j; |
---|
| 117 | uint_t length = MIN(s->length, weight->length); |
---|
| 118 | for (i=0; i< s->height; i++) { |
---|
| 119 | for (j=0; j< length; j++) { |
---|
| 120 | s->data[i][j] *= weight->data[0][j]; |
---|
| 121 | } |
---|
| 122 | } |
---|
| 123 | } |
---|
| 124 | |
---|
| 125 | void fmat_copy(fmat_t *s, fmat_t *t) { |
---|
| 126 | if (s->height != t->height) { |
---|
[923a7a8] | 127 | AUBIO_ERR("trying to copy %d rows to %d rows \n", |
---|
[c7860af] | 128 | s->height, t->height); |
---|
[923a7a8] | 129 | return; |
---|
[c7860af] | 130 | } |
---|
| 131 | if (s->length != t->length) { |
---|
[923a7a8] | 132 | AUBIO_ERR("trying to copy %d columns to %d columns\n", |
---|
[c7860af] | 133 | s->length, t->length); |
---|
[923a7a8] | 134 | return; |
---|
[c7860af] | 135 | } |
---|
[923a7a8] | 136 | #if HAVE_MEMCPY_HACKS |
---|
[83d2948] | 137 | uint_t i; |
---|
| 138 | for (i=0; i< s->height; i++) { |
---|
| 139 | memcpy(t->data[i], s->data[i], t->length * sizeof(smpl_t)); |
---|
| 140 | } |
---|
[923a7a8] | 141 | #else |
---|
| 142 | uint_t i,j; |
---|
| 143 | for (i=0; i< t->height; i++) { |
---|
| 144 | for (j=0; j< t->length; j++) { |
---|
[c7860af] | 145 | t->data[i][j] = s->data[i][j]; |
---|
| 146 | } |
---|
| 147 | } |
---|
[923a7a8] | 148 | #endif |
---|
[c7860af] | 149 | } |
---|
| 150 | |
---|