source: src/io/sink_sndfile.c @ 2eccf22

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

src/io/sink_sndfile.c: add missing do_multi

  • Property mode set to 100644
File size: 5.7 KB
Line 
1/*
2  Copyright (C) 2012-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
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"
30#include "fmat.h"
31#include "io/sink_sndfile.h"
32
33#define MAX_CHANNELS 6
34#define MAX_SIZE 4096
35
36struct _aubio_sink_sndfile_t {
37  uint_t samplerate;
38  uint_t channels;
39  char_t *path;
40
41  uint_t max_size;
42
43  SNDFILE *handle;
44  uint_t scratch_size;
45  smpl_t *scratch_data;
46};
47
48uint_t aubio_sink_sndfile_open(aubio_sink_sndfile_t *s);
49
50aubio_sink_sndfile_t * new_aubio_sink_sndfile(char_t * path, uint_t samplerate) {
51  aubio_sink_sndfile_t * s = AUBIO_NEW(aubio_sink_sndfile_t);
52  s->max_size = MAX_SIZE;
53  s->path = path;
54
55  if (path == NULL) {
56    AUBIO_ERR("sink_sndfile: Aborted opening null path\n");
57    return NULL;
58  }
59
60  s->samplerate = 0;
61  s->channels = 0;
62
63  // negative samplerate given, abort
64  if ((sint_t)samplerate < 0) goto beach;
65  // zero samplerate given. do not open yet
66  if ((sint_t)samplerate == 0) return s;
67
68  s->samplerate = samplerate;
69  s->channels = 1;
70
71  if (aubio_sink_sndfile_open(s) != AUBIO_OK) {;
72    goto beach;
73  }
74  return s;
75
76beach:
77  del_aubio_sink_sndfile(s);
78  return NULL;
79}
80
81uint_t aubio_sink_sndfile_preset_samplerate(aubio_sink_sndfile_t *s, uint_t samplerate)
82{
83  if ((sint_t)(samplerate) <= 0) return AUBIO_FAIL;
84  s->samplerate = samplerate;
85  // automatically open when both samplerate and channels have been set
86  if (s->samplerate != 0 && s->channels != 0) {
87    return aubio_sink_sndfile_open(s);
88  }
89  return AUBIO_OK;
90}
91
92uint_t aubio_sink_sndfile_preset_channels(aubio_sink_sndfile_t *s, uint_t channels)
93{
94  if ((sint_t)(channels) <= 0) return AUBIO_FAIL;
95  s->channels = channels;
96  // automatically open when both samplerate and channels have been set
97  if (s->samplerate != 0 && s->channels != 0) {
98    return aubio_sink_sndfile_open(s);
99  }
100  return AUBIO_OK;
101}
102
103uint_t aubio_sink_sndfile_get_samplerate(aubio_sink_sndfile_t *s)
104{
105  return s->samplerate;
106}
107
108uint_t aubio_sink_sndfile_get_channels(aubio_sink_sndfile_t *s)
109{
110  return s->channels;
111}
112
113uint_t aubio_sink_sndfile_open(aubio_sink_sndfile_t *s) {
114  /* set output format */
115  SF_INFO sfinfo;
116  AUBIO_MEMSET(&sfinfo, 0, sizeof (sfinfo));
117  sfinfo.samplerate = s->samplerate;
118  sfinfo.channels   = s->channels;
119  sfinfo.format     = SF_FORMAT_WAV | SF_FORMAT_PCM_16;
120
121  /* try creating the file */
122  s->handle = sf_open (s->path, SFM_WRITE, &sfinfo);
123
124  if (s->handle == NULL) {
125    /* show libsndfile err msg */
126    AUBIO_ERR("sink_sndfile: Failed opening %s. %s\n", s->path, sf_strerror (NULL));
127    return AUBIO_FAIL;
128  }     
129
130  s->scratch_size = s->max_size*s->channels;
131  /* allocate data for de/interleaving reallocated when needed. */
132  if (s->scratch_size >= MAX_SIZE * MAX_CHANNELS) {
133    AUBIO_ERR("sink_sndfile: %d x %d exceeds maximum aubio_sink_sndfile buffer size %d\n",
134        s->max_size, s->channels, MAX_CHANNELS * MAX_CHANNELS);
135    return AUBIO_FAIL;
136  }
137  s->scratch_data = AUBIO_ARRAY(float,s->scratch_size);
138
139  return AUBIO_OK;
140}
141
142void aubio_sink_sndfile_do(aubio_sink_sndfile_t *s, fvec_t * write_data, uint_t write){
143  uint_t i, j,  channels = s->channels;
144  int nsamples = channels*write;
145  smpl_t *pwrite;
146  sf_count_t written_frames;
147
148  if (write > s->max_size) {
149    AUBIO_WRN("trying to write %d frames, but only %d can be written at a time",
150      write, s->max_size);
151    write = s->max_size;
152  }
153
154  /* interleaving data  */
155  for ( i = 0; i < channels; i++) {
156    pwrite = (smpl_t *)write_data->data;
157    for (j = 0; j < write; j++) {
158      s->scratch_data[channels*j+i] = pwrite[j];
159    }
160  }
161
162  written_frames = sf_write_float (s->handle, s->scratch_data, nsamples);
163  if (written_frames/channels != write) {
164    AUBIO_WRN("sink_sndfile: trying to write %d frames to %s, but only %d could be written",
165      write, s->path, (uint_t)written_frames);
166  }
167  return;
168}
169
170void aubio_sink_sndfile_do_multi(aubio_sink_sndfile_t *s, fmat_t * write_data, uint_t write){
171  uint_t i, j,  channels = s->channels;
172  int nsamples = channels*write;
173  smpl_t *pwrite;
174  sf_count_t written_frames;
175
176  if (write > s->max_size) {
177    AUBIO_WRN("trying to write %d frames, but only %d can be written at a time",
178      write, s->max_size);
179    write = s->max_size;
180  }
181
182  /* interleaving data  */
183  for ( i = 0; i < write_data->height; i++) {
184    pwrite = (smpl_t *)write_data->data[i];
185    for (j = 0; j < write; j++) {
186      s->scratch_data[channels*j+i] = pwrite[j];
187    }
188  }
189
190  written_frames = sf_write_float (s->handle, s->scratch_data, nsamples);
191  if (written_frames/channels != write) {
192    AUBIO_WRN("sink_sndfile: trying to write %d frames to %s, but only %d could be written",
193      write, s->path, (uint_t)written_frames);
194  }
195  return;
196}
197
198uint_t aubio_sink_sndfile_close (aubio_sink_sndfile_t *s) {
199  if (!s->handle) {
200    return AUBIO_FAIL;
201  }
202  if (sf_close(s->handle)) {
203    AUBIO_ERR("sink_sndfile: Error closing file %s: %s", s->path, sf_strerror (NULL));
204    return AUBIO_FAIL;
205  }
206  s->handle = NULL;
207  return AUBIO_OK;
208}
209
210void del_aubio_sink_sndfile(aubio_sink_sndfile_t * s){
211  if (!s) return;
212  aubio_sink_sndfile_close(s);
213  AUBIO_FREE(s->scratch_data);
214  AUBIO_FREE(s);
215}
216
217#endif /* HAVE_SNDFILE */
Note: See TracBrowser for help on using the repository browser.