Changeset 493b832 for src


Ignore:
Timestamp:
Aug 22, 2014, 5:36:25 PM (10 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
0ad837a, d28a26a
Parents:
36c302a
Message:

src/io/source_apple_audio.c: check out of bounds _seek

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source_apple_audio.c

    r36c302a r493b832  
    299299
    300300uint_t aubio_source_apple_audio_seek (aubio_source_apple_audio_t * s, uint_t pos) {
     301  OSStatus err = noErr;
     302  if ((sint_t)pos < 0) {
     303    AUBIO_ERROR("source_apple_audio: error while seeking in %s "
     304        "(can not seek at negative position %d)\n",
     305        s->path, pos);
     306    err = -1;
     307    goto beach;
     308  }
     309  // check if we are not seeking out of the file
     310  SInt64 fileLengthFrames = 0;
     311  UInt32 propSize = sizeof(fileLengthFrames);
     312  ExtAudioFileGetProperty(s->audioFile,
     313      kExtAudioFileProperty_FileLengthFrames, &propSize, &fileLengthFrames);
     314  // compute position in the source file, before resampling
     315  smpl_t ratio = s->source_samplerate * 1. / s->samplerate;
     316  SInt64 resampled_pos = (SInt64)ROUND( pos * ratio );
     317  if (resampled_pos > fileLengthFrames) {
     318    AUBIO_ERR("source_apple_audio: trying to seek in %s at pos %d, "
     319        "but file has only %d frames\n",
     320        s->path, pos, (uint_t)(fileLengthFrames / ratio));
     321    err = -1;
     322    goto beach;
     323  }
    301324  // after a short read, the bufferList size needs to resetted to prepare for a full read
    302325  AudioBufferList *bufferList = &s->bufferList;
    303326  bufferList->mBuffers[0].mDataByteSize = s->block_size * s->channels * sizeof (short);
    304   // compute position in the source file, before resampling
    305   smpl_t ratio = s->source_samplerate * 1. / s->samplerate;
    306   SInt64 resampled_pos = (SInt64)ROUND( pos * ratio );
    307   OSStatus err = ExtAudioFileSeek(s->audioFile, resampled_pos);
     327  // do the actual seek
     328  err = ExtAudioFileSeek(s->audioFile, resampled_pos);
    308329  if (err) {
    309330    char_t errorstr[20];
     
    312333        getPrintableOSStatusError(errorstr, err));
    313334  }
     335#if 0
     336  // check position after seek
     337  {
     338    SInt64 outFrameOffset = 0;
     339    err = ExtAudioFileTell(s->audioFile, &outFrameOffset);
     340    if (err) {
     341      char_t errorstr[20];
     342      AUBIO_ERROR("source_apple_audio: error while seeking %s at %d "
     343          "in ExtAudioFileTell (%s)\n", s->path, pos,
     344          getPrintableOSStatusError(errorstr, err));
     345    }
     346    AUBIO_DBG("source_apple_audio: asked seek at %d, tell got %d\n",
     347        pos, (uint_t)(outFrameOffset / ratio + .5));
     348  }
     349#endif
     350beach:
    314351  return err;
    315352}
Note: See TracChangeset for help on using the changeset viewer.