Ignore:
Timestamp:
Mar 22, 2013, 2:29:19 AM (11 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:
ae9fd90
Parents:
7982203
Message:

src/io/source*: add _do_multi and _get_channels, really downmix apple_audio

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source_apple_audio.h

    r7982203 r4865e4b  
    7676/**
    7777
     78  read polyphonic vector of length hop_size from source object
     79
     80  \param s source object, created with ::new_aubio_source_apple_audio
     81  \param read_to ::fmat_t of data to read to
     82  \param read upon returns, equals to number of frames actually read
     83
     84  Upon returns, `read` contains the number of frames actually read from the
     85  source. `hop_size` if enough frames could be read, less otherwise.
     86
     87*/
     88void aubio_source_apple_audio_do_multi(aubio_source_apple_audio_t * s, fmat_t * read_to, uint_t * read);
     89
     90/**
     91
    7892  get samplerate of source object
    7993
     
    8397*/
    8498uint_t aubio_source_apple_audio_get_samplerate(aubio_source_apple_audio_t * s);
     99
     100/**
     101
     102  get channels of source object
     103
     104  \param s source object, created with ::new_aubio_source_apple_audio
     105  \return number of channels
     106
     107*/
     108uint_t aubio_source_apple_audio_get_channels(aubio_source_apple_audio_t * s);
    85109
    86110/**
Note: See TracChangeset for help on using the changeset viewer.