Changeset 082c88b


Ignore:
Timestamp:
Jan 26, 2014, 8:13:28 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:
a9fd272
Parents:
5cb8abe
Message:

src/io/{source,sink}.c: fix del_ prototypes

Location:
src/io
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/io/sink.c

    r5cb8abe r082c88b  
    3939typedef uint_t (*aubio_sink_get_channels_t)(aubio_sink_t * s);
    4040#endif
    41 typedef uint_t (*del_aubio_sink_t)(aubio_sink_t * s);
     41typedef void (*del_aubio_sink_t)(aubio_sink_t * s);
    4242
    4343struct _aubio_sink_t {
  • src/io/source.c

    r5cb8abe r082c88b  
    4242typedef uint_t (*aubio_source_get_channels_t)(aubio_source_t * s);
    4343typedef uint_t (*aubio_source_seek_t)(aubio_source_t * s, uint_t seek);
    44 typedef uint_t (*del_aubio_source_t)(aubio_source_t * s);
     44typedef void (*del_aubio_source_t)(aubio_source_t * s);
    4545
    4646struct _aubio_source_t {
Note: See TracChangeset for help on using the changeset viewer.