source: src/io/sink_apple_audio.c @ 2da7526

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

src/io/{sink,source,utils}_apple_audio.c: fix memory leak calling CFRelease (closes #26, closes #27, and closes #28)

  • Property mode set to 100644
File size: 8.1 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#include "config.h"
22
23#ifdef HAVE_SINK_APPLE_AUDIO
24
25#include "aubio_priv.h"
26#include "fvec.h"
27#include "fmat.h"
28#include "io/sink_apple_audio.h"
29
30// CFURLRef, CFURLCreateWithFileSystemPath, ...
31#include <CoreFoundation/CoreFoundation.h>
32// ExtAudioFileRef, AudioStreamBasicDescription, AudioBufferList, ...
33#include <AudioToolbox/AudioToolbox.h>
34
35#define FLOAT_TO_SHORT(x) (short)(x * 32768)
36
37extern int createAubioBufferList(AudioBufferList *bufferList, int channels, int segmentSize);
38extern void freeAudioBufferList(AudioBufferList *bufferList);
39extern CFURLRef createURLFromPath(const char * path);
40char_t *getPrintableOSStatusError(char_t *str, OSStatus error);
41
42uint_t aubio_sink_apple_audio_open(aubio_sink_apple_audio_t *s);
43
44#define MAX_SIZE 4096 // the maximum number of frames that can be written at a time
45
46struct _aubio_sink_apple_audio_t {
47  uint_t samplerate;
48  uint_t channels;
49  char_t *path;
50
51  uint_t max_frames;
52
53  AudioBufferList bufferList;
54  ExtAudioFileRef audioFile;
55  bool async;
56};
57
58aubio_sink_apple_audio_t * new_aubio_sink_apple_audio(char_t * uri, uint_t samplerate) {
59  aubio_sink_apple_audio_t * s = AUBIO_NEW(aubio_sink_apple_audio_t);
60  s->path = uri;
61  s->max_frames = MAX_SIZE;
62  s->async = true;
63
64  if (uri == NULL) {
65    AUBIO_ERROR("sink_apple_audio: Aborted opening null path\n");
66    goto beach;
67  }
68
69  s->samplerate = 0;
70  s->channels = 0;
71
72  // negative samplerate given, abort
73  if ((sint_t)samplerate < 0) goto beach;
74  // zero samplerate given. do not open yet
75  if ((sint_t)samplerate == 0) return s;
76
77  s->samplerate = samplerate;
78  s->channels = 1;
79
80  if (aubio_sink_apple_audio_open(s) != AUBIO_OK) {
81    // open failed, abort
82    goto beach;
83  }
84
85  return s;
86beach:
87  AUBIO_FREE(s);
88  return NULL;
89}
90
91uint_t aubio_sink_apple_audio_preset_samplerate(aubio_sink_apple_audio_t *s, uint_t samplerate)
92{
93  if ((sint_t)(samplerate) <= 0) return AUBIO_FAIL;
94  s->samplerate = samplerate;
95  // automatically open when both samplerate and channels have been set
96  if (s->samplerate != 0 && s->channels != 0) {
97    return aubio_sink_apple_audio_open(s);
98  }
99  return AUBIO_OK;
100}
101
102uint_t aubio_sink_apple_audio_preset_channels(aubio_sink_apple_audio_t *s, uint_t channels)
103{
104  if ((sint_t)(channels) <= 0) return AUBIO_FAIL;
105  s->channels = channels;
106  // automatically open when both samplerate and channels have been set
107  if (s->samplerate != 0 && s->channels != 0) {
108    return aubio_sink_apple_audio_open(s);
109  }
110  return AUBIO_OK;
111}
112
113uint_t aubio_sink_apple_audio_get_samplerate(aubio_sink_apple_audio_t *s)
114{
115  return s->samplerate;
116}
117
118uint_t aubio_sink_apple_audio_get_channels(aubio_sink_apple_audio_t *s)
119{
120  return s->channels;
121}
122
123uint_t aubio_sink_apple_audio_open(aubio_sink_apple_audio_t *s) {
124
125  if (s->samplerate == 0 || s->channels == 0) return AUBIO_FAIL;
126
127  AudioStreamBasicDescription clientFormat;
128  memset(&clientFormat, 0, sizeof(AudioStreamBasicDescription));
129  clientFormat.mFormatID         = kAudioFormatLinearPCM;
130  clientFormat.mSampleRate       = (Float64)(s->samplerate);
131  clientFormat.mFormatFlags      = kAudioFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked;
132  clientFormat.mChannelsPerFrame = s->channels;
133  clientFormat.mBitsPerChannel   = sizeof(short) * 8;
134  clientFormat.mFramesPerPacket  = 1;
135  clientFormat.mBytesPerFrame    = clientFormat.mBitsPerChannel * clientFormat.mChannelsPerFrame / 8;
136  clientFormat.mBytesPerPacket   = clientFormat.mFramesPerPacket * clientFormat.mBytesPerFrame;
137  clientFormat.mReserved         = 0;
138
139  AudioFileTypeID fileType = kAudioFileWAVEType;
140  CFURLRef fileURL = createURLFromPath(s->path);
141  bool overwrite = true;
142  OSStatus err = noErr;
143  err = ExtAudioFileCreateWithURL(fileURL, fileType, &clientFormat, NULL,
144     overwrite ? kAudioFileFlags_EraseFile : 0, &s->audioFile);
145  CFRelease(fileURL);
146  if (err) {
147    char_t errorstr[20];
148    AUBIO_ERR("sink_apple_audio: error when trying to create %s with "
149        "ExtAudioFileCreateWithURL (%s)\n", s->path,
150        getPrintableOSStatusError(errorstr, err));
151    goto beach;
152  }
153  if (createAubioBufferList(&s->bufferList, s->channels, s->max_frames * s->channels)) {
154    AUBIO_ERR("sink_apple_audio: error when creating buffer list for %s, "
155        "out of memory? \n", s->path);
156    goto beach;
157  }
158  return AUBIO_OK;
159
160beach:
161  return AUBIO_FAIL;
162}
163
164void aubio_sink_apple_audio_do(aubio_sink_apple_audio_t * s, fvec_t * write_data, uint_t write) {
165  OSStatus err = noErr;
166  UInt32 c, v;
167  short *data = (short*)s->bufferList.mBuffers[0].mData;
168  if (write > s->max_frames) {
169    AUBIO_WRN("sink_apple_audio: trying to write %d frames, max %d\n", write, s->max_frames);
170    write = s->max_frames;
171  }
172  smpl_t *buf = write_data->data;
173
174  if (buf) {
175      for (c = 0; c < s->channels; c++) {
176          for (v = 0; v < write; v++) {
177              data[v * s->channels + c] =
178                  FLOAT_TO_SHORT(buf[ v * s->channels + c]);
179          }
180      }
181  }
182  if (s->async) {
183    err = ExtAudioFileWriteAsync(s->audioFile, write, &s->bufferList);
184
185    if (err) {
186      char_t errorstr[20];
187      AUBIO_ERROR("sink_apple_audio: error while writing %s "
188          "in ExtAudioFileWriteAsync (%s), switching to sync\n", s->path,
189          getPrintableOSStatusError(errorstr, err));
190      s->async = false;
191    } else {
192      return;
193    }
194
195  } else {
196    err = ExtAudioFileWrite(s->audioFile, write, &s->bufferList);
197
198    if (err) {
199      char_t errorstr[20];
200      AUBIO_ERROR("sink_apple_audio: error while writing %s "
201          "in ExtAudioFileWrite (%s)\n", s->path,
202          getPrintableOSStatusError(errorstr, err));
203    }
204  }
205  return;
206}
207
208void aubio_sink_apple_audio_do_multi(aubio_sink_apple_audio_t * s, fmat_t * write_data, uint_t write) {
209  OSStatus err = noErr;
210  UInt32 c, v;
211  short *data = (short*)s->bufferList.mBuffers[0].mData;
212  if (write > s->max_frames) {
213    AUBIO_WRN("sink_apple_audio: trying to write %d frames, max %d\n", write, s->max_frames);
214    write = s->max_frames;
215  }
216  smpl_t **buf = write_data->data;
217
218  if (buf) {
219      for (c = 0; c < s->channels; c++) {
220          for (v = 0; v < write; v++) {
221              data[v * s->channels + c] =
222                  FLOAT_TO_SHORT(buf[c][v]);
223          }
224      }
225  }
226  if (s->async) {
227    err = ExtAudioFileWriteAsync(s->audioFile, write, &s->bufferList);
228
229    if (err) {
230      char_t errorstr[20];
231      AUBIO_ERROR("sink_apple_audio: error while writing %s "
232          "in ExtAudioFileWriteAsync (%s), switching to sync\n", s->path,
233          getPrintableOSStatusError(errorstr, err));
234      s->async = false;
235    } else {
236      return;
237    }
238
239  } else {
240    err = ExtAudioFileWrite(s->audioFile, write, &s->bufferList);
241
242    if (err) {
243      char_t errorstr[20];
244      AUBIO_ERROR("sink_apple_audio: error while writing %s "
245          "in ExtAudioFileWrite (%s)\n", s->path,
246          getPrintableOSStatusError(errorstr, err));
247    }
248  }
249  return;
250}
251
252uint_t aubio_sink_apple_audio_close(aubio_sink_apple_audio_t * s) {
253  OSStatus err = noErr;
254  if (!s->audioFile) {
255    return AUBIO_FAIL;
256  }
257  err = ExtAudioFileDispose(s->audioFile);
258  if (err) {
259    char_t errorstr[20];
260    AUBIO_ERROR("sink_apple_audio: error while closing %s "
261        "in ExtAudioFileDispose (%s)\n", s->path,
262        getPrintableOSStatusError(errorstr, err));
263  }
264  s->audioFile = NULL;
265  return err;
266}
267
268void del_aubio_sink_apple_audio(aubio_sink_apple_audio_t * s) {
269  if (s->audioFile) aubio_sink_apple_audio_close (s);
270  freeAudioBufferList(&s->bufferList);
271  AUBIO_FREE(s);
272  return;
273}
274
275#endif /* HAVE_SINK_APPLE_AUDIO */
Note: See TracBrowser for help on using the repository browser.