source: src/io/source_sndfile.c @ f9cca9c

feature/cnnfeature/crepefeature/pitchshiftfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretch
Last change on this file since f9cca9c was 985d5c4, checked in by Paul Brossier <piem@piem.org>, 8 years ago

src/io/source_sndfile.c: approximate duration when resampling

  • Property mode set to 100644
File size: 9.4 KB
RevLine 
[afbd7e7]1/*
2  Copyright (C) 2012 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
22#include "config.h"
23
24#ifdef HAVE_SNDFILE
25
26#include <sndfile.h>
27
28#include "aubio_priv.h"
29#include "fvec.h"
[3d2fe26]30#include "fmat.h"
31#include "source_sndfile.h"
[afbd7e7]32
[87dfc3f]33#include "temporal/resampler.h"
34
[afbd7e7]35#define MAX_CHANNELS 6
36#define MAX_SIZE 4096
[18c6b20]37#define MAX_SAMPLES MAX_CHANNELS * MAX_SIZE
[afbd7e7]38
[5bd806d]39#if !HAVE_AUBIO_DOUBLE
40#define aubio_sf_read_smpl sf_read_float
41#else /* HAVE_AUBIO_DOUBLE */
42#define aubio_sf_read_smpl sf_read_double
43#endif /* HAVE_AUBIO_DOUBLE */
44
[afbd7e7]45struct _aubio_source_sndfile_t {
46  uint_t hop_size;
47  uint_t samplerate;
48  uint_t channels;
[18c6b20]49
50  // some data about the file
51  char_t *path;
52  SNDFILE *handle;
[afbd7e7]53  int input_samplerate;
54  int input_channels;
55  int input_format;
[c6e7ba1]56  int duration;
[87dfc3f]57
[18c6b20]58  // resampling stuff
[87dfc3f]59  smpl_t ratio;
[18c6b20]60  uint_t input_hop_size;
[87dfc3f]61#ifdef HAVE_SAMPLERATE
62  aubio_resampler_t *resampler;
[18c6b20]63  fvec_t *input_data;
[87dfc3f]64#endif /* HAVE_SAMPLERATE */
[18c6b20]65
66  // some temporary memory for sndfile to write at
67  uint_t scratch_size;
[5bd806d]68  smpl_t *scratch_data;
[afbd7e7]69};
70
[ae5d58a]71aubio_source_sndfile_t * new_aubio_source_sndfile(const char_t * path, uint_t samplerate, uint_t hop_size) {
[afbd7e7]72  aubio_source_sndfile_t * s = AUBIO_NEW(aubio_source_sndfile_t);
[67b05b4]73  SF_INFO sfinfo;
[afbd7e7]74
75  if (path == NULL) {
[491e6ea]76    AUBIO_ERR("source_sndfile: Aborted opening null path\n");
[447c673]77    goto beach;
78  }
79  if ((sint_t)samplerate < 0) {
[491e6ea]80    AUBIO_ERR("source_sndfile: Can not open %s with samplerate %d\n", path, samplerate);
[447c673]81    goto beach;
82  }
83  if ((sint_t)hop_size <= 0) {
[491e6ea]84    AUBIO_ERR("source_sndfile: Can not open %s with hop_size %d\n", path, hop_size);
[447c673]85    goto beach;
[afbd7e7]86  }
87
88  s->hop_size = hop_size;
89  s->channels = 1;
[b643a33]90
91  if (s->path) AUBIO_FREE(s->path);
[d2be104]92  s->path = AUBIO_ARRAY(char_t, strnlen(path, PATH_MAX) + 1);
93  strncpy(s->path, path, strnlen(path, PATH_MAX) + 1);
[afbd7e7]94
[3d1ca81]95  // try opening the file, getting the info in sfinfo
[afbd7e7]96  AUBIO_MEMSET(&sfinfo, 0, sizeof (sfinfo));
97  s->handle = sf_open (s->path, SFM_READ, &sfinfo);
98
99  if (s->handle == NULL) {
100    /* show libsndfile err msg */
[491e6ea]101    AUBIO_ERR("source_sndfile: Failed opening %s: %s\n", s->path, sf_strerror (NULL));
[18c6b20]102    goto beach;
[a65d37a]103  }
[afbd7e7]104
105  /* get input specs */
106  s->input_samplerate = sfinfo.samplerate;
107  s->input_channels   = sfinfo.channels;
108  s->input_format     = sfinfo.format;
[c6e7ba1]109  s->duration         = sfinfo.frames;
[afbd7e7]110
[c8f411b]111  if (samplerate == 0) {
[26a6af7]112    s->samplerate = s->input_samplerate;
[4db8eab]113    //AUBIO_DBG("sampling rate set to 0, automagically adjusting to %d\n", samplerate);
[26a6af7]114  } else {
115    s->samplerate = samplerate;
[c8f411b]116  }
[18c6b20]117  /* compute input block size required before resampling */
[5bd806d]118  s->ratio = s->samplerate/(smpl_t)s->input_samplerate;
[18c6b20]119  s->input_hop_size = (uint_t)FLOOR(s->hop_size / s->ratio + .5);
120
121  if (s->input_hop_size * s->input_channels > MAX_SAMPLES) {
[491e6ea]122    AUBIO_ERR("source_sndfile: Not able to process more than %d frames of %d channels\n",
[18c6b20]123        MAX_SAMPLES / s->input_channels, s->input_channels);
124    goto beach;
125  }
[87dfc3f]126
127#ifdef HAVE_SAMPLERATE
[18c6b20]128  s->resampler = NULL;
129  s->input_data = NULL;
130  if (s->ratio != 1) {
131    s->input_data = new_fvec(s->input_hop_size);
[6fd8d7e]132    s->resampler = new_aubio_resampler(s->ratio, 4);
[d22cc42]133    if (s->ratio > 1) {
134      // we would need to add a ring buffer for these
135      if ( (uint_t)(s->input_hop_size * s->ratio + .5)  != s->hop_size ) {
[491e6ea]136        AUBIO_ERR("source_sndfile: can not upsample %s from %d to %d\n", s->path,
[018e511]137            s->input_samplerate, s->samplerate);
[d22cc42]138        goto beach;
139      }
[491e6ea]140      AUBIO_WRN("source_sndfile: upsampling %s from %d to %d\n", s->path,
[018e511]141          s->input_samplerate, s->samplerate);
[87dfc3f]142    }
[985d5c4]143    s->duration = (uint_t)FLOOR(s->duration * s->ratio);
[18c6b20]144  }
[87dfc3f]145#else
[18c6b20]146  if (s->ratio != 1) {
[491e6ea]147    AUBIO_ERR("source_sndfile: aubio was compiled without aubio_resampler\n");
[18c6b20]148    goto beach;
[afbd7e7]149  }
[18c6b20]150#endif /* HAVE_SAMPLERATE */
[87dfc3f]151
[afbd7e7]152  /* allocate data for de/interleaving reallocated when needed. */
[18c6b20]153  s->scratch_size = s->input_hop_size * s->input_channels;
[5bd806d]154  s->scratch_data = AUBIO_ARRAY(smpl_t, s->scratch_size);
[afbd7e7]155
156  return s;
[18c6b20]157
158beach:
[447c673]159  //AUBIO_ERR("can not read %s at samplerate %dHz with a hop_size of %d\n",
160  //    s->path, s->samplerate, s->hop_size);
[18c6b20]161  del_aubio_source_sndfile(s);
162  return NULL;
[afbd7e7]163}
164
165void aubio_source_sndfile_do(aubio_source_sndfile_t * s, fvec_t * read_data, uint_t * read){
[18c6b20]166  uint_t i,j, input_channels = s->input_channels;
[2722dc7]167  /* read from file into scratch_data */
[5bd806d]168  sf_count_t read_samples = aubio_sf_read_smpl (s->handle, s->scratch_data, s->scratch_size);
[afbd7e7]169
[2722dc7]170  /* where to store de-interleaved data */
171  smpl_t *ptr_data;
[87dfc3f]172#ifdef HAVE_SAMPLERATE
[18c6b20]173  if (s->ratio != 1) {
[2722dc7]174    ptr_data = s->input_data->data;
[87dfc3f]175  } else
176#endif /* HAVE_SAMPLERATE */
177  {
[2722dc7]178    ptr_data = read_data->data;
[87dfc3f]179  }
[afbd7e7]180
181  /* de-interleaving and down-mixing data  */
[18c6b20]182  for (j = 0; j < read_samples / input_channels; j++) {
[2722dc7]183    ptr_data[j] = 0;
[afbd7e7]184    for (i = 0; i < input_channels; i++) {
[2722dc7]185      ptr_data[j] += s->scratch_data[input_channels*j+i];
[afbd7e7]186    }
[2722dc7]187    ptr_data[j] /= (smpl_t)input_channels;
[87dfc3f]188  }
189
190#ifdef HAVE_SAMPLERATE
191  if (s->resampler) {
[18c6b20]192    aubio_resampler_do(s->resampler, s->input_data, read_data);
[afbd7e7]193  }
[87dfc3f]194#endif /* HAVE_SAMPLERATE */
195
[18c6b20]196  *read = (int)FLOOR(s->ratio * read_samples / input_channels + .5);
[18a378e]197
198  if (*read < s->hop_size) {
199    for (j = *read; j < s->hop_size; j++) {
[45f48576]200      read_data->data[j] = 0;
[18a378e]201    }
202  }
203
[afbd7e7]204}
205
[4865e4b]206void aubio_source_sndfile_do_multi(aubio_source_sndfile_t * s, fmat_t * read_data, uint_t * read){
207  uint_t i,j, input_channels = s->input_channels;
208  /* do actual reading */
[5bd806d]209  sf_count_t read_samples = aubio_sf_read_smpl (s->handle, s->scratch_data, s->scratch_size);
[4865e4b]210
[2722dc7]211  /* where to store de-interleaved data */
212  smpl_t **ptr_data;
[4865e4b]213#ifdef HAVE_SAMPLERATE
214  if (s->ratio != 1) {
[f33ab63]215    AUBIO_ERR("source_sndfile: no multi channel resampling yet\n");
[4865e4b]216    return;
[2722dc7]217    //ptr_data = s->input_data->data;
[4865e4b]218  } else
219#endif /* HAVE_SAMPLERATE */
220  {
[2722dc7]221    ptr_data = read_data->data;
[4865e4b]222  }
223
[50e10a9]224  if (read_data->height < input_channels) {
225    // destination matrix has less channels than the file; copy only first
226    // channels of the file, de-interleaving data
227    for (j = 0; j < read_samples / input_channels; j++) {
228      for (i = 0; i < read_data->height; i++) {
[5bd806d]229        ptr_data[i][j] = s->scratch_data[j * input_channels + i];
[50e10a9]230      }
231    }
232  } else {
233    // destination matrix has as many or more channels than the file; copy each
234    // channel from the file to the destination matrix, de-interleaving data
235    for (j = 0; j < read_samples / input_channels; j++) {
236      for (i = 0; i < input_channels; i++) {
[5bd806d]237        ptr_data[i][j] = s->scratch_data[j * input_channels + i];
[50e10a9]238      }
[4865e4b]239    }
240  }
[50e10a9]241
[6510866]242  if (read_data->height > input_channels) {
[50e10a9]243    // destination matrix has more channels than the file; copy last channel
244    // of the file to each additional channels, de-interleaving data
[6510866]245    for (j = 0; j < read_samples / input_channels; j++) {
[58c24e1]246      for (i = input_channels; i < read_data->height; i++) {
[5bd806d]247        ptr_data[i][j] = s->scratch_data[j * input_channels + (input_channels - 1)];
[6510866]248      }
249    }
250  }
[4865e4b]251
252#ifdef HAVE_SAMPLERATE
253  if (s->resampler) {
[3d2fe26]254    //aubio_resampler_do(s->resampler, s->input_data, read_data);
[4865e4b]255  }
256#endif /* HAVE_SAMPLERATE */
257
258  *read = (int)FLOOR(s->ratio * read_samples / input_channels + .5);
[18a378e]259
260  if (*read < s->hop_size) {
[69440b8]261    for (i = 0; i < read_data->height; i++) {
[18a378e]262      for (j = *read; j < s->hop_size; j++) {
[45f48576]263        read_data->data[i][j] = 0.;
[18a378e]264      }
265    }
266  }
267
[4865e4b]268}
269
[063fa5a]270uint_t aubio_source_sndfile_get_samplerate(aubio_source_sndfile_t * s) {
271  return s->samplerate;
272}
273
[4865e4b]274uint_t aubio_source_sndfile_get_channels(aubio_source_sndfile_t * s) {
275  return s->input_channels;
276}
277
[c6e7ba1]278uint_t aubio_source_sndfile_get_duration (const aubio_source_sndfile_t * s) {
279  if (s && s->duration) {
280    return s->duration;
281  }
282  return 0;
283}
284
[7982203]285uint_t aubio_source_sndfile_seek (aubio_source_sndfile_t * s, uint_t pos) {
[7bb5cef]286  uint_t resampled_pos = (uint_t)ROUND(pos / s->ratio);
[f33ab63]287  sf_count_t sf_ret = sf_seek (s->handle, resampled_pos, SEEK_SET);
288  if (sf_ret == -1) {
289    AUBIO_ERR("source_sndfile: Failed seeking %s at %d: %s\n", s->path, pos, sf_strerror (NULL));
290    return AUBIO_FAIL;
291  }
292  if (sf_ret != resampled_pos) {
[74dcddb]293    AUBIO_ERR("source_sndfile: Tried seeking %s at %d, but got %d: %s\n",
294        s->path, resampled_pos, (uint_t)sf_ret, sf_strerror (NULL));
[f33ab63]295    return AUBIO_FAIL;
296  }
297  return AUBIO_OK;
[7982203]298}
299
[422452b]300uint_t aubio_source_sndfile_close (aubio_source_sndfile_t *s) {
301  if (!s->handle) {
302    return AUBIO_FAIL;
[c038740]303  }
[422452b]304  if(sf_close(s->handle)) {
[f33ab63]305    AUBIO_ERR("source_sndfile: Error closing file %s: %s\n", s->path, sf_strerror (NULL));
[422452b]306    return AUBIO_FAIL;
[afbd7e7]307  }
[422452b]308  return AUBIO_OK;
309}
310
311void del_aubio_source_sndfile(aubio_source_sndfile_t * s){
312  if (!s) return;
[c038740]313  aubio_source_sndfile_close(s);
[87dfc3f]314#ifdef HAVE_SAMPLERATE
[18c6b20]315  if (s->resampler != NULL) {
[87dfc3f]316    del_aubio_resampler(s->resampler);
317  }
[18c6b20]318  if (s->input_data) {
319    del_fvec(s->input_data);
[87dfc3f]320  }
321#endif /* HAVE_SAMPLERATE */
[b643a33]322  if (s->path) AUBIO_FREE(s->path);
[afbd7e7]323  AUBIO_FREE(s->scratch_data);
324  AUBIO_FREE(s);
325}
326
327#endif /* HAVE_SNDFILE */
Note: See TracBrowser for help on using the repository browser.