Changes in / [eba24c59:d64f56d]


Ignore:
Location:
src
Files:
1 added
7 edited

Legend:

Unmodified
Added
Removed
  • src/io/sink.c

    reba24c59 rd64f56d  
    5454};
    5555
     56extern uint_t aubio_str_path_has_extension(const char_t *filename,
     57    const char_t *pattern);
     58
     59#ifdef HAVE_VORBISENC
     60typedef struct _aubio_sink_vorbis_t aubio_sink_vorbis_t;
     61extern aubio_sink_vorbis_t * new_aubio_sink_vorbis(const char_t *uri,
     62    uint_t samplerate);
     63extern void del_aubio_sink_vorbis (aubio_sink_vorbis_t *s);
     64extern uint_t aubio_sink_vorbis_open(aubio_sink_vorbis_t *s);
     65extern uint_t aubio_sink_vorbis_close(aubio_sink_vorbis_t *s);
     66extern uint_t aubio_sink_vorbis_preset_channels(aubio_sink_vorbis_t *s,
     67    uint_t channels);
     68extern uint_t aubio_sink_vorbis_preset_samplerate(aubio_sink_vorbis_t *s,
     69    uint_t samplerate);
     70extern uint_t aubio_sink_vorbis_get_channels(aubio_sink_vorbis_t *s);
     71extern uint_t aubio_sink_vorbis_get_samplerate(aubio_sink_vorbis_t *s);
     72extern void aubio_sink_vorbis_do(aubio_sink_vorbis_t *s, fvec_t*
     73    write_data, uint_t write);
     74extern void aubio_sink_vorbis_do_multi(aubio_sink_vorbis_t *s, fmat_t*
     75    write_data, uint_t write);
     76#endif /* HAVE_VORBISENC */
     77
     78#ifdef HAVE_FLAC
     79typedef struct _aubio_sink_flac_t aubio_sink_flac_t;
     80extern aubio_sink_flac_t * new_aubio_sink_flac(const char_t *uri,
     81    uint_t samplerate);
     82extern void del_aubio_sink_flac (aubio_sink_flac_t *s);
     83extern uint_t aubio_sink_flac_open(aubio_sink_flac_t *s);
     84extern uint_t aubio_sink_flac_close(aubio_sink_flac_t *s);
     85extern uint_t aubio_sink_flac_preset_channels(aubio_sink_flac_t *s,
     86    uint_t channels);
     87extern uint_t aubio_sink_flac_preset_samplerate(aubio_sink_flac_t *s,
     88    uint_t samplerate);
     89extern uint_t aubio_sink_flac_get_channels(aubio_sink_flac_t *s);
     90extern uint_t aubio_sink_flac_get_samplerate(aubio_sink_flac_t *s);
     91extern void aubio_sink_flac_do(aubio_sink_flac_t *s, fvec_t*
     92    write_data, uint_t write);
     93extern void aubio_sink_flac_do_multi(aubio_sink_flac_t *s, fmat_t*
     94    write_data, uint_t write);
     95#endif /* HAVE_FLAC */
     96
    5697aubio_sink_t * new_aubio_sink(const char_t * uri, uint_t samplerate) {
    5798  aubio_sink_t * s = AUBIO_NEW(aubio_sink_t);
     99
     100#ifdef HAVE_VORBISENC
     101  // check if this uri could be for us
     102  if (aubio_str_path_has_extension(uri, "ogg")) {
     103    s->sink = (void *)new_aubio_sink_vorbis(uri, samplerate);
     104    if (s->sink) {
     105      s->s_do = (aubio_sink_do_t)(aubio_sink_vorbis_do);
     106      s->s_do_multi = (aubio_sink_do_multi_t)(aubio_sink_vorbis_do_multi);
     107      s->s_preset_samplerate = (aubio_sink_preset_samplerate_t)(aubio_sink_vorbis_preset_samplerate);
     108      s->s_preset_channels = (aubio_sink_preset_channels_t)(aubio_sink_vorbis_preset_channels);
     109      s->s_get_samplerate = (aubio_sink_get_samplerate_t)(aubio_sink_vorbis_get_samplerate);
     110      s->s_get_channels = (aubio_sink_get_channels_t)(aubio_sink_vorbis_get_channels);
     111      s->s_close = (aubio_sink_close_t)(aubio_sink_vorbis_close);
     112      s->s_del = (del_aubio_sink_t)(del_aubio_sink_vorbis);
     113      return s;
     114    }
     115  }
     116#endif /* HAVE_VORBISENC */
     117
     118#ifdef HAVE_FLAC
     119  // check if this uri could be for us
     120  if (aubio_str_path_has_extension(uri, "flac")) {
     121    s->sink = (void *)new_aubio_sink_flac(uri, samplerate);
     122    if (s->sink) {
     123      s->s_do = (aubio_sink_do_t)(aubio_sink_flac_do);
     124      s->s_do_multi = (aubio_sink_do_multi_t)(aubio_sink_flac_do_multi);
     125      s->s_preset_samplerate = (aubio_sink_preset_samplerate_t)(aubio_sink_flac_preset_samplerate);
     126      s->s_preset_channels = (aubio_sink_preset_channels_t)(aubio_sink_flac_preset_channels);
     127      s->s_get_samplerate = (aubio_sink_get_samplerate_t)(aubio_sink_flac_get_samplerate);
     128      s->s_get_channels = (aubio_sink_get_channels_t)(aubio_sink_flac_get_channels);
     129      s->s_close = (aubio_sink_close_t)(aubio_sink_flac_close);
     130      s->s_del = (del_aubio_sink_t)(del_aubio_sink_flac);
     131      return s;
     132    }
     133  }
     134#endif /* HAVE_FLAC */
     135
    58136#ifdef HAVE_SINK_APPLE_AUDIO
    59137  s->sink = (void *)new_aubio_sink_apple_audio(uri, samplerate);
     
    100178#if !defined(HAVE_WAVWRITE) && \
    101179  !defined(HAVE_SNDFILE) && \
    102   !defined(HAVE_SINK_APPLE_AUDIO)
     180  !defined(HAVE_SINK_APPLE_AUDIO) && \
     181  !defined(HAVE_VORBISENC) && \
     182  !defined(HAVE_FLAC)
    103183  AUBIO_ERROR("sink: failed creating '%s' at %dHz (no sink built-in)\n", uri, samplerate);
    104184#endif
  • src/io/sink_apple_audio.c

    reba24c59 rd64f56d  
    3232#include <AudioToolbox/AudioToolbox.h>
    3333
    34 #define FLOAT_TO_SHORT(x) (short)(x * 32768)
    35 
    36 extern int createAubioBufferList(AudioBufferList *bufferList, int channels, int segmentSize);
     34extern int createAudioBufferList(AudioBufferList *bufferList, int channels, int segmentSize);
    3735extern void freeAudioBufferList(AudioBufferList *bufferList);
    3836extern CFURLRef createURLFromPath(const char * path);
     
    4038
    4139uint_t aubio_sink_apple_audio_open(aubio_sink_apple_audio_t *s);
     40
     41uint_t aubio_str_extension_matches(const char_t *ext,
     42    const char_t *pattern);
     43const char_t *aubio_str_get_extension(const char_t *filename);
    4244
    4345#define MAX_SIZE 4096 // the maximum number of frames that can be written at a time
     
    5557  ExtAudioFileRef audioFile;
    5658  bool async;
     59  AudioFileTypeID fileType;
    5760};
    5861
     
    7376  s->channels = 0;
    7477
     78  aubio_sink_apple_audio_preset_format(s, aubio_str_get_extension(uri));
     79
    7580  // zero samplerate given. do not open yet
    7681  if ((sint_t)samplerate == 0) {
    7782    return s;
    7883  }
     84
    7985  // invalid samplerate given, abort
    8086  if (aubio_io_validate_samplerate("sink_apple_audio", s->path, samplerate)) {
     
    122128}
    123129
     130uint_t aubio_sink_apple_audio_preset_format(aubio_sink_apple_audio_t *s,
     131    const char_t *fmt)
     132{
     133  if (aubio_str_extension_matches(fmt, "wav")) {
     134    s->fileType = kAudioFileWAVEType;
     135  } else if (aubio_str_extension_matches(fmt, "m4a")
     136      || aubio_str_extension_matches(fmt, "mp4") ) {
     137    // use alac for "mp4" and "m4a"
     138    s->fileType = kAudioFileM4AType;
     139  } else if (aubio_str_extension_matches(fmt, "aac") ) {
     140    // only use lossy codec for "aac"
     141    s->fileType = kAudioFileMPEG4Type;
     142  } else if (aubio_str_extension_matches(fmt, "aiff") ) {
     143    // only use lossy codec for "aac"
     144    s->fileType = kAudioFileAIFFType;
     145  } else {
     146    AUBIO_WRN("sink_apple_audio: could not guess format for %s,"
     147       " using default (wav)\n", s->path);
     148    s->fileType = kAudioFileWAVEType;
     149    return AUBIO_FAIL;
     150  }
     151  return AUBIO_OK;
     152}
     153
     154static void aubio_sink_apple_audio_set_client_format(aubio_sink_apple_audio_t* s,
     155    AudioStreamBasicDescription *clientFormat)
     156{
     157  memset(clientFormat, 0, sizeof(AudioStreamBasicDescription));
     158  // always set samplerate and channels first
     159  clientFormat->mSampleRate       = (Float64)(s->samplerate);
     160  clientFormat->mChannelsPerFrame = s->channels;
     161
     162  switch (s->fileType) {
     163    case kAudioFileM4AType:
     164      clientFormat->mFormatID         = kAudioFormatAppleLossless;
     165      break;
     166    case kAudioFileMPEG4Type:
     167      clientFormat->mFormatID         = kAudioFormatMPEG4AAC;
     168      clientFormat->mFormatFlags      = kMPEG4Object_AAC_Main;
     169      clientFormat->mFormatFlags     |= kAppleLosslessFormatFlag_16BitSourceData;
     170      clientFormat->mFramesPerPacket  = 1024;
     171      break;
     172    case kAudioFileWAVEType:
     173      clientFormat->mFormatID         = kAudioFormatLinearPCM;
     174      clientFormat->mFormatFlags      = kAudioFormatFlagIsSignedInteger;
     175      clientFormat->mFormatFlags     |= kAudioFormatFlagIsPacked;
     176      clientFormat->mBitsPerChannel   = sizeof(short) * 8;
     177      clientFormat->mFramesPerPacket  = 1;
     178      clientFormat->mBytesPerFrame    = clientFormat->mBitsPerChannel * clientFormat->mChannelsPerFrame / 8;
     179      clientFormat->mBytesPerPacket   = clientFormat->mFramesPerPacket * clientFormat->mBytesPerFrame;
     180      break;
     181    case kAudioFileAIFFType:
     182      clientFormat->mFormatID         = kAudioFormatLinearPCM;
     183      clientFormat->mFormatFlags      = kAudioFormatFlagIsSignedInteger;
     184      clientFormat->mFormatFlags     |= kAudioFormatFlagIsPacked;
     185      clientFormat->mFormatFlags     |= kAudioFormatFlagIsBigEndian;
     186      clientFormat->mBitsPerChannel   = sizeof(short) * 8;
     187      clientFormat->mFramesPerPacket  = 1;
     188      clientFormat->mBytesPerFrame    = clientFormat->mBitsPerChannel * clientFormat->mChannelsPerFrame / 8;
     189      clientFormat->mBytesPerPacket   = clientFormat->mFramesPerPacket * clientFormat->mBytesPerFrame;
     190      break;
     191    default:
     192      break;
     193  }
     194}
     195
    124196uint_t aubio_sink_apple_audio_get_samplerate(const aubio_sink_apple_audio_t *s)
    125197{
     
    136208  if (s->samplerate == 0 || s->channels == 0) return AUBIO_FAIL;
    137209
    138   AudioStreamBasicDescription clientFormat;
    139   memset(&clientFormat, 0, sizeof(AudioStreamBasicDescription));
    140   clientFormat.mFormatID         = kAudioFormatLinearPCM;
    141   clientFormat.mSampleRate       = (Float64)(s->samplerate);
    142   clientFormat.mFormatFlags      = kAudioFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked;
    143   clientFormat.mChannelsPerFrame = s->channels;
    144   clientFormat.mBitsPerChannel   = sizeof(short) * 8;
    145   clientFormat.mFramesPerPacket  = 1;
    146   clientFormat.mBytesPerFrame    = clientFormat.mBitsPerChannel * clientFormat.mChannelsPerFrame / 8;
    147   clientFormat.mBytesPerPacket   = clientFormat.mFramesPerPacket * clientFormat.mBytesPerFrame;
    148   clientFormat.mReserved         = 0;
    149 
    150   AudioFileTypeID fileType = kAudioFileWAVEType;
    151210  CFURLRef fileURL = createURLFromPath(s->path);
    152211  bool overwrite = true;
     212
     213  // set the in-memory format
     214  AudioStreamBasicDescription inputFormat;
     215  memset(&inputFormat, 0, sizeof(AudioStreamBasicDescription));
     216  inputFormat.mFormatID         = kAudioFormatLinearPCM;
     217  inputFormat.mSampleRate       = (Float64)(s->samplerate);
     218  inputFormat.mFormatFlags      = kAudioFormatFlagIsFloat | kAudioFormatFlagIsPacked;
     219  inputFormat.mChannelsPerFrame = s->channels;
     220  inputFormat.mBitsPerChannel   = sizeof(smpl_t) * 8;
     221  inputFormat.mFramesPerPacket  = 1;
     222  inputFormat.mBytesPerFrame    = inputFormat.mBitsPerChannel * inputFormat.mChannelsPerFrame / 8;
     223  inputFormat.mBytesPerPacket   = inputFormat.mFramesPerPacket * inputFormat.mBytesPerFrame;
     224
     225  // get the in-file format
     226  AudioStreamBasicDescription clientFormat;
     227  aubio_sink_apple_audio_set_client_format(s, &clientFormat);
     228
    153229  OSStatus err = noErr;
    154   err = ExtAudioFileCreateWithURL(fileURL, fileType, &clientFormat, NULL,
     230  err = ExtAudioFileCreateWithURL(fileURL, s->fileType, &clientFormat, NULL,
    155231     overwrite ? kAudioFileFlags_EraseFile : 0, &s->audioFile);
    156232  CFRelease(fileURL);
     
    162238    goto beach;
    163239  }
    164   if (createAubioBufferList(&s->bufferList, s->channels, s->max_frames * s->channels)) {
     240
     241#if defined(kAppleSoftwareAudioCodecManufacturer)
     242  // on iOS, set software based encoding before setting clientDataFormat
     243  UInt32 codecManf = kAppleSoftwareAudioCodecManufacturer;
     244  err = ExtAudioFileSetProperty(s->audioFile,
     245      kExtAudioFileProperty_CodecManufacturer,
     246      sizeof(UInt32), &codecManf);
     247  if (err) {
     248    char_t errorstr[20];
     249    AUBIO_ERR("sink_apple_audio: error when trying to set sofware codec on %s "
     250        "(%s)\n", s->path, getPrintableOSStatusError(errorstr, err));
     251    goto beach;
     252  }
     253#endif
     254
     255  err = ExtAudioFileSetProperty(s->audioFile,
     256      kExtAudioFileProperty_ClientDataFormat,
     257      sizeof(AudioStreamBasicDescription), &inputFormat);
     258  if (err) {
     259    char_t errorstr[20];
     260    AUBIO_ERR("sink_apple_audio: error when trying to set output format on %s "
     261        "(%s)\n", s->path, getPrintableOSStatusError(errorstr, err));
     262    goto beach;
     263  }
     264
     265  if (createAudioBufferList(&s->bufferList, s->channels, s->max_frames * s->channels)) {
    165266    AUBIO_ERR("sink_apple_audio: error when creating buffer list for %s, "
    166267        "out of memory? \n", s->path);
     
    175276void aubio_sink_apple_audio_do(aubio_sink_apple_audio_t * s, fvec_t * write_data, uint_t write) {
    176277  UInt32 c, v;
    177   short *data = (short*)s->bufferList.mBuffers[0].mData;
     278  smpl_t *data = (smpl_t*)s->bufferList.mBuffers[0].mData;
    178279  uint_t length = aubio_sink_validate_input_length("sink_apple_audio", s->path,
    179280      s->max_frames, write_data->length, write);
     
    181282  for (c = 0; c < s->channels; c++) {
    182283    for (v = 0; v < length; v++) {
    183       data[v * s->channels + c] = FLOAT_TO_SHORT(write_data->data[v]);
     284      data[v * s->channels + c] = write_data->data[v];
    184285    }
    185286  }
     
    190291void aubio_sink_apple_audio_do_multi(aubio_sink_apple_audio_t * s, fmat_t * write_data, uint_t write) {
    191292  UInt32 c, v;
    192   short *data = (short*)s->bufferList.mBuffers[0].mData;
     293  smpl_t *data = (smpl_t*)s->bufferList.mBuffers[0].mData;
    193294  uint_t channels = aubio_sink_validate_input_channels("sink_apple_audio",
    194295      s->path, s->channels, write_data->height);
     
    198299  for (c = 0; c < channels; c++) {
    199300    for (v = 0; v < length; v++) {
    200       data[v * s->channels + c] = FLOAT_TO_SHORT(write_data->data[c][v]);
     301      data[v * s->channels + c] = write_data->data[c][v];
    201302    }
    202303  }
     
    207308void aubio_sink_apple_audio_write(aubio_sink_apple_audio_t *s, uint_t write) {
    208309  OSStatus err = noErr;
     310  // set mDataByteSize to match the number of frames to be written
     311  // see https://www.mail-archive.com/coreaudio-api@lists.apple.com/msg01109.html
     312  s->bufferList.mBuffers[0].mDataByteSize = write * s->channels
     313    * sizeof(smpl_t);
    209314  if (s->async) {
    210315    err = ExtAudioFileWriteAsync(s->audioFile, write, &s->bufferList);
  • src/io/sink_apple_audio.h

    reba24c59 rd64f56d  
    9797/**
    9898
     99  preset sink format
     100
     101  \param s sink, created with ::new_aubio_sink_apple_audio
     102  \param fmt format of the file to create
     103
     104  \return 0 on success, 1 on error
     105
     106  Preset the format of the sink. Supported format strings:
     107   - "wav": WAVE, 16 bit (default)
     108   - "aiff": AIFF, 16 bit
     109   - "m4a" or "mp4": Apple Audio Lossless Codec (ALAC)
     110   - "aac": Audio Advanced Codec, lossy
     111
     112  Full list of supported encoding format is available in Table 1-2 of
     113  `Multimedia Programming Guide
     114  <https://developer.apple.com/library/archive/documentation/AudioVideo/Conceptual/MultimediaPG/UsingAudio/UsingAudio.html>`_.
     115
     116 */
     117uint_t aubio_sink_apple_audio_preset_format(aubio_sink_apple_audio_t *s,
     118    const char_t *fmt);
     119
     120/**
     121
    99122  get samplerate of sink object
    100123
  • src/io/sink_sndfile.c

    reba24c59 rd64f56d  
    4949  uint_t scratch_size;
    5050  smpl_t *scratch_data;
     51  int format;
    5152};
    5253
    5354uint_t aubio_sink_sndfile_open(aubio_sink_sndfile_t *s);
     55
     56uint_t aubio_str_extension_matches(const char_t *ext,
     57    const char_t *pattern);
     58const char_t *aubio_str_get_extension(const char_t *filename);
    5459
    5560aubio_sink_sndfile_t * new_aubio_sink_sndfile(const char_t * path, uint_t samplerate) {
     
    6772  s->samplerate = 0;
    6873  s->channels = 0;
     74
     75  aubio_sink_sndfile_preset_format(s, aubio_str_get_extension(path));
    6976
    7077  // zero samplerate given. do not open yet
     
    112119  if (s->samplerate != 0 /* && s->channels != 0 */) {
    113120    return aubio_sink_sndfile_open(s);
     121  }
     122  return AUBIO_OK;
     123}
     124
     125uint_t aubio_sink_sndfile_preset_format(aubio_sink_sndfile_t *s,
     126    const char_t *fmt)
     127{
     128  if (aubio_str_extension_matches(fmt, "wav")) {
     129    s->format = SF_FORMAT_WAV | SF_FORMAT_PCM_16;
     130  } else if (aubio_str_extension_matches(fmt, "aiff")) {
     131    s->format = SF_FORMAT_AIFF | SF_FORMAT_PCM_16;
     132  } else if (aubio_str_extension_matches(fmt, "flac")) {
     133    s->format = SF_FORMAT_FLAC | SF_FORMAT_PCM_16;
     134  } else if (aubio_str_extension_matches(fmt, "ogg")) {
     135    s->format = SF_FORMAT_OGG | SF_FORMAT_VORBIS;
     136  } else if (atoi(fmt) > 0x010000) {
     137    s->format = atoi(fmt);
     138  } else {
     139    AUBIO_WRN("sink_sndfile: could not guess format for %s,"
     140       " using default (wav)\n", s->path);
     141    s->format = SF_FORMAT_WAV | SF_FORMAT_PCM_16;
     142    return AUBIO_FAIL;
    114143  }
    115144  return AUBIO_OK;
     
    132161  sfinfo.samplerate = s->samplerate;
    133162  sfinfo.channels   = s->channels;
    134   sfinfo.format     = SF_FORMAT_WAV | SF_FORMAT_PCM_16;
     163  sfinfo.format     = s->format;
    135164
    136165  /* try creating the file */
  • src/io/sink_sndfile.h

    reba24c59 rd64f56d  
    9696/**
    9797
     98  preset sink format
     99
     100  \param s sink, created with ::new_aubio_sink_sndfile
     101  \param fmt format of the file to create
     102
     103  \return 0 on success, 1 on error
     104
     105  Preset the format of the sink. Supported format strings:
     106   - "wav": 16 bit (default)
     107   - "aiff": aiff, 16 bit
     108   - "flac": flac, 16 bit
     109   - "ogg": ogg vorbis stream
     110
     111  Alternatively, any sndfile format can be set by passing the corresponding
     112  integer as a string:
     113
     114  \code{.c}
     115  char_t fmt[10];
     116  snprintf(fmt, sizeof(fmt), "%d", SF_FORMAT_FLAC | SF_FORMAT_PCM_24);
     117  aubio_sink_sndfile_preset_format(s, fmt);
     118  \endcode
     119
     120  The file should have been created using a samplerate of 0.
     121
     122  This function should be called before aubio_sink_sndfile_preset_samplerate()
     123  and aubio_sink_sndfile_preset_channels().
     124
     125*/
     126uint_t aubio_sink_sndfile_preset_format(aubio_sink_sndfile_t *s,
     127        const char_t* fmt);
     128
     129/**
     130
    98131  get samplerate of sink object
    99132
  • src/io/source_apple_audio.c

    reba24c59 rd64f56d  
    3434#define RT_BYTE3( a )      ( ((a) >> 16) & 0xff )
    3535#define RT_BYTE4( a )      ( ((a) >> 24) & 0xff )
    36 
    37 #define SHORT_TO_FLOAT(x) (smpl_t)(x * 3.0517578125e-05)
    3836
    3937struct _aubio_source_apple_audio_t {
     
    4947};
    5048
    51 extern int createAubioBufferList(AudioBufferList *bufferList, int channels, int max_source_samples);
     49extern int createAudioBufferList(AudioBufferList *bufferList, int channels, int max_source_samples);
    5250extern void freeAudioBufferList(AudioBufferList *bufferList);
    5351extern CFURLRef createURLFromPath(const char * path);
     
    139137
    140138  AudioStreamBasicDescription clientFormat;
    141   propSize = sizeof(clientFormat);
     139  propSize = sizeof(AudioStreamBasicDescription);
    142140  memset(&clientFormat, 0, sizeof(AudioStreamBasicDescription));
    143141  clientFormat.mFormatID         = kAudioFormatLinearPCM;
    144142  clientFormat.mSampleRate       = (Float64)(s->samplerate);
    145   clientFormat.mFormatFlags      = kAudioFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked;
     143  clientFormat.mFormatFlags      = kAudioFormatFlagIsFloat;
    146144  clientFormat.mChannelsPerFrame = s->channels;
    147   clientFormat.mBitsPerChannel   = sizeof(short) * 8;
     145  clientFormat.mBitsPerChannel   = sizeof(smpl_t) * 8;
    148146  clientFormat.mFramesPerPacket  = 1;
    149147  clientFormat.mBytesPerFrame    = clientFormat.mBitsPerChannel * clientFormat.mChannelsPerFrame / 8;
    150148  clientFormat.mBytesPerPacket   = clientFormat.mFramesPerPacket * clientFormat.mBytesPerFrame;
    151   clientFormat.mReserved         = 0;
    152149
    153150  // set the client format description
     
    187184  // allocate the AudioBufferList
    188185  freeAudioBufferList(&s->bufferList);
    189   if (createAubioBufferList(&s->bufferList, s->channels, s->block_size * s->channels)) {
     186  if (createAudioBufferList(&s->bufferList, s->channels, s->block_size * s->channels)) {
    190187    AUBIO_ERR("source_apple_audio: failed creating bufferList\n");
    191188    goto beach;
     
    196193}
    197194
    198 void aubio_source_apple_audio_do(aubio_source_apple_audio_t *s, fvec_t * read_to, uint_t * read) {
    199   UInt32 c, v, loadedPackets = s->block_size;
     195static UInt32 aubio_source_apple_audio_read_frame(aubio_source_apple_audio_t *s)
     196{
     197  UInt32 loadedPackets = s->block_size;
    200198  OSStatus err = ExtAudioFileRead(s->audioFile, &loadedPackets, &s->bufferList);
    201199  if (err) {
     
    204202        "with ExtAudioFileRead (%s)\n", s->path,
    205203        getPrintableOSStatusError(errorstr, err));
    206     goto beach;
    207   }
    208 
    209   short *data = (short*)s->bufferList.mBuffers[0].mData;
    210 
    211   smpl_t *buf = read_to->data;
     204  }
     205  return loadedPackets;
     206}
     207
     208void aubio_source_apple_audio_do(aubio_source_apple_audio_t *s, fvec_t * read_to,
     209    uint_t * read) {
     210  uint_t c, v;
     211  UInt32 loadedPackets = aubio_source_apple_audio_read_frame(s);
     212  smpl_t *data = (smpl_t*)s->bufferList.mBuffers[0].mData;
    212213
    213214  for (v = 0; v < loadedPackets; v++) {
    214     buf[v] = 0.;
     215    read_to->data[v] = 0.;
    215216    for (c = 0; c < s->channels; c++) {
    216       buf[v] += SHORT_TO_FLOAT(data[ v * s->channels + c]);
    217     }
    218     buf[v] /= (smpl_t)s->channels;
     217      read_to->data[v] += data[ v * s->channels + c];
     218    }
     219    read_to->data[v] /= (smpl_t)s->channels;
    219220  }
    220221  // short read, fill with zeros
    221222  if (loadedPackets < s->block_size) {
    222223    for (v = loadedPackets; v < s->block_size; v++) {
    223       buf[v] = 0.;
     224      read_to->data[v] = 0.;
    224225    }
    225226  }
     
    227228  *read = (uint_t)loadedPackets;
    228229  return;
    229 beach:
    230   *read = 0;
    231   return;
    232230}
    233231
    234232void aubio_source_apple_audio_do_multi(aubio_source_apple_audio_t *s, fmat_t * read_to, uint_t * read) {
    235   UInt32 c, v, loadedPackets = s->block_size;
    236   OSStatus err = ExtAudioFileRead(s->audioFile, &loadedPackets, &s->bufferList);
    237   if (err) {
    238     char_t errorstr[20];
    239     AUBIO_ERROR("source_apple_audio: error while reading %s "
    240         "with ExtAudioFileRead (%s)\n", s->path,
    241         getPrintableOSStatusError(errorstr, err));
    242     goto beach;
    243   }
    244 
    245   short *data = (short*)s->bufferList.mBuffers[0].mData;
    246 
    247   smpl_t **buf = read_to->data;
     233  uint_t c, v;
     234  UInt32 loadedPackets = aubio_source_apple_audio_read_frame(s);
     235  smpl_t *data = (smpl_t*)s->bufferList.mBuffers[0].mData;
    248236
    249237  for (v = 0; v < loadedPackets; v++) {
    250238    for (c = 0; c < read_to->height; c++) {
    251       buf[c][v] = SHORT_TO_FLOAT(data[ v * s->channels + c]);
     239      read_to->data[c][v] = data[ v * s->channels + c];
    252240    }
    253241  }
     
    257245    for (v = 0; v < loadedPackets; v++) {
    258246      for (c = s->channels; c < read_to->height; c++) {
    259         buf[c][v] = SHORT_TO_FLOAT(data[ v * s->channels + (s->channels - 1)]);
     247        read_to->data[c][v] = data[ v * s->channels + (s->channels - 1)];
    260248      }
    261249    }
     
    265253    for (v = loadedPackets; v < s->block_size; v++) {
    266254      for (c = 0; c < read_to->height; c++) {
    267         buf[c][v] = 0.;
     255        read_to->data[c][v] = 0.;
    268256      }
    269257    }
    270258  }
     259
    271260  *read = (uint_t)loadedPackets;
    272   return;
    273 beach:
    274   *read = 0;
    275261  return;
    276262}
     
    323309  // after a short read, the bufferList size needs to resetted to prepare for a full read
    324310  AudioBufferList *bufferList = &s->bufferList;
    325   bufferList->mBuffers[0].mDataByteSize = s->block_size * s->channels * sizeof (short);
     311  bufferList->mBuffers[0].mDataByteSize = s->block_size * s->channels * sizeof (smpl_t);
    326312  // do the actual seek
    327313  err = ExtAudioFileSeek(s->audioFile, resampled_pos);
  • src/io/utils_apple_audio.c

    reba24c59 rd64f56d  
    1313char_t *getPrintableOSStatusError(char_t *str, OSStatus error);
    1414
    15 int createAubioBufferList(AudioBufferList * bufferList, int channels, int max_source_samples) {
     15int createAudioBufferList(AudioBufferList * bufferList, int channels,
     16    int max_source_samples) {
    1617  bufferList->mNumberBuffers = 1;
    1718  bufferList->mBuffers[0].mNumberChannels = channels;
    18   bufferList->mBuffers[0].mData = AUBIO_ARRAY(short, max_source_samples);
    19   bufferList->mBuffers[0].mDataByteSize = max_source_samples * sizeof(short);
     19  bufferList->mBuffers[0].mData = AUBIO_ARRAY(smpl_t, max_source_samples);
     20  bufferList->mBuffers[0].mDataByteSize = max_source_samples * sizeof(smpl_t);
    2021  return 0;
    2122}
Note: See TracChangeset for help on using the changeset viewer.