source: src/io/source_sndfile.c @ 063fa5a

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 063fa5a was 063fa5a, checked in by Paul Brossier <piem@piem.org>, 12 years ago

src/io/source_sndfile.{c,h}: add get_samplerate, if == 1 use file samplerate

  • Property mode set to 100644
File size: 5.2 KB
Line 
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 "source_sndfile.h"
30#include "fvec.h"
31
32#include "temporal/resampler.h"
33
34#define MAX_CHANNELS 6
35#define MAX_SIZE 4096
36#define MAX_SAMPLES MAX_CHANNELS * MAX_SIZE
37
38struct _aubio_source_sndfile_t {
39  uint_t hop_size;
40  uint_t samplerate;
41  uint_t channels;
42
43  // some data about the file
44  char_t *path;
45  SNDFILE *handle;
46  int input_samplerate;
47  int input_channels;
48  int input_format;
49
50  // resampling stuff
51  smpl_t ratio;
52  uint_t input_hop_size;
53#ifdef HAVE_SAMPLERATE
54  aubio_resampler_t *resampler;
55  fvec_t *input_data;
56#endif /* HAVE_SAMPLERATE */
57
58  // some temporary memory for sndfile to write at
59  uint_t scratch_size;
60  smpl_t *scratch_data;
61};
62
63aubio_source_sndfile_t * new_aubio_source_sndfile(char_t * path, uint_t samplerate, uint_t hop_size) {
64  aubio_source_sndfile_t * s = AUBIO_NEW(aubio_source_sndfile_t);
65
66  if (path == NULL) {
67    AUBIO_ERR("Aborted opening null path\n");
68    return NULL;
69  }
70
71  s->hop_size = hop_size;
72  s->samplerate = samplerate;
73  s->channels = 1;
74  s->path = path;
75
76  // try opening the file, geting the info in sfinfo
77  SF_INFO sfinfo;
78  AUBIO_MEMSET(&sfinfo, 0, sizeof (sfinfo));
79  s->handle = sf_open (s->path, SFM_READ, &sfinfo);
80
81  if (s->handle == NULL) {
82    /* show libsndfile err msg */
83    AUBIO_ERR("Failed opening %s: %s\n", s->path, sf_strerror (NULL));
84    goto beach;
85  }     
86
87  /* get input specs */
88  s->input_samplerate = sfinfo.samplerate;
89  s->input_channels   = sfinfo.channels;
90  s->input_format     = sfinfo.format;
91
92  if (s->samplerate == 1) s->samplerate = s->input_samplerate;
93
94  /* compute input block size required before resampling */
95  s->ratio = s->samplerate/(float)s->input_samplerate;
96  s->input_hop_size = (uint_t)FLOOR(s->hop_size / s->ratio + .5);
97
98  if (s->input_hop_size * s->input_channels > MAX_SAMPLES) {
99    AUBIO_ERR("Not able to process more than %d frames of %d channels\n",
100        MAX_SAMPLES / s->input_channels, s->input_channels);
101    goto beach;
102  }
103
104#ifdef HAVE_SAMPLERATE
105  s->resampler = NULL;
106  s->input_data = NULL;
107  if (s->ratio != 1) {
108    s->input_data = new_fvec(s->input_hop_size);
109    s->resampler = new_aubio_resampler(s->ratio, 4);
110    if (s->ratio > 1) {
111      // we would need to add a ring buffer for these
112      if ( (uint_t)(s->input_hop_size * s->ratio + .5)  != s->hop_size ) {
113        AUBIO_ERR("can not upsample from %d to %d\n", s->input_samplerate, s->samplerate);
114        goto beach;
115      }
116      AUBIO_WRN("upsampling %s from %d to % d\n", s->path, s->input_samplerate, s->samplerate);
117    }
118  }
119#else
120  if (s->ratio != 1) {
121    AUBIO_ERR("aubio was compiled without aubio_resampler\n");
122    goto beach;
123  }
124#endif /* HAVE_SAMPLERATE */
125
126  /* allocate data for de/interleaving reallocated when needed. */
127  s->scratch_size = s->input_hop_size * s->input_channels;
128  s->scratch_data = AUBIO_ARRAY(float,s->scratch_size);
129
130  return s;
131
132beach:
133  AUBIO_ERR("can not read %s at samplerate %dHz with a hop_size of %d\n",
134      s->path, s->samplerate, s->hop_size);
135  del_aubio_source_sndfile(s);
136  return NULL;
137}
138
139void aubio_source_sndfile_do(aubio_source_sndfile_t * s, fvec_t * read_data, uint_t * read){
140  uint_t i,j, input_channels = s->input_channels;
141  /* do actual reading */
142  sf_count_t read_samples = sf_read_float (s->handle, s->scratch_data, s->scratch_size);
143
144  smpl_t *data;
145
146#ifdef HAVE_SAMPLERATE
147  if (s->ratio != 1) {
148    data = s->input_data->data;
149  } else
150#endif /* HAVE_SAMPLERATE */
151  {
152    data = read_data->data;
153  }
154
155  /* de-interleaving and down-mixing data  */
156  for (j = 0; j < read_samples / input_channels; j++) {
157    data[j] = 0;
158    for (i = 0; i < input_channels; i++) {
159      data[j] += (smpl_t)s->scratch_data[input_channels*j+i];
160    }
161    data[j] /= (smpl_t)input_channels;
162  }
163
164#ifdef HAVE_SAMPLERATE
165  if (s->resampler) {
166    aubio_resampler_do(s->resampler, s->input_data, read_data);
167  }
168#endif /* HAVE_SAMPLERATE */
169
170  *read = (int)FLOOR(s->ratio * read_samples / input_channels + .5);
171}
172
173uint_t aubio_source_sndfile_get_samplerate(aubio_source_sndfile_t * s) {
174  return s->samplerate;
175}
176
177void del_aubio_source_sndfile(aubio_source_sndfile_t * s){
178  if (!s) return;
179  if (sf_close(s->handle)) {
180    AUBIO_ERR("Error closing file %s: %s", s->path, sf_strerror (NULL));
181  }
182#ifdef HAVE_SAMPLERATE
183  if (s->resampler != NULL) {
184    del_aubio_resampler(s->resampler);
185  }
186  if (s->input_data) {
187    del_fvec(s->input_data);
188  }
189#endif /* HAVE_SAMPLERATE */
190  AUBIO_FREE(s->scratch_data);
191  AUBIO_FREE(s);
192}
193
194#endif /* HAVE_SNDFILE */
Note: See TracBrowser for help on using the repository browser.