[5158c22] | 1 | /* |
---|
| 2 | Copyright (C) 2014 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 | |
---|
[33d0242] | 21 | #include "aubio_priv.h" |
---|
[5158c22] | 22 | |
---|
| 23 | #ifdef HAVE_WAVREAD |
---|
| 24 | |
---|
| 25 | #include "fvec.h" |
---|
| 26 | #include "fmat.h" |
---|
| 27 | #include "source_wavread.h" |
---|
| 28 | |
---|
[d13e6b7] | 29 | #include <errno.h> |
---|
[5158c22] | 30 | |
---|
| 31 | #define AUBIO_WAVREAD_BUFSIZE 1024 |
---|
| 32 | |
---|
| 33 | #define SHORT_TO_FLOAT(x) (smpl_t)(x * 3.0517578125e-05) |
---|
| 34 | |
---|
| 35 | struct _aubio_source_wavread_t { |
---|
| 36 | uint_t hop_size; |
---|
| 37 | uint_t samplerate; |
---|
| 38 | uint_t channels; |
---|
| 39 | |
---|
| 40 | // some data about the file |
---|
| 41 | char_t *path; |
---|
| 42 | uint_t input_samplerate; |
---|
| 43 | uint_t input_channels; |
---|
| 44 | |
---|
| 45 | // internal stuff |
---|
| 46 | FILE *fid; |
---|
| 47 | |
---|
| 48 | uint_t read_samples; |
---|
| 49 | uint_t blockalign; |
---|
| 50 | uint_t bitspersample; |
---|
| 51 | uint_t read_index; |
---|
| 52 | uint_t eof; |
---|
| 53 | |
---|
[b4e1438] | 54 | uint_t duration; |
---|
| 55 | |
---|
[87636d0] | 56 | size_t seek_start; |
---|
| 57 | |
---|
[5158c22] | 58 | unsigned char *short_output; |
---|
| 59 | fmat_t *output; |
---|
| 60 | }; |
---|
| 61 | |
---|
[80d0083] | 62 | static unsigned int read_little_endian (unsigned char *buf, |
---|
| 63 | unsigned int length); |
---|
| 64 | |
---|
| 65 | static unsigned int read_little_endian (unsigned char *buf, |
---|
| 66 | unsigned int length) |
---|
| 67 | { |
---|
[5158c22] | 68 | uint_t i, ret = 0; |
---|
| 69 | for (i = 0; i < length; i++) { |
---|
| 70 | ret += buf[i] << (i * 8); |
---|
| 71 | } |
---|
| 72 | return ret; |
---|
| 73 | } |
---|
| 74 | |
---|
[ae5d58a] | 75 | aubio_source_wavread_t * new_aubio_source_wavread(const char_t * path, uint_t samplerate, uint_t hop_size) { |
---|
[5158c22] | 76 | aubio_source_wavread_t * s = AUBIO_NEW(aubio_source_wavread_t); |
---|
[bfab39c] | 77 | size_t bytes_read = 0, bytes_junk = 0, bytes_expected = 44; |
---|
[cfddab9] | 78 | unsigned char buf[5] = "\0"; |
---|
[b4e1438] | 79 | unsigned int format, channels, sr, byterate, blockalign, duration, bitspersample;//, data_size; |
---|
[5158c22] | 80 | |
---|
| 81 | if (path == NULL) { |
---|
| 82 | AUBIO_ERR("source_wavread: Aborted opening null path\n"); |
---|
| 83 | goto beach; |
---|
| 84 | } |
---|
| 85 | if ((sint_t)samplerate < 0) { |
---|
| 86 | AUBIO_ERR("source_wavread: Can not open %s with samplerate %d\n", path, samplerate); |
---|
| 87 | goto beach; |
---|
| 88 | } |
---|
| 89 | if ((sint_t)hop_size <= 0) { |
---|
| 90 | AUBIO_ERR("source_wavread: Can not open %s with hop_size %d\n", path, hop_size); |
---|
| 91 | goto beach; |
---|
| 92 | } |
---|
| 93 | |
---|
[b643a33] | 94 | if (s->path) AUBIO_FREE(s->path); |
---|
[d2be104] | 95 | s->path = AUBIO_ARRAY(char_t, strnlen(path, PATH_MAX) + 1); |
---|
| 96 | strncpy(s->path, path, strnlen(path, PATH_MAX) + 1); |
---|
[b643a33] | 97 | |
---|
[5158c22] | 98 | s->samplerate = samplerate; |
---|
| 99 | s->hop_size = hop_size; |
---|
| 100 | |
---|
[6d509c3] | 101 | s->fid = fopen((const char *)path, "rb"); |
---|
[5158c22] | 102 | if (!s->fid) { |
---|
[69bc171] | 103 | AUBIO_ERR("source_wavread: Failed opening %s (System error: %s)\n", s->path, strerror(errno)); |
---|
[5158c22] | 104 | goto beach; |
---|
| 105 | } |
---|
| 106 | |
---|
| 107 | // ChunkID |
---|
[87636d0] | 108 | bytes_read += fread(buf, 1, 4, s->fid); |
---|
[5158c22] | 109 | buf[4] = '\0'; |
---|
| 110 | if ( strcmp((const char *)buf, "RIFF") != 0 ) { |
---|
[3820264] | 111 | AUBIO_ERR("source_wavread: Failed opening %s (could not find RIFF header)\n", s->path); |
---|
[5158c22] | 112 | goto beach; |
---|
| 113 | } |
---|
| 114 | |
---|
| 115 | // ChunkSize |
---|
[87636d0] | 116 | bytes_read += fread(buf, 1, 4, s->fid); |
---|
[5158c22] | 117 | |
---|
| 118 | // Format |
---|
[87636d0] | 119 | bytes_read += fread(buf, 1, 4, s->fid); |
---|
[5158c22] | 120 | buf[4] = '\0'; |
---|
| 121 | if ( strcmp((const char *)buf, "WAVE") != 0 ) { |
---|
[3820264] | 122 | AUBIO_ERR("source_wavread: Failed opening %s (wrong format in RIFF header)\n", s->path); |
---|
[5158c22] | 123 | goto beach; |
---|
| 124 | } |
---|
| 125 | |
---|
| 126 | // Subchunk1ID |
---|
[87636d0] | 127 | bytes_read += fread(buf, 1, 4, s->fid); |
---|
[5158c22] | 128 | buf[4] = '\0'; |
---|
[bfab39c] | 129 | |
---|
| 130 | // check if we have a JUNK Chunk |
---|
| 131 | if ( strcmp((const char *)buf, "JUNK") == 0 ) { |
---|
| 132 | bytes_junk = fread(buf, 1, 4, s->fid); |
---|
| 133 | buf[4] = '\0'; |
---|
| 134 | bytes_junk += read_little_endian(buf, 4); |
---|
| 135 | if (fseek(s->fid, bytes_read + bytes_junk, SEEK_SET) != 0) { |
---|
[3820264] | 136 | AUBIO_ERR("source_wavread: Failed opening %s (could not seek past JUNK Chunk: %s)\n", |
---|
[bfab39c] | 137 | s->path, strerror(errno)); |
---|
| 138 | goto beach; |
---|
| 139 | } |
---|
| 140 | bytes_read += bytes_junk; |
---|
[a27576b] | 141 | bytes_expected += bytes_junk + 4; |
---|
[bfab39c] | 142 | // now really read the fmt chunk |
---|
[a27576b] | 143 | bytes_read += fread(buf, 1, 4, s->fid); |
---|
[bfab39c] | 144 | buf[4] = '\0'; |
---|
| 145 | } |
---|
| 146 | |
---|
| 147 | // get the fmt chunk |
---|
[5158c22] | 148 | if ( strcmp((const char *)buf, "fmt ") != 0 ) { |
---|
[3820264] | 149 | AUBIO_ERR("source_wavread: Failed opening %s (could not find 'fmt ' in RIFF header)\n", s->path); |
---|
[5158c22] | 150 | goto beach; |
---|
| 151 | } |
---|
| 152 | |
---|
| 153 | // Subchunk1Size |
---|
[87636d0] | 154 | bytes_read += fread(buf, 1, 4, s->fid); |
---|
[5158c22] | 155 | format = read_little_endian(buf, 4); |
---|
| 156 | if ( format != 16 ) { |
---|
| 157 | // TODO accept format 18 |
---|
[3820264] | 158 | AUBIO_ERR("source_wavread: Failed opening %s (not encoded with PCM)\n", s->path); |
---|
[5158c22] | 159 | goto beach; |
---|
| 160 | } |
---|
| 161 | if ( buf[1] || buf[2] | buf[3] ) { |
---|
[3820264] | 162 | AUBIO_ERR("source_wavread: Failed opening %s (Subchunk1Size should be 0)\n", s->path); |
---|
[5158c22] | 163 | goto beach; |
---|
| 164 | } |
---|
| 165 | |
---|
| 166 | // AudioFormat |
---|
[87636d0] | 167 | bytes_read += fread(buf, 1, 2, s->fid); |
---|
[5158c22] | 168 | if ( buf[0] != 1 || buf[1] != 0) { |
---|
[3820264] | 169 | AUBIO_ERR("source_wavread: Failed opening %s (AudioFormat should be PCM)\n", s->path); |
---|
[5158c22] | 170 | goto beach; |
---|
| 171 | } |
---|
| 172 | |
---|
| 173 | // NumChannels |
---|
[87636d0] | 174 | bytes_read += fread(buf, 1, 2, s->fid); |
---|
[5158c22] | 175 | channels = read_little_endian(buf, 2); |
---|
| 176 | |
---|
| 177 | // SampleRate |
---|
[87636d0] | 178 | bytes_read += fread(buf, 1, 4, s->fid); |
---|
[5158c22] | 179 | sr = read_little_endian(buf, 4); |
---|
| 180 | |
---|
| 181 | // ByteRate |
---|
[87636d0] | 182 | bytes_read += fread(buf, 1, 4, s->fid); |
---|
[5158c22] | 183 | byterate = read_little_endian(buf, 4); |
---|
| 184 | |
---|
| 185 | // BlockAlign |
---|
[87636d0] | 186 | bytes_read += fread(buf, 1, 2, s->fid); |
---|
[5158c22] | 187 | blockalign = read_little_endian(buf, 2); |
---|
| 188 | |
---|
| 189 | // BitsPerSample |
---|
[87636d0] | 190 | bytes_read += fread(buf, 1, 2, s->fid); |
---|
[5158c22] | 191 | bitspersample = read_little_endian(buf, 2); |
---|
| 192 | #if 0 |
---|
| 193 | if ( bitspersample != 16 ) { |
---|
| 194 | AUBIO_ERR("source_wavread: can not process %dbit file %s\n", |
---|
| 195 | bitspersample, s->path); |
---|
| 196 | goto beach; |
---|
| 197 | } |
---|
| 198 | #endif |
---|
| 199 | |
---|
| 200 | if ( byterate * 8 != sr * channels * bitspersample ) { |
---|
[3820264] | 201 | AUBIO_ERR("source_wavread: Failed opening %s (wrong byterate)\n", s->path); |
---|
[5158c22] | 202 | goto beach; |
---|
| 203 | } |
---|
| 204 | |
---|
| 205 | if ( blockalign * 8 != channels * bitspersample ) { |
---|
[3820264] | 206 | AUBIO_ERR("source_wavread: Failed opening %s (wrong blockalign)\n", s->path); |
---|
[5158c22] | 207 | goto beach; |
---|
| 208 | } |
---|
| 209 | |
---|
| 210 | s->input_samplerate = sr; |
---|
| 211 | s->input_channels = channels; |
---|
| 212 | |
---|
[8e21476] | 213 | #if 0 |
---|
[5158c22] | 214 | AUBIO_DBG("channels %d\n", channels); |
---|
| 215 | AUBIO_DBG("sr %d\n", sr); |
---|
| 216 | AUBIO_DBG("byterate %d\n", byterate); |
---|
| 217 | AUBIO_DBG("blockalign %d\n", blockalign); |
---|
| 218 | AUBIO_DBG("bitspersample %d\n", bitspersample); |
---|
| 219 | |
---|
| 220 | AUBIO_DBG("found %d channels in %s\n", s->input_channels, s->path); |
---|
| 221 | AUBIO_DBG("found %d samplerate in %s\n", s->input_samplerate, s->path); |
---|
| 222 | #endif |
---|
| 223 | |
---|
| 224 | if (samplerate == 0) { |
---|
| 225 | s->samplerate = s->input_samplerate; |
---|
| 226 | } else if (samplerate != s->input_samplerate) { |
---|
| 227 | AUBIO_ERR("source_wavread: can not resample %s from %d to %dHz\n", |
---|
| 228 | s->path, s->input_samplerate, samplerate); |
---|
| 229 | goto beach; |
---|
| 230 | } |
---|
| 231 | |
---|
| 232 | // Subchunk2ID |
---|
[87636d0] | 233 | bytes_read += fread(buf, 1, 4, s->fid); |
---|
[5158c22] | 234 | buf[4] = '\0'; |
---|
[fa5d8ad] | 235 | while ( strcmp((const char *)buf, "data") != 0 ) { |
---|
| 236 | if (feof(s->fid) || ferror(s->fid)) { |
---|
| 237 | AUBIO_ERR("source_wavread: no data RIFF header found in %s\n", s->path); |
---|
| 238 | goto beach; |
---|
| 239 | } |
---|
| 240 | bytes_junk = fread(buf, 1, 4, s->fid); |
---|
| 241 | buf[4] = '\0'; |
---|
| 242 | bytes_junk += read_little_endian(buf, 4); |
---|
| 243 | if (fseek(s->fid, bytes_read + bytes_junk, SEEK_SET) != 0) { |
---|
| 244 | AUBIO_ERR("source_wavread: could not seek past unknown chunk in %s (%s)\n", |
---|
| 245 | s->path, strerror(errno)); |
---|
| 246 | goto beach; |
---|
| 247 | } |
---|
| 248 | bytes_read += bytes_junk; |
---|
| 249 | bytes_expected += bytes_junk+ 4; |
---|
| 250 | bytes_read += fread(buf, 1, 4, s->fid); |
---|
| 251 | buf[4] = '\0'; |
---|
[5158c22] | 252 | } |
---|
| 253 | |
---|
| 254 | // Subchunk2Size |
---|
[87636d0] | 255 | bytes_read += fread(buf, 1, 4, s->fid); |
---|
[b4e1438] | 256 | duration = read_little_endian(buf, 4) / blockalign; |
---|
| 257 | |
---|
[5158c22] | 258 | //data_size = buf[0] + (buf[1] << 8) + (buf[2] << 16) + (buf[3] << 24); |
---|
| 259 | //AUBIO_MSG("found %d frames in %s\n", 8 * data_size / bitspersample / channels, s->path); |
---|
| 260 | |
---|
[87636d0] | 261 | // check the total number of bytes read is correct |
---|
| 262 | if ( bytes_read != bytes_expected ) { |
---|
[46148d3] | 263 | #ifndef HAVE_WIN_HACKS |
---|
[87636d0] | 264 | AUBIO_ERR("source_wavread: short read (%zd instead of %zd) in %s\n", |
---|
[bc6b2af] | 265 | bytes_read, bytes_expected, s->path); |
---|
[46148d3] | 266 | #else // mingw does not know about %zd... |
---|
| 267 | AUBIO_ERR("source_wavread: short read (%d instead of %d) in %s\n", |
---|
[c952f42] | 268 | (int)bytes_read, (int)bytes_expected, s->path); |
---|
[bc6b2af] | 269 | #endif |
---|
[87636d0] | 270 | goto beach; |
---|
| 271 | } |
---|
| 272 | s->seek_start = bytes_read; |
---|
| 273 | |
---|
[5158c22] | 274 | s->output = new_fmat(s->input_channels, AUBIO_WAVREAD_BUFSIZE); |
---|
| 275 | s->blockalign= blockalign; |
---|
| 276 | s->bitspersample = bitspersample; |
---|
| 277 | |
---|
[b4e1438] | 278 | s->duration = duration; |
---|
| 279 | |
---|
[5158c22] | 280 | s->short_output = (unsigned char *)calloc(s->blockalign, AUBIO_WAVREAD_BUFSIZE); |
---|
| 281 | s->read_index = 0; |
---|
| 282 | s->read_samples = 0; |
---|
| 283 | s->eof = 0; |
---|
| 284 | |
---|
| 285 | return s; |
---|
| 286 | |
---|
| 287 | beach: |
---|
[5ab8e59] | 288 | //AUBIO_ERR("source_wavread: can not read %s at samplerate %dHz with a hop_size of %d\n", |
---|
| 289 | // s->path, s->samplerate, s->hop_size); |
---|
[5158c22] | 290 | del_aubio_source_wavread(s); |
---|
| 291 | return NULL; |
---|
| 292 | } |
---|
| 293 | |
---|
| 294 | void aubio_source_wavread_readframe(aubio_source_wavread_t *s, uint_t *wavread_read); |
---|
| 295 | |
---|
| 296 | void aubio_source_wavread_readframe(aubio_source_wavread_t *s, uint_t *wavread_read) { |
---|
| 297 | unsigned char *short_ptr = s->short_output; |
---|
| 298 | size_t read = fread(short_ptr, s->blockalign, AUBIO_WAVREAD_BUFSIZE, s->fid); |
---|
| 299 | uint_t i, j, b, bitspersample = s->bitspersample; |
---|
| 300 | uint_t wrap_at = (1 << ( bitspersample - 1 ) ); |
---|
| 301 | uint_t wrap_with = (1 << bitspersample); |
---|
| 302 | smpl_t scaler = 1. / wrap_at; |
---|
| 303 | int signed_val = 0; |
---|
| 304 | unsigned int unsigned_val = 0; |
---|
| 305 | |
---|
| 306 | for (j = 0; j < read; j++) { |
---|
| 307 | for (i = 0; i < s->input_channels; i++) { |
---|
| 308 | unsigned_val = 0; |
---|
| 309 | for (b = 0; b < bitspersample; b+=8 ) { |
---|
| 310 | unsigned_val += *(short_ptr) << b; |
---|
| 311 | short_ptr++; |
---|
| 312 | } |
---|
| 313 | signed_val = unsigned_val; |
---|
| 314 | // FIXME why does 8 bit conversion maps [0;255] to [-128;127] |
---|
| 315 | // instead of [0;127] to [0;127] and [128;255] to [-128;-1] |
---|
| 316 | if (bitspersample == 8) signed_val -= wrap_at; |
---|
| 317 | else if (unsigned_val >= wrap_at) signed_val = unsigned_val - wrap_with; |
---|
| 318 | s->output->data[i][j] = signed_val * scaler; |
---|
| 319 | } |
---|
| 320 | } |
---|
| 321 | |
---|
| 322 | *wavread_read = read; |
---|
| 323 | |
---|
| 324 | if (read == 0) s->eof = 1; |
---|
| 325 | } |
---|
| 326 | |
---|
| 327 | void aubio_source_wavread_do(aubio_source_wavread_t * s, fvec_t * read_data, uint_t * read){ |
---|
| 328 | uint_t i, j; |
---|
| 329 | uint_t end = 0; |
---|
| 330 | uint_t total_wrote = 0; |
---|
| 331 | while (total_wrote < s->hop_size) { |
---|
| 332 | end = MIN(s->read_samples - s->read_index, s->hop_size - total_wrote); |
---|
| 333 | for (i = 0; i < end; i++) { |
---|
| 334 | read_data->data[i + total_wrote] = 0; |
---|
| 335 | for (j = 0; j < s->input_channels; j++ ) { |
---|
| 336 | read_data->data[i + total_wrote] += s->output->data[j][i + s->read_index]; |
---|
| 337 | } |
---|
| 338 | read_data->data[i + total_wrote] /= (smpl_t)(s->input_channels); |
---|
| 339 | } |
---|
| 340 | total_wrote += end; |
---|
| 341 | if (total_wrote < s->hop_size) { |
---|
| 342 | uint_t wavread_read = 0; |
---|
| 343 | aubio_source_wavread_readframe(s, &wavread_read); |
---|
| 344 | s->read_samples = wavread_read; |
---|
| 345 | s->read_index = 0; |
---|
| 346 | if (s->eof) { |
---|
| 347 | break; |
---|
| 348 | } |
---|
| 349 | } else { |
---|
| 350 | s->read_index += end; |
---|
| 351 | } |
---|
| 352 | } |
---|
| 353 | if (total_wrote < s->hop_size) { |
---|
| 354 | for (i = end; i < s->hop_size; i++) { |
---|
| 355 | read_data->data[i] = 0.; |
---|
| 356 | } |
---|
| 357 | } |
---|
| 358 | *read = total_wrote; |
---|
| 359 | } |
---|
| 360 | |
---|
| 361 | void aubio_source_wavread_do_multi(aubio_source_wavread_t * s, fmat_t * read_data, uint_t * read){ |
---|
| 362 | uint_t i,j; |
---|
| 363 | uint_t end = 0; |
---|
| 364 | uint_t total_wrote = 0; |
---|
| 365 | while (total_wrote < s->hop_size) { |
---|
| 366 | end = MIN(s->read_samples - s->read_index, s->hop_size - total_wrote); |
---|
| 367 | for (j = 0; j < read_data->height; j++) { |
---|
| 368 | for (i = 0; i < end; i++) { |
---|
| 369 | read_data->data[j][i + total_wrote] = s->output->data[j][i]; |
---|
| 370 | } |
---|
| 371 | } |
---|
| 372 | total_wrote += end; |
---|
| 373 | if (total_wrote < s->hop_size) { |
---|
| 374 | uint_t wavread_read = 0; |
---|
| 375 | aubio_source_wavread_readframe(s, &wavread_read); |
---|
| 376 | s->read_samples = wavread_read; |
---|
| 377 | s->read_index = 0; |
---|
| 378 | if (s->eof) { |
---|
| 379 | break; |
---|
| 380 | } |
---|
| 381 | } else { |
---|
| 382 | s->read_index += end; |
---|
| 383 | } |
---|
| 384 | } |
---|
| 385 | if (total_wrote < s->hop_size) { |
---|
| 386 | for (j = 0; j < read_data->height; j++) { |
---|
| 387 | for (i = end; i < s->hop_size; i++) { |
---|
| 388 | read_data->data[j][i] = 0.; |
---|
| 389 | } |
---|
| 390 | } |
---|
| 391 | } |
---|
| 392 | *read = total_wrote; |
---|
| 393 | } |
---|
| 394 | |
---|
| 395 | uint_t aubio_source_wavread_get_samplerate(aubio_source_wavread_t * s) { |
---|
| 396 | return s->samplerate; |
---|
| 397 | } |
---|
| 398 | |
---|
| 399 | uint_t aubio_source_wavread_get_channels(aubio_source_wavread_t * s) { |
---|
| 400 | return s->input_channels; |
---|
| 401 | } |
---|
| 402 | |
---|
| 403 | uint_t aubio_source_wavread_seek (aubio_source_wavread_t * s, uint_t pos) { |
---|
[0ff4434] | 404 | uint_t ret = 0; |
---|
| 405 | if ((sint_t)pos < 0) { |
---|
| 406 | return AUBIO_FAIL; |
---|
| 407 | } |
---|
| 408 | ret = fseek(s->fid, s->seek_start + pos * s->blockalign, SEEK_SET); |
---|
| 409 | if (ret != 0) { |
---|
| 410 | AUBIO_ERR("source_wavread: could not seek %s at %d (%s)\n", s->path, pos, strerror(errno)); |
---|
| 411 | return AUBIO_FAIL; |
---|
| 412 | } |
---|
| 413 | // reset some values |
---|
[5158c22] | 414 | s->eof = 0; |
---|
| 415 | s->read_index = 0; |
---|
[0ff4434] | 416 | return AUBIO_OK; |
---|
[5158c22] | 417 | } |
---|
| 418 | |
---|
[b4e1438] | 419 | uint_t aubio_source_wavread_get_duration (const aubio_source_wavread_t * s) { |
---|
| 420 | if (s && s->duration) { |
---|
| 421 | return s->duration; |
---|
| 422 | } |
---|
| 423 | return 0; |
---|
| 424 | } |
---|
| 425 | |
---|
[422452b] | 426 | uint_t aubio_source_wavread_close (aubio_source_wavread_t * s) { |
---|
[c1f0c1d] | 427 | if (!s->fid) { |
---|
| 428 | return AUBIO_FAIL; |
---|
| 429 | } |
---|
| 430 | if (fclose(s->fid)) { |
---|
| 431 | AUBIO_ERR("source_wavread: could not close %s (%s)\n", s->path, strerror(errno)); |
---|
[422452b] | 432 | return AUBIO_FAIL; |
---|
| 433 | } |
---|
[c1f0c1d] | 434 | s->fid = NULL; |
---|
[422452b] | 435 | return AUBIO_OK; |
---|
| 436 | } |
---|
| 437 | |
---|
[5158c22] | 438 | void del_aubio_source_wavread(aubio_source_wavread_t * s) { |
---|
| 439 | if (!s) return; |
---|
[422452b] | 440 | aubio_source_wavread_close(s); |
---|
[5158c22] | 441 | if (s->short_output) AUBIO_FREE(s->short_output); |
---|
| 442 | if (s->output) del_fmat(s->output); |
---|
[b643a33] | 443 | if (s->path) AUBIO_FREE(s->path); |
---|
[5158c22] | 444 | AUBIO_FREE(s); |
---|
| 445 | } |
---|
| 446 | |
---|
| 447 | #endif /* HAVE_WAVREAD */ |
---|