Changes in src/io/sink.c [331249b:de66709]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/sink.c
r331249b rde66709 55 55 }; 56 56 57 aubio_sink_t * new_aubio_sink(c har_t * uri, uint_t samplerate) {57 aubio_sink_t * new_aubio_sink(const char_t * uri, uint_t samplerate) { 58 58 aubio_sink_t * s = AUBIO_NEW(aubio_sink_t); 59 59 #ifdef HAVE_SINK_APPLE_AUDIO … … 71 71 } 72 72 #endif /* HAVE_SINK_APPLE_AUDIO */ 73 #if HAVE_SNDFILE73 #ifdef HAVE_SNDFILE 74 74 s->sink = (void *)new_aubio_sink_sndfile(uri, samplerate); 75 75 if (s->sink) { … … 85 85 } 86 86 #endif /* HAVE_SNDFILE */ 87 #if HAVE_WAVWRITE87 #ifdef HAVE_WAVWRITE 88 88 s->sink = (void *)new_aubio_sink_wavwrite(uri, samplerate); 89 89 if (s->sink) { … … 121 121 } 122 122 123 uint_t aubio_sink_get_samplerate( aubio_sink_t * s) {123 uint_t aubio_sink_get_samplerate(const aubio_sink_t * s) { 124 124 return s->s_get_samplerate((void *)s->sink); 125 125 } 126 126 127 uint_t aubio_sink_get_channels( aubio_sink_t * s) {127 uint_t aubio_sink_get_channels(const aubio_sink_t * s) { 128 128 return s->s_get_channels((void *)s->sink); 129 129 }
Note: See TracChangeset
for help on using the changeset viewer.